예제 #1
0
파일: qlearner.py 프로젝트: zilehuda/CIS521
 def __init__(self, world, load_file="save_bots/qbot.json"):
     ValueBot.__init__(self, world, load_file)
     self.ngame = 0
예제 #2
0
 def __init__(self, world, load_file="save_bots/qbot.json"):
     self.world = world
     ValueBot.__init__(self, world, load_file)
     self.nturns = 0
     self.pathfinder = None
예제 #3
0
 def __init__(self,world, load_file="save_bots/qbot.json"):
     ValueBot.__init__(self,world, load_file)
     self.ngame = 0
예제 #4
0
파일: qlearner.py 프로젝트: lkirbyl/ANTS-
 def __init__(self,world, load_file="save_bots/qbot.json"):
     ValueBot.__init__(self,world, load_file)
     self.nturns = 0
     self.percentSeen = 0
     self.lastPercentSeen = 0
     self.world.stateless = False
예제 #5
0
 def __init__(self,world, load_file="save_bots/qbot.json"):
     self.world = world
     ValueBot.__init__(self,world, load_file)
     self.nturns = 0
     self.pathfinder = None