COIN-OR::LEMON - Graph Library

Changeset 1248:14394c9603c2 in lemon for test


Ignore:
Timestamp:
08/06/13 12:19:11 (11 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
1.1
Parents:
1243:79f149ee0230 (diff), 1247:115031ac8001 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Phase:
public
Message:

Merge further fixes #470 to branch 1.1

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • test/lp_test.cc

    r1237 r1248  
    199199      c = c <= 4;
    200200      LP::Constr c2;
     201#if ( __GNUC__ == 4 ) && ( __GNUC_MINOR__ == 3 )
     202      c2 = ( -3 <= v ) <= 4;
     203#else
    201204      c2 = -3 <= v <= 4;
     205#endif
     206
    202207    }
    203208
  • test/lp_test.cc

    r1247 r1248  
    33 * This file is a part of LEMON, a generic C++ optimization library.
    44 *
    5  * Copyright (C) 2003-2009
     5 * Copyright (C) 2003-2011
    66 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    77 * (Egervary Research Group on Combinatorial Optimization, EGRES).
Note: See TracChangeset for help on using the changeset viewer.