src/work/deba/slowgraph.h
author athos
Mon, 05 Apr 2004 17:33:04 +0000
changeset 306 4d15193e3a5d
permissions -rw-r--r--
Compiles and segfaults again. Renamed from Suurballe.
     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