test/graph_factory_test.cc
changeset 2111 ea1fa1bc3f6d
parent 1956 a055123339d5
child 2260 4274224f8a7d
equal deleted inserted replaced
2:7fd9fee60295 3:f6aa53250ea9
    68     checkGraphOutEdgeList(G,n,3);
    68     checkGraphOutEdgeList(G,n,3);
    69   }  
    69   }  
    70 }
    70 }
    71 
    71 
    72 //Compile Graph
    72 //Compile Graph
    73 template void lemon::concept::checkCompileStaticGraph<concept::StaticGraph>
    73 template void lemon::concept::checkCompileGraph<concept::Graph>
    74 (concept::StaticGraph &);
    74 (concept::Graph &);
    75 
    75 
    76 template
    76 template
    77 void lemon::concept::checkCompileExtendableGraph<concept::ExtendableGraph>
    77 void lemon::concept::checkCompileGraph<concept::Graph>
    78 (concept::ExtendableGraph &);
    78 (concept::Graph &);
    79 
    79 
    80 template
    80 template
    81 void lemon::concept::checkCompileErasableGraph<concept::ErasableGraph>
    81 void lemon::concept::checkCompileGraph<concept::Graph>
    82 (concept::ErasableGraph &);
    82 (concept::Graph &);
    83 
    83 
    84 //Compile SmartGraph
    84 //Compile SmartGraph
    85 template
    85 template
    86 void lemon::concept::checkCompileExtendableGraph<SmartGraph>(SmartGraph &);
    86 void lemon::concept::checkCompileGraph<SmartGraph>(SmartGraph &);
    87 template
    87 template
    88 void lemon::concept::checkCompileGraphFindEdge<SmartGraph>(SmartGraph &);
    88 void lemon::concept::checkCompileGraphFindEdge<SmartGraph>(SmartGraph &);
    89 
    89 
    90 //Compile SymSmartGraph
    90 //Compile SymSmartGraph
    91 //template void hugo::checkCompileGraph<SymSmartGraph>(SymSmartGraph &);
    91 //template void hugo::checkCompileGraph<SymSmartGraph>(SymSmartGraph &);
    92 //template void hugo::checkCompileGraphFindEdge<SymSmartGraph>(SymSmartGraph &);
    92 //template void hugo::checkCompileGraphFindEdge<SymSmartGraph>(SymSmartGraph &);
    93 
    93 
    94 //Compile ListGraph
    94 //Compile ListGraph
    95 template
    95 template
    96 void lemon::concept::checkCompileExtendableGraph<ListGraph>(ListGraph &);
    96 void lemon::concept::checkCompileGraph<ListGraph>(ListGraph &);
    97 template
    97 template
    98 void lemon::concept::checkCompileErasableGraph<ListGraph>(ListGraph &);
    98 void lemon::concept::checkCompileGraph<ListGraph>(ListGraph &);
    99 template
    99 template
   100 void lemon::concept::checkCompileGraphFindEdge<ListGraph>(ListGraph &);
   100 void lemon::concept::checkCompileGraphFindEdge<ListGraph>(ListGraph &);
   101 
   101 
   102 
   102 
   103 //Compile SymListGraph
   103 //Compile SymListGraph
   104 //template void hugo::checkCompileGraph<SymListGraph>(SymListGraph &);
   104 //template void hugo::checkCompileGraph<SymListGraph>(SymListGraph &);
   105 //template void hugo::checkCompileErasableGraph<SymListGraph>(SymListGraph &);
   105 //template void hugo::checkCompileGraph<SymListGraph>(SymListGraph &);
   106 //template void hugo::checkCompileGraphFindEdge<SymListGraph>(SymListGraph &);
   106 //template void hugo::checkCompileGraphFindEdge<SymListGraph>(SymListGraph &);
   107 
   107 
   108 //Compile FullGraph
   108 //Compile FullGraph
   109 template void lemon::concept::checkCompileStaticGraph<FullGraph>(FullGraph &);
   109 template void lemon::concept::checkCompileGraph<FullGraph>(FullGraph &);
   110 template
   110 template
   111 void lemon::concept::checkCompileGraphFindEdge<FullGraph>(FullGraph &);
   111 void lemon::concept::checkCompileGraphFindEdge<FullGraph>(FullGraph &);
   112 
   112 
   113 
   113 
   114 int main() 
   114 int main()