template class mrpt::graphs::CAStarAlgorithm

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 this A* Wikipedia article for details about how this algorithm works.

See also:

CAStarAlgorithm::isSolutionEnded

CAStarAlgorithm::isSolutionValid

CAStarAlgorithm::generateChildren

CAStarAlgorithm::getHeuristic

CAStarAlgorithm::getCost

#include <mrpt/graphs/CAStarAlgorithm.h>

template <typename T>
class CAStarAlgorithm
{
public:
    //
methods

    virtual bool isSolutionEnded(const T& sol) = 0;
    virtual bool isSolutionValid(const T& sol) = 0;
    virtual void generateChildren(const T& sol, std::vector<T>& sols) = 0;
    virtual double getHeuristic(const T& sol) = 0;
    virtual double getCost(const T& sol) = 0;

    int getOptimalSolution(
        const T& initialSol,
        T& finalSol,
        double upperLevel = HUGE_VAL,
        double maxComputationTime = HUGE_VAL
        );
};

Methods

virtual bool isSolutionEnded(const T& sol) = 0

Client code must implement this method.

Returns true if the given solution is complete.

virtual bool isSolutionValid(const T& sol) = 0

Client code must implement this method.

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

virtual void generateChildren(const T& sol, std::vector<T>& sols) = 0

Client code must implement this method.

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

virtual double getHeuristic(const T& sol) = 0

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.

virtual double getCost(const T& sol) = 0

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.

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.

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.