lemon/adaptors.h
changeset 963 761fe0846f49
parent 656 cb38ccedd2c1
child 964 7fdaa05a69a1
equal deleted inserted replaced
19:b4a60e5f5210 22:9c902e7a97ea
  1362     /// \brief Constructor
  1362     /// \brief Constructor
  1363     ///
  1363     ///
  1364     /// Creates a subgraph for the given graph with the given node
  1364     /// Creates a subgraph for the given graph with the given node
  1365     /// and edge filter maps.
  1365     /// and edge filter maps.
  1366     SubGraph(GR& graph, NF& node_filter, EF& edge_filter) {
  1366     SubGraph(GR& graph, NF& node_filter, EF& edge_filter) {
  1367       initialize(graph, node_filter, edge_filter);
  1367       this->initialize(graph, node_filter, edge_filter);
  1368     }
  1368     }
  1369 
  1369 
  1370     /// \brief Sets the status of the given node
  1370     /// \brief Sets the status of the given node
  1371     ///
  1371     ///
  1372     /// This function sets the status of the given node.
  1372     /// This function sets the status of the given node.
  2259 
  2259 
  2260     /// \brief Constructor
  2260     /// \brief Constructor
  2261     ///
  2261     ///
  2262     /// Creates an undirected graph from the given digraph.
  2262     /// Creates an undirected graph from the given digraph.
  2263     Undirector(DGR& digraph) {
  2263     Undirector(DGR& digraph) {
  2264       initialize(digraph);
  2264       this->initialize(digraph);
  2265     }
  2265     }
  2266 
  2266 
  2267     /// \brief Arc map combined from two original arc maps
  2267     /// \brief Arc map combined from two original arc maps
  2268     ///
  2268     ///
  2269     /// This map adaptor class adapts two arc maps of the underlying
  2269     /// This map adaptor class adapts two arc maps of the underlying