COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/work/deba/slowgraph.h @ 264:fe81c4b117f4

Last change on this file since 264:fe81c4b117f4 was 261:796101caedb7, checked in by Balazs Dezso, 20 years ago
File size: 262 bytes
RevLine 
[261]1#ifndef SLOWGRAPH_H
2#define SLOWGRAPH_H
3
4class SlowGraphBase {
5private:
6        typedef vector<int> EdgeVector;
7  typedef vector<EdgeVector> NodeVector;
8       
9  NodeVector in_nodes, out_nodes;
10
11public:
12        typedef Edge
13};
14
15typedef MappedGraph<SlowGraphBase> SlowGraph;
16
17#endif
Note: See TracBrowser for help on using the repository browser.