Action Model directory.
Sub-directory with the implementation of the different action models.
An action model is a probability defined on the state and action
spaces
AM: S x A x S -> [0,1]
describing the probability of moving from one state to another when a
given action is executed.
The implementations in this directory contemplate the case of S and A to
be discrete of continuous spaces.
CROSS-REFERENCE INFORMATION
This function calls:
This function is called by:
SOURCE CODE
0001 % Action Model directory.
0002 %
0003 % Sub-directory with the implementation of the different action models.
0004 % An action model is a probability defined on the state and action
0005 % spaces
0006 % AM: S x A x S -> [0,1]
0007 % describing the probability of moving from one state to another when a
0008 % given action is executed.
0009 %
0010 % The implementations in this directory contemplate the case of S and A to
0011 % be discrete of continuous spaces.
0012 %