Uses of Class
ai.planning.propositional.WorldState

Packages that use WorldState
ai.planning.propositional   
 

Uses of WorldState in ai.planning.propositional
 

Fields in ai.planning.propositional declared as WorldState
protected  WorldState Problem.initialState
          the initial state of the world
 

Methods in ai.planning.propositional that return WorldState
 WorldState SequentialPlan.applyIn(WorldState<ai.krr.propositions.Atom> istate)
           This function computes a new WorldState that is the result of applying this SequentialPlan in the given state.
 WorldState Action.applyIn(WorldState<ai.krr.propositions.Atom> state)
           This function computes a new WorldState that is the result of applying this Action in the given state.
 WorldState WorldState.clone()
           This function creates a copy of this WorldState.
 WorldState Problem.getInitialState()
           This function returns the initial state of the world that defines this Problem.
protected static WorldState PplProblemAdaptor.parseInitialState(inf.compilers.LexicalAnalyzer scanner, java.util.Properties props)
           This function reads tokens from the given LexicalAnalyzer and attempts to create a state that corresponds to the parsed tokens.
 

Methods in ai.planning.propositional that return types with arguments of type WorldState
 java.util.Set<WorldState> Domain.getSuccessors(java.util.Set<WorldState> states)
           This function computes all the successor states of the given Set of WorldStates.
 java.util.Set<WorldState> Domain.getSuccessors(WorldState state)
           This function computes all the successor states of the given WorldState.
 

Methods in ai.planning.propositional with parameters of type WorldState
 java.util.Set<WorldState> Domain.getSuccessors(WorldState state)
           This function computes all the successor states of the given WorldState.
protected static void PplProblemAdaptor.prettyPrintInitialState(int indent, WorldState state, java.io.Writer w, java.util.Properties props)
           This function writes the given initial WorldState to the given Writer, using the given Properties.
protected static void PplProblemAdaptor.writeInitialState(WorldState state, java.io.Writer w, java.util.Properties props)
           This function writes the given initial WorldState to the given Writer, using the given Properties.
 

Method parameters in ai.planning.propositional with type arguments of type WorldState
 java.util.Set<WorldState> Domain.getSuccessors(java.util.Set<WorldState> states)
           This function computes all the successor states of the given Set of WorldStates.
 

Constructors in ai.planning.propositional with parameters of type WorldState
Problem(Domain d, WorldState s0, Goal g)
           This constructor creates a new planning problem over the given domain.