changeset 349 | 42c660f58702 |
-1:000000000000 | 0:3f6732813f5e |
---|---|
1 #ifndef SLOWGRAPH_H |
|
2 #define SLOWGRAPH_H |
|
3 |
|
4 class SlowGraphBase { |
|
5 private: |
|
6 typedef vector<int> EdgeVector; |
|
7 typedef vector<EdgeVector> NodeVector; |
|
8 |
|
9 NodeVector in_nodes, out_nodes; |
|
10 |
|
11 public: |
|
12 typedef Edge |
|
13 }; |
|
14 |
|
15 typedef MappedGraph<SlowGraphBase> SlowGraph; |
|
16 |
|
17 #endif |