Add IPython notebook as a first step to live documentation for PythonPDEVS.

This commit is contained in:
Yentl Van Tendeloo 2018-07-03 17:53:19 +02:00
parent 5ae2993e32
commit d4914a01c2
2 changed files with 349 additions and 1 deletions

View file

@ -98,7 +98,7 @@ class CoupledDEVS(BaseDEVS):
class RootDEVS(object):
def __init__(self, components):
from schedulers.schedulerAuto import SchedulerAuto as Scheduler
from schedulers.schedulerHS import SchedulerHS as Scheduler
self.component_set = components
self.time_next = float('inf')
self.scheduler = Scheduler(self.component_set, 1e-6, len(self.component_set))