-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUndirectedGraph.h
45 lines (31 loc) · 965 Bytes
/
UndirectedGraph.h
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
#pragma once
#include <boost/graph/adjacency_list.hpp>
namespace RxGraph {
template <typename Vertex, typename Edge>
class UndirectedGraph
{
private:
typedef boost::adjacency_list<boost::vecS, boost::vecS, boost::undirectedS, Vertex, Edge> Graph;
public:
Graph graph_;
};
template <typename Vertex, typename Edge, typename VertexId>
class GraphBuilder
{
private:
typedef boost::adjacency_list<boost::vecS, boost::vecS, boost::undirectedS, Vertex, Edge> Graph;
typedef typename boost::graph_traits<Graph>::vertex_descriptor vertex_descriptor;
typedef std::map<VertexId, vertex_descriptor> VertexIdToGraph;
typedef std::map<vertex_descriptor, VertexId> GraphToVertexId;
public:
GraphBuilder* AddVertex(VertexId id, Vertex vertex)
{
//graph_.
return this;
}
public:
Graph graph_;
VertexIdToGraph vertexIdToGraph_;
GraphToVertexId graphToVertexId_;
};
}