src/test/sym_graph_test.cc
changeset 962 1a770e9f80b2
parent 938 70e2886211d5
child 986 e997802b855c
equal deleted inserted replaced
2:d50b934ecaa9 3:a56a03fe582f
    14  *
    14  *
    15  */
    15  */
    16 
    16 
    17 #include<iostream>
    17 #include<iostream>
    18 
    18 
    19 #include<lemon/skeletons/sym_graph.h>
    19 #include<lemon/concept/sym_graph.h>
    20 
    20 
    21 #include<lemon/list_graph.h>
    21 #include<lemon/list_graph.h>
    22 #include<lemon/smart_graph.h>
    22 #include<lemon/smart_graph.h>
    23 #include<lemon/full_graph.h>
    23 #include<lemon/full_graph.h>
    24 
    24 
    52     checkGraphOutEdgeList(G,n,3);
    52     checkGraphOutEdgeList(G,n,3);
    53   }  
    53   }  
    54 }
    54 }
    55 
    55 
    56 //Compile Graph
    56 //Compile Graph
    57 template void lemon::checkCompileStaticSymGraph<skeleton::StaticSymGraph>
    57 template void lemon::checkCompileStaticSymGraph<concept::StaticSymGraph>
    58 (skeleton::StaticSymGraph &);
    58 (concept::StaticSymGraph &);
    59 
    59 
    60 template void lemon::checkCompileSymGraph<skeleton::ExtendableSymGraph>
    60 template void lemon::checkCompileSymGraph<concept::ExtendableSymGraph>
    61 (skeleton::ExtendableSymGraph &);
    61 (concept::ExtendableSymGraph &);
    62 
    62 
    63 template void lemon::checkCompileErasableSymGraph<skeleton::ErasableSymGraph>
    63 template void lemon::checkCompileErasableSymGraph<concept::ErasableSymGraph>
    64 (skeleton::ErasableSymGraph &);
    64 (concept::ErasableSymGraph &);
    65 
    65 
    66 
    66 
    67 //Compile SymSmartGraph
    67 //Compile SymSmartGraph
    68 template void lemon::checkCompileSymGraph<SymSmartGraph>(SymSmartGraph &);
    68 template void lemon::checkCompileSymGraph<SymSmartGraph>(SymSmartGraph &);
    69 template
    69 template
    70 void lemon::skeleton::checkCompileGraphFindEdge<SymSmartGraph>(SymSmartGraph &);
    70 void lemon::concept::checkCompileGraphFindEdge<SymSmartGraph>(SymSmartGraph &);
    71 
    71 
    72 //Compile SymListGraph
    72 //Compile SymListGraph
    73 template void lemon::checkCompileSymGraph<SymListGraph>(SymListGraph &);
    73 template void lemon::checkCompileSymGraph<SymListGraph>(SymListGraph &);
    74 template void lemon::checkCompileErasableSymGraph<SymListGraph>(SymListGraph &);
    74 template void lemon::checkCompileErasableSymGraph<SymListGraph>(SymListGraph &);
    75 template
    75 template
    76 void lemon::skeleton::checkCompileGraphFindEdge<SymListGraph>(SymListGraph &);
    76 void lemon::concept::checkCompileGraphFindEdge<SymListGraph>(SymListGraph &);
    77 
    77 
    78 int main() 
    78 int main() 
    79 {
    79 {
    80   {
    80   {
    81     SymSmartGraph G;
    81     SymSmartGraph G;