def __init__(self, args): #print("Initializing the XnetMorseSolver") #XnetRobotSolver.__init__(self, args) MorseRobotProblemSolver.__init__(self, args) QueueSolver.__init__(self, args) self.xnet_worker = getattr(self.world, "robot1_instance") self.build_solver_processor(self.commandQ, self, self.xnet_worker)
def __init__(self, args): QueueSolver.__init__(self, args) BasicRobotProblemSolver.__init__(self, args) self.build_solver_processor(self.commandQ, self, self.xnet_worker) self.world = self.build_world('morse/world.json')