test/preflow_test.cc
branch1.2
changeset 927 d303bfa8b1ed
parent 902 79fab87ee483
child 972 1fe3b4ad8caa
     1.1 --- a/test/preflow_test.cc	Mon Aug 08 13:02:26 2011 +0200
     1.2 +++ b/test/preflow_test.cc	Mon Aug 08 13:13:03 2011 +0200
     1.3 @@ -2,7 +2,7 @@
     1.4   *
     1.5   * This file is a part of LEMON, a generic C++ optimization library.
     1.6   *
     1.7 - * Copyright (C) 2003-2010
     1.8 + * Copyright (C) 2003-2011
     1.9   * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    1.10   * (Egervary Research Group on Combinatorial Optimization, EGRES).
    1.11   *
    1.12 @@ -159,7 +159,7 @@
    1.13  void initFlowTest()
    1.14  {
    1.15    DIGRAPH_TYPEDEFS(SmartDigraph);
    1.16 -  
    1.17 +
    1.18    SmartDigraph g;
    1.19    SmartDigraph::ArcMap<int> cap(g),iflow(g);
    1.20    Node s=g.addNode(); Node t=g.addNode();
    1.21 @@ -271,6 +271,6 @@
    1.22          "The max flow value or the three min cut values are incorrect.");
    1.23  
    1.24    initFlowTest();
    1.25 -  
    1.26 +
    1.27    return 0;
    1.28  }