Add simulation_tool/src/simulation_tool/__init__.py
This commit is contained in:
parent
afe81be1f9
commit
f32269e351
1 changed files with 17 additions and 0 deletions
17
simulation_tool/src/simulation_tool/__init__.py
Normal file
17
simulation_tool/src/simulation_tool/__init__.py
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
"""Resonanzband Scheduling Simulation Tool package.
|
||||
|
||||
Dieses Paket enthält Module für die Simulation und Analyse der Auswirkungen
|
||||
verschiedener Scheduling-Mechanismen auf das Verhalten des Resonanzbands.
|
||||
Es bietet eine flexible Architektur für Simulation, Metrik-Erhebung und
|
||||
serialisierte Ergebnisdarstellung.
|
||||
|
||||
Hinweis:
|
||||
Beim Import wird keine Simulation ausgeführt. Verwenden Sie die CLI oder
|
||||
die Funktionen aus den Untermodulen (`core`, `models`), um Simulationen
|
||||
gezielt zu starten.
|
||||
"""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
__version__ = "0.1.0"
|
||||
__all__ = []
|
||||
Loading…
Reference in a new issue