MinimaxObjective.cpp
39 ompl::base::MinimaxObjective::MinimaxObjective(const SpaceInformationPtr &si) : OptimizationObjective(si)
48 ompl::base::Cost ompl::base::MinimaxObjective::motionCost(const State *s1, const State *s2) const
A shared pointer wrapper for ompl::base::SpaceInformation.
Cost motionCost(const State *s1, const State *s2) const override
Interpolates between s1 and s2 to check for state costs along the motion between the two states....
Definition: MinimaxObjective.cpp:48
Definition of a cost value. Can represent the cost of a motion or the cost of a state.
Definition: Cost.h:111
Cost combineCosts(Cost c1, Cost c2) const override
Since we're only concerned about the "worst" state cost in the path, combining two costs just returns...
Definition: MinimaxObjective.cpp:75
Cost stateCost(const State *s) const override
Returns a cost with a value of 1.
Definition: MinimaxObjective.cpp:43