Youngjoon Lee 85cd064cbe
skeleton
2024-05-09 14:29:10 +09:00

11 lines
204 B
Python

import simpy
class Simulation:
def __init__(self):
self.env = simpy.Environment()
self.p2p = None # TODO: implement p2p
def run(self, until):
self.env.run(until=until)