コード例 #1
0
 def action_size(self) -> Sequence[Shape]:
     '''Returns the MDP action size.'''
     return utils.cell_size(self.compiler.rddl.action_size)
コード例 #2
0
 def interm_size(self) -> Sequence[Shape]:
     '''Returns the MDP intermediate state size.'''
     return utils.cell_size(self.compiler.rddl.interm_size)
コード例 #3
0
 def state_size(self) -> Sequence[Shape]:
     '''Returns the MDP state size.'''
     return utils.cell_size(self.compiler.rddl.state_size)