gravatar
kpeter (Peter Kovacs)
kpeter@inf.elte.hu
Rename flowInit() to init() in Preflow (#176)
0 2 0
default
2 files changed with 3 insertions and 3 deletions:
↑ Collapse diff ↑
Show white space 6 line context
... ...
@@ -447,3 +447,3 @@
447 447
    template <typename FlowMap>
448
    bool flowInit(const FlowMap& flowMap) {
448
    bool init(const FlowMap& flowMap) {
449 449
      createStructures();
Ignore white space 6 line context
... ...
@@ -57,3 +57,3 @@
57 57
  preflow_test.init();
58
  preflow_test.flowInit(cap);
58
  preflow_test.init(cap);
59 59
  preflow_test.startFirstPhase();
... ...
@@ -155,3 +155,3 @@
155 155
  for(ArcIt e(g); e!=INVALID; ++e) cap[e]=2*cap[e];
156
  preflow_test.flowInit(flow);
156
  preflow_test.init(flow);
157 157
  preflow_test.startFirstPhase();
0 comments (0 inline)