37 #include "ompl/geometric/planners/informedtrees/aitstar/Edge.h"
54 Edge::Edge(
const std::shared_ptr<Vertex> &parent,
const std::shared_ptr<Vertex> &child,
55 const std::array<ompl::base::Cost, 3u> &sortKey)
56 : parent_(parent), child_(child), sortKey_(sortKey)
60 std::shared_ptr<Vertex> Edge::getParent()
const
65 std::shared_ptr<Vertex> Edge::getChild()
const
70 const std::array<ompl::base::Cost, 3u> &Edge::getSortKey()
const
75 void Edge::setSortKey(
const std::array<ompl::base::Cost, 3u> &key)