예제 #1
0
파일: Worker.py 프로젝트: buxx/simtermites
 def __init__(self, host, work=None):
     Termite.__init__(self, host)
     self.work = work
예제 #2
0
파일: Larva.py 프로젝트: buxx/simtermites
 def __init__(self, host):
   Termite.__init__(self, host)
예제 #3
0
파일: Queen.py 프로젝트: buxx/simtermites
 def __init__(self, host, work):
   Termite.__init__(self, host)
   self.move_wait_probability = Configuration.TERMITE_QUEEN_MOVE_WAIT_PROBABILITY
   self.work = work