lemon/network_simplex.h
changeset 1166 d59484d5fc1f
parent 1136 fcb6ad1e67d0
parent 1165 16f55008c863
child 1217 7bf489cf624e
child 1240 ee9bac10f58e
     1.1 --- a/lemon/network_simplex.h	Thu Sep 13 12:23:46 2012 +0200
     1.2 +++ b/lemon/network_simplex.h	Wed Nov 07 17:39:39 2012 +0100
     1.3 @@ -48,7 +48,8 @@
     1.4    /// flow problem.
     1.5    ///
     1.6    /// In general, \ref NetworkSimplex and \ref CostScaling are the fastest
     1.7 -  /// implementations available in LEMON for this problem.
     1.8 +  /// implementations available in LEMON for solving this problem.
     1.9 +  /// (For more information, see \ref min_cost_flow_algs "the module page".)
    1.10    /// Furthermore, this class supports both directions of the supply/demand
    1.11    /// inequality constraints. For more information, see \ref SupplyType.
    1.12    ///
    1.13 @@ -1009,7 +1010,8 @@
    1.14        return _flow[_arc_id[a]];
    1.15      }
    1.16  
    1.17 -    /// \brief Return the flow map (the primal solution).
    1.18 +    /// \brief Copy the flow values (the primal solution) into the
    1.19 +    /// given map.
    1.20      ///
    1.21      /// This function copies the flow value on each arc into the given
    1.22      /// map. The \c Value type of the algorithm must be convertible to
    1.23 @@ -1033,7 +1035,8 @@
    1.24        return _pi[_node_id[n]];
    1.25      }
    1.26  
    1.27 -    /// \brief Return the potential map (the dual solution).
    1.28 +    /// \brief Copy the potential values (the dual solution) into the
    1.29 +    /// given map.
    1.30      ///
    1.31      /// This function copies the potential (dual value) of each node
    1.32      /// into the given map.