-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpolicy.hpp
70 lines (59 loc) · 1.83 KB
/
policy.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#ifndef MSTAR_POLICY_H
#define MSTAR_POLICY_H
/****************************************************************************
* Provides a wrapper for the Boost graphs
***************************************************************************/
#include <iostream>
#include <boost/graph/graph_traits.hpp>
#include <boost/graph/adjacency_list.hpp>
#include "mstar_type_defs.hpp"
namespace mstar{
/**
* Generates an individual policy for a robot to reach a specified goal
*/
class Policy{
private:
Graph g_; // the boost graph this wraps
std::vector<double> costs_; // holds cost to goal from every configuration
boost::property_map<Graph, boost::edge_weight_t>::type edge_weight_map_;
std::vector<int> predecessors_;
public:
/**
* @param g The graph describing the workspace
* @param goal The goal coordinate of the robot
*/
Policy(const Graph &g, const RobCoord goal);
/**
* Returns the cost-to-go from a vertex
* @param vert Vertex to query cost from
*
* @return the cost to go until the goal is reached
*/
double get_cost(RobCoord coord);
/**
* Returns cost of traversing the edge (u, v)
*
* Does not check whether the edge exists
*
* @param u Source vertex of the edge
* @param v Destination vertex of the dge
*
* @return the cost of the edge
*/
double get_edge_cost(RobCoord u, RobCoord v);
/**
* Returns the out-neighbors of a given coordinate
* @param coord Vertex to get out neighbors of
*/
std::vector<RobCoord> get_out_neighbors(RobCoord coord);
/**
* Returns the successor of the specified coordinate
*
* @param coord coordinate to compute the successor thereof
*
* @return coordinate of next step
*/
RobCoord get_step(RobCoord coord);
};
}
#endif