lemon/adaptors.h
branch1.2
changeset 1278 92d53f86d1a9
parent 956 141f9c0db4a3
parent 1157 761fe0846f49
child 1270 dceba191c00d
child 1401 cd72eae05bdf
equal deleted inserted replaced
21:573f77431e68 25:5ae32a4fbf2b
  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