public interface ModelPlanner
| Modifier and Type | Interface and Description |
|---|---|
static interface |
ModelPlanner.ModelPlannerGenerator |
| Modifier and Type | Method and Description |
|---|---|
void |
initializePlannerIn(State s)
This is method is expected to be called at the beginning of any new learning episode.
|
void |
modelChanged(State changedState)
Tells the planner that the model has changed and that it will need to replan accordingly
|
Policy |
modelPlannedPolicy()
Returns a policy encoding the planner's results.
|
void |
resetPlanner()
Resets planner as if no planning had never been called.
|
void initializePlannerIn(State s)
s - the input statevoid modelChanged(State changedState)
changedState - the source state that caused a change in the model.Policy modelPlannedPolicy()
void resetPlanner()