Result of a shortest path query. More...
#include <pose_graph.h>
Public Attributes | |
double | cost |
Cost of path. | |
std::vector< EdgeId > | edges |
Edges in path from source to destination; not currently filled in. | |
std::vector< NodeId > | nodes |
Nodes in path starting at source, ending at destination. | |
bool | path_found |
Whether a path was found; other fields only valid if this is true. |
Result of a shortest path query.
Definition at line 60 of file pose_graph.h.
Cost of path.
Definition at line 72 of file pose_graph.h.
std::vector<EdgeId> pose_graph::ShortestPathResult::edges |
Edges in path from source to destination; not currently filled in.
Definition at line 69 of file pose_graph.h.
std::vector<NodeId> pose_graph::ShortestPathResult::nodes |
Nodes in path starting at source, ending at destination.
Definition at line 66 of file pose_graph.h.
Whether a path was found; other fields only valid if this is true.
Definition at line 63 of file pose_graph.h.