src/test/sym_graph_test.cc
changeset 959 c80ef5912903
parent 938 70e2886211d5
child 986 e997802b855c
     1.1 --- a/src/test/sym_graph_test.cc	Thu Nov 04 18:52:31 2004 +0000
     1.2 +++ b/src/test/sym_graph_test.cc	Thu Nov 04 20:24:59 2004 +0000
     1.3 @@ -16,7 +16,7 @@
     1.4  
     1.5  #include<iostream>
     1.6  
     1.7 -#include<lemon/skeletons/sym_graph.h>
     1.8 +#include<lemon/concept/sym_graph.h>
     1.9  
    1.10  #include<lemon/list_graph.h>
    1.11  #include<lemon/smart_graph.h>
    1.12 @@ -54,26 +54,26 @@
    1.13  }
    1.14  
    1.15  //Compile Graph
    1.16 -template void lemon::checkCompileStaticSymGraph<skeleton::StaticSymGraph>
    1.17 -(skeleton::StaticSymGraph &);
    1.18 +template void lemon::checkCompileStaticSymGraph<concept::StaticSymGraph>
    1.19 +(concept::StaticSymGraph &);
    1.20  
    1.21 -template void lemon::checkCompileSymGraph<skeleton::ExtendableSymGraph>
    1.22 -(skeleton::ExtendableSymGraph &);
    1.23 +template void lemon::checkCompileSymGraph<concept::ExtendableSymGraph>
    1.24 +(concept::ExtendableSymGraph &);
    1.25  
    1.26 -template void lemon::checkCompileErasableSymGraph<skeleton::ErasableSymGraph>
    1.27 -(skeleton::ErasableSymGraph &);
    1.28 +template void lemon::checkCompileErasableSymGraph<concept::ErasableSymGraph>
    1.29 +(concept::ErasableSymGraph &);
    1.30  
    1.31  
    1.32  //Compile SymSmartGraph
    1.33  template void lemon::checkCompileSymGraph<SymSmartGraph>(SymSmartGraph &);
    1.34  template
    1.35 -void lemon::skeleton::checkCompileGraphFindEdge<SymSmartGraph>(SymSmartGraph &);
    1.36 +void lemon::concept::checkCompileGraphFindEdge<SymSmartGraph>(SymSmartGraph &);
    1.37  
    1.38  //Compile SymListGraph
    1.39  template void lemon::checkCompileSymGraph<SymListGraph>(SymListGraph &);
    1.40  template void lemon::checkCompileErasableSymGraph<SymListGraph>(SymListGraph &);
    1.41  template
    1.42 -void lemon::skeleton::checkCompileGraphFindEdge<SymListGraph>(SymListGraph &);
    1.43 +void lemon::concept::checkCompileGraphFindEdge<SymListGraph>(SymListGraph &);
    1.44  
    1.45  int main() 
    1.46  {