Buran Motion Planning Framework
|
6 #include "base/path_finder.h"
19 explicit PathOptimizer(std::shared_ptr<bmpf::PathFinder> &pf,
const std::string &optimizeMethod);
26 virtual std::vector<std::vector<double>>
optimizePath(std::vector<std::vector<double>> path) = 0;
45 std::shared_ptr<bmpf::PathFinder>
_pf;
virtual std::vector< std::vector< double > > optimizePath(std::vector< std::vector< double >> path)=0
std::string getPathOptimizeMethod()
Definition: optimize_path.h:38
PathOptimizer(std::shared_ptr< bmpf::PathFinder > &pf, const std::string &optimizeMethod)
Definition: optimize_path.cpp:10
Definition: optimize_path.h:12
std::shared_ptr< bmpf::PathFinder > _pf
Definition: optimize_path.h:45
std::string _optimizeMethod
Definition: optimize_path.h:49
std::shared_ptr< bmpf::PathFinder > getPathFinder()
Definition: optimize_path.h:32