equal
deleted
inserted
replaced
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 |