COIN-OR::LEMON - Graph Library

Changeset 2033:7bf1f64962c2 in lemon-0.x for lemon/preflow.h


Ignore:
Timestamp:
04/03/06 18:05:26 (18 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2672
Message:

Small corrections

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/preflow.h

    r2024 r2033  
    160160    ///calling \ref source, \ref target, \ref capacityMap and \ref
    161161    ///flowMap, resp.
    162       Preflow(const Graph& _gr, Node _s, Node _t,
    163               const CapacityMap& _cap, FlowMap& _f,
    164               const Tolerance &_sr=Tolerance()) :
     162    Preflow(const Graph& _gr, Node _s, Node _t,
     163            const CapacityMap& _cap, FlowMap& _f,
     164            const Tolerance &_sr=Tolerance()) :
    165165        _g(&_gr), _source(_s), _target(_t), _capacity(&_cap),
    166166        _flow(&_f), _surely(_sr),
     
    169169        if ( _source==_target )
    170170          throw InvalidArgument();
    171       }
     171    }
    172172   
    173173    ///Give a reference to the tolerance handler class
Note: See TracChangeset for help on using the changeset viewer.