All checks were successful
continuous-integration/drone/push Build is passing
18 lines
439 B
Python
18 lines
439 B
Python
from pprint import pprint
|
|
|
|
from scenarioplanner import Scenarioplanner
|
|
from src import scenarioplanner
|
|
|
|
|
|
def preparesimulation() -> Scenarioplanner:
|
|
scenarioplanner = Scenarioplanner()
|
|
scenarioplanner.simulationLength = 120
|
|
scenarioplanner.createapplications()
|
|
scenarioplanner.createclients(1000)
|
|
return scenarioplanner
|
|
|
|
|
|
if __name__ == '__main__':
|
|
scenarioplanner = preparesimulation()
|
|
pprint(scenarioplanner)
|