src/work/deba/slowgraph.h
author alpar
Tue, 30 Mar 2004 13:18:10 +0000
changeset 264 fe81c4b117f4
permissions -rw-r--r--
bin_heap.hh -> bin_heap.h
     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