|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface OnlineSearchProblemWithSuccessorFunction<K extends AgentAction,S extends AgentState>
DESCRIPTION
Method Summary | |
---|---|
java.util.Map<K,S> |
successorFunction(S theState)
Given a particular state x, returns a set of (action, successor) ordered pairs, where each action is one of the legal actions in state x and each successor is a state that can be reached from x by applying the action. |
void |
updateSuccessorFunction(S firstState,
K theAction,
S secondState)
Accessor to update the problem's successor function with new information learned from the environment. |
Methods inherited from interface edu.columbia.cs.coms4701.search.online.OnlineSearchProblem |
---|
actions, goalTest, stepCost |
Method Detail |
---|
java.util.Map<K,S> successorFunction(S theState)
theState
-
void updateSuccessorFunction(S firstState, K theAction, S secondState)
The necessity of updating the problem description after actions have been performed and percepts received distinguishes an online problem from an ordinary search problem.
firstState
- theAction
- secondState
-
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |