src/test/graph_wrapper_test.cc
changeset 933 1b7c88fbb950
parent 921 818510fa3d99
child 938 70e2886211d5
equal deleted inserted replaced
5:5d498b7b7c6c 6:1f444074a06b
    47 //Compile SubGraphWrapper
    47 //Compile SubGraphWrapper
    48 typedef SubGraphWrapper<Graph, Graph::NodeMap<bool>, 
    48 typedef SubGraphWrapper<Graph, Graph::NodeMap<bool>, 
    49 			Graph::EdgeMap<bool> > SubGW;
    49 			Graph::EdgeMap<bool> > SubGW;
    50 template void checkCompileStaticGraph<SubGW>(SubGW &);
    50 template void checkCompileStaticGraph<SubGW>(SubGW &);
    51 
    51 
       
    52 //Compile NodeSubGraphWrapper
       
    53 typedef NodeSubGraphWrapper<Graph, Graph::NodeMap<bool> > NodeSubGW;
       
    54 template void checkCompileStaticGraph<NodeSubGW>(NodeSubGW &);
       
    55 
       
    56 //Compile EdgeSubGraphWrapper
       
    57 typedef EdgeSubGraphWrapper<Graph, Graph::EdgeMap<bool> > EdgeSubGW;
       
    58 template void checkCompileStaticGraph<EdgeSubGW>(EdgeSubGW &);
       
    59 
    52 //Compile UndirGraphWrapper
    60 //Compile UndirGraphWrapper
    53 /// \bug UndirGraphWrapper cannot pass the StaticGraph test
    61 /// \bug UndirGraphWrapper cannot pass the StaticGraph test
    54 //typedef UndirGraphWrapper<Graph> UndirGW;
    62 //typedef UndirGraphWrapper<Graph> UndirGW;
    55 //template void checkCompileStaticGraph<UndirGW>(UndirGW &);
    63 //template void checkCompileStaticGraph<UndirGW>(UndirGW &);
    56 
    64