src/test/graph_test.cc
changeset 880 9d0bfd35b97c
parent 873 f3a30fda2e49
child 906 17f31d280385
equal deleted inserted replaced
18:688fb80f18f7 19:866523de342e
    49     checkGraphOutEdgeList(G,n,3);
    49     checkGraphOutEdgeList(G,n,3);
    50     ++n;
    50     ++n;
    51   }  
    51   }  
    52 }
    52 }
    53 
    53 
    54 //Compile GraphSkeleton
    54 //Compile Graph
    55 template void hugo::checkCompileStaticGraph<skeleton::StaticGraphSkeleton>
    55 template void hugo::checkCompileStaticGraph<skeleton::StaticGraph>
    56 (skeleton::StaticGraphSkeleton &);
    56 (skeleton::StaticGraph &);
    57 
    57 
    58 template void hugo::checkCompileGraph<skeleton::ExtendableGraphSkeleton>
    58 template void hugo::checkCompileGraph<skeleton::ExtendableGraph>
    59 (skeleton::ExtendableGraphSkeleton &);
    59 (skeleton::ExtendableGraph &);
    60 
    60 
    61 template void hugo::checkCompileErasableGraph<skeleton::ErasableGraphSkeleton>
    61 template void hugo::checkCompileErasableGraph<skeleton::ErasableGraph>
    62 (skeleton::ErasableGraphSkeleton &);
    62 (skeleton::ErasableGraph &);
    63 
    63 
    64 //Compile SmartGraph
    64 //Compile SmartGraph
    65 template void hugo::checkCompileGraph<SmartGraph>(SmartGraph &);
    65 template void hugo::checkCompileGraph<SmartGraph>(SmartGraph &);
    66 template void hugo::checkCompileGraphFindEdge<SmartGraph>(SmartGraph &);
    66 template void hugo::checkCompileGraphFindEdge<SmartGraph>(SmartGraph &);
    67 
    67