Main MRPT website > C++ reference
MRPT logo
Public Member Functions | Private Member Functions
mrpt::graphs::CAStarAlgorithm Class Reference

Detailed Description

This class is intended to efficiently solve graph-search problems using heuristics to determine the best path.

To use it, a solution class must be defined so that it contains all the information about any partial or complete solution. Then, a class inheriting from CAStarAlgorithm<Solution class> must also be implemented, overriding five virtual methods which define the behaviour of the solutions. These methods are isSolutionEnded, isSolutionValid, generateChildren, getHeuristic and getCost. Once both classes are generated, each object of the class inheriting from CAStarAlgorithm represents a problem who can be solved by calling getOptimalSolution. See http://en.wikipedia.org/wiki/A*_search_algorithm for details about how this algorithm works.

See also:
CAStarAlgorithm::isSolutionEnded
CAStarAlgorithm::isSolutionValid
CAStarAlgorithm::generateChildren
CAStarAlgorithm::getHeuristic
CAStarAlgorithm::getCost

#include <mrpt/graphs/CAStarAlgorithm.h>

List of all members.

Public Member Functions

virtual bool isSolutionEnded (const T &sol)=0
 Client code must implement this method.
virtual bool isSolutionValid (const T &sol)=0
 Client code must implement this method.
virtual void generateChildren (const T &sol, std::vector< T > &sols)=0
 Client code must implement this method.
virtual double getHeuristic (const T &sol)=0
 Client code must implement this method.
virtual double getCost (const T &sol)=0
 Client code must implement this method.
int getOptimalSolution (const T &initialSol, T &finalSol, double upperLevel=HUGE_VAL, double maxComputationTime=HUGE_VAL)
 Finds the optimal solution for a problem, using the A* algorithm.

Private Member Functions

double getTotalCost (const T &sol)
 Calculates the total cost (known+estimated) of a solution.

Member Function Documentation

virtual void mrpt::graphs::CAStarAlgorithm::generateChildren ( const T &  sol,
std::vector< T > &  sols 
) [pure virtual]

Client code must implement this method.

Given a partial solution, returns all its children solution, regardless of their validity or completeness.

Referenced by getOptimalSolution().

virtual double mrpt::graphs::CAStarAlgorithm::getCost ( const T &  sol) [pure virtual]

Client code must implement this method.

Given a (possibly partial) solution, calculates its cost so far. This cost must not decrease with each step. That is, a solution cannot have a smaller cost than the previous one from which it was generated.

Referenced by getTotalCost().

virtual double mrpt::graphs::CAStarAlgorithm::getHeuristic ( const T &  sol) [pure virtual]

Client code must implement this method.

Given a partial solution, estimates the cost of the remaining (unknown) part. This cost must always be greater or equal to zero, and not greater than the actual cost. Thus, must be 0 if the solution is complete.

Referenced by getTotalCost().

int mrpt::graphs::CAStarAlgorithm::getOptimalSolution ( const T &  initialSol,
T &  finalSol,
double  upperLevel = HUGE_VAL,
double  maxComputationTime = HUGE_VAL 
) [inline]

Finds the optimal solution for a problem, using the A* algorithm.

Returns whether an optimal solution was actually found. Returns 0 if no solution was found, 1 if an optimal solution was found and 2 if a (possibly suboptimal) solution was found but the time lapse ended.

Definition at line 93 of file CAStarAlgorithm.h.

References mrpt::utils::CTicTac::Tic(), getTotalCost(), mrpt::utils::CTicTac::Tac(), isSolutionEnded(), generateChildren(), and isSolutionValid().

double mrpt::graphs::CAStarAlgorithm::getTotalCost ( const T &  sol) [inline, private]

Calculates the total cost (known+estimated) of a solution.

Definition at line 85 of file CAStarAlgorithm.h.

References getHeuristic(), and getCost().

Referenced by getOptimalSolution().

virtual bool mrpt::graphs::CAStarAlgorithm::isSolutionEnded ( const T &  sol) [pure virtual]

Client code must implement this method.

Returns true if the given solution is complete.

Referenced by getOptimalSolution().

virtual bool mrpt::graphs::CAStarAlgorithm::isSolutionValid ( const T &  sol) [pure virtual]

Client code must implement this method.

Returns true if the given solution is acceptable, that is, doesn't violate the problem logic.

Referenced by getOptimalSolution().




Page generated by Doxygen 1.7.5 for MRPT 0.9.5 SVN: at Thu Oct 13 21:25:36 UTC 2011