Go to the documentation of this file.00001
00002
00003 from .action_executor import ActionExecutor
00004 from .atom_krr2014 import AtomKRR2014
00005
00006 class ActionExecutorKRR2014(ActionExecutor):
00007
00008 def __init__(self, dry_run=False, initial_file=None):
00009 super(ActionExecutorKRR2014, self).__init__(dry_run, initial_file,
00010 AtomKRR2014)
00011
00012 def execute_action(self, action, next_state, next_step):
00013 success, observations = \
00014 super(ActionExecutorKRR2014, self).execute_action(action,
00015 next_state,
00016 next_step)
00017 return success, observations