\brief Return the flow on the given arc. This function returns the flow on the given arc. \pre \ref run() must be called before using this function.
| 897 | /// |
| 898 | /// \pre \ref run() must be called before using this function. |
| 899 | Value flow(const Arc& a) const { |
| 900 | return _flow[getArcID(a)]; |
| 901 | } |
| 902 | |
| 903 | /// \brief Return the flow map (the primal solution). |
| 904 | /// |
no outgoing calls
no test coverage detected