COIN-OR::LEMON - Graph Library

Changeset 959:c80ef5912903 in lemon-0.x for src/test/dijkstra_test.cc


Ignore:
Timestamp:
11/04/04 21:24:59 (19 years ago)
Author:
Mihaly Barasz
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1342
Message:

skeleton(s) -> concept renaming

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/test/dijkstra_test.cc

    r921 r959  
    1818#include <lemon/smart_graph.h>
    1919#include <lemon/dijkstra.h>
    20 #include<lemon/skeletons/graph.h>
    21 #include<lemon/skeletons/maps.h>
     20#include <lemon/concept/graph.h>
     21#include <lemon/concept/maps.h>
    2222using namespace lemon;
    2323
     
    2828{
    2929  typedef int VType;
    30   typedef skeleton::StaticGraph Graph;
     30  typedef concept::StaticGraph Graph;
    3131
    3232  typedef Graph::Edge Edge;
     
    3434  typedef Graph::EdgeIt EdgeIt;
    3535  typedef Graph::NodeIt NodeIt;
    36   typedef skeleton::ReadMap<Edge,VType> LengthMap;
     36  typedef concept::ReadMap<Edge,VType> LengthMap;
    3737 
    3838  typedef Dijkstra<Graph, LengthMap> DType;
Note: See TracChangeset for help on using the changeset viewer.