equal
deleted
inserted
replaced
1369 /// \brief Constructor |
1369 /// \brief Constructor |
1370 /// |
1370 /// |
1371 /// Creates a subgraph for the given graph with the given node |
1371 /// Creates a subgraph for the given graph with the given node |
1372 /// and edge filter maps. |
1372 /// and edge filter maps. |
1373 SubGraph(GR& graph, NF& node_filter, EF& edge_filter) { |
1373 SubGraph(GR& graph, NF& node_filter, EF& edge_filter) { |
1374 initialize(graph, node_filter, edge_filter); |
1374 this->initialize(graph, node_filter, edge_filter); |
1375 } |
1375 } |
1376 |
1376 |
1377 /// \brief Sets the status of the given node |
1377 /// \brief Sets the status of the given node |
1378 /// |
1378 /// |
1379 /// This function sets the status of the given node. |
1379 /// This function sets the status of the given node. |
2275 |
2275 |
2276 /// \brief Constructor |
2276 /// \brief Constructor |
2277 /// |
2277 /// |
2278 /// Creates an undirected graph from the given digraph. |
2278 /// Creates an undirected graph from the given digraph. |
2279 Undirector(DGR& digraph) { |
2279 Undirector(DGR& digraph) { |
2280 initialize(digraph); |
2280 this->initialize(digraph); |
2281 } |
2281 } |
2282 |
2282 |
2283 /// \brief Arc map combined from two original arc maps |
2283 /// \brief Arc map combined from two original arc maps |
2284 /// |
2284 /// |
2285 /// This map adaptor class adapts two arc maps of the underlying |
2285 /// This map adaptor class adapts two arc maps of the underlying |