Browse Source

add application of the scheduler

refactoring
Sebastian Junges 5 years ago
parent
commit
57dd8c363b
  1. 4
      examples/schedulers/01-schedulers.py

4
examples/schedulers/01-schedulers.py

@ -26,6 +26,10 @@ def example_schedulers_01():
action = choice.get_deterministic_choice()
print("In state {} choose action {}".format(state, action))
dtmc = model.apply_scheduler(scheduler)
print(dtmc)
if __name__ == '__main__':
example_schedulers_01()
Loading…
Cancel
Save