All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
PlannerDataStorage.cpp
Object containing planner generated vertex and edge data. It is assumed that all vertices are unique...
Definition: PlannerData.h:163
virtual void load(const char *filename, PlannerData &pd)
Load the PlannerData structure from the given stream. The StateSpace that was used to store the data ...
Definition: PlannerDataStorage.cpp:91
unsigned int numEdges() const
Retrieve the number of edges in this structure.
Definition: PlannerData.cpp:203
unsigned int numVertices() const
Retrieve the number of vertices in this structure.
Definition: PlannerData.cpp:198
A shared pointer wrapper for ompl::base::SpaceInformation.
Information stored at the beginning of the PlannerData archive.
Definition: PlannerDataStorage.h:106
std::size_t vertex_count
Number of vertices stored in the archive.
Definition: PlannerDataStorage.h:112
boost::uint32_t marker
OMPL PlannerData specific marker (fixed value)
Definition: PlannerDataStorage.h:109
const SpaceInformationPtr & getSpaceInformation() const
Return the instance of SpaceInformation used in this PlannerData.
Definition: PlannerData.cpp:765
std::vector< int > signature
Signature of state space that allocated the saved states in the vertices (see ompl::base::StateSpace:...
Definition: PlannerDataStorage.h:118
virtual void store(const PlannerData &pd, const char *filename)
Store (serialize) the PlannerData structure to the given filename.
Definition: PlannerDataStorage.cpp:50