src/work/deba/slowgraph.h
author marci
Thu, 15 Apr 2004 14:41:20 +0000
changeset 330 7ac0d4e8a31c
permissions -rw-r--r--
In the resgraphwrapper interface, and in the constructor,
the order of FlowMap and CapacityMap is changed.
deba@261
     1
#ifndef SLOWGRAPH_H
deba@261
     2
#define SLOWGRAPH_H
deba@261
     3
deba@261
     4
class SlowGraphBase {
deba@261
     5
private:
deba@261
     6
	typedef vector<int> EdgeVector;
deba@261
     7
  typedef vector<EdgeVector> NodeVector;
deba@261
     8
	
deba@261
     9
  NodeVector in_nodes, out_nodes;
deba@261
    10
deba@261
    11
public:
deba@261
    12
	typedef Edge
deba@261
    13
};
deba@261
    14
deba@261
    15
typedef MappedGraph<SlowGraphBase> SlowGraph;
deba@261
    16
deba@261
    17
#endif