delete debug stmt

This commit is contained in:
Joeri Exelmans 2025-06-05 14:18:15 +02:00
parent 22229f1b5f
commit 25ef32cd30

View file

@ -8,6 +8,7 @@ class AutoCounterState:
def __init__(self, count):
self.count = count
# increments count every second and emits output event
class AutoCounter(AtomicDEVS):
def __init__(self, start):
AtomicDEVS.__init__(self, "System")
@ -18,7 +19,6 @@ class AutoCounter(AtomicDEVS):
return 1.0
def outputFnc(self):
print("outputFnc...", self, self.state)
return {self.outport: self.state.count}
def intTransition(self):