Which is the most straight forward approach for planning algorithm?

Asked 25-Nov-2017
Viewed 997 times

0

Which is the most straight forward approach for planning algorithm?


1 Answer


0

State Space Search!

Which is the most straight forward approach for planning algorithm?

The approach that has been considered to be straightforward is State Space Search as it takes over everything which is been taken into the account…

Well, knowing what exactly the State Space Search is all about, it is been one of the generic formulation describing the intelligent action. It does contain all the required information for predicting the post effect of an action for determining its state at goal. Thus, it assumes following parameters as below:

  • The agent should be equipped with the knowledge of the State Space stating about its stats
  • Agent must also be equipped with a set of actions that would produce the deterministic outcomes
  • Considering the outcome, few are been analyzed as the goal state which is been shouldered over the agent to reach that state prior to its recognition
  • A Solution is the sequence of the state/action that an agent can get through traversing from current to its goal state


Cheers!