COIN-OR::LEMON - Graph Library

Changeset 1397:30828157ae80 in lemon-0.x for src/lemon/lp_base.h


Ignore:
Timestamp:
04/29/05 10:21:03 (19 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1857
Message:

For the sake of cygwin...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/lemon/lp_base.h

    r1381 r1397  
    2121#include<map>
    2222#include<limits>
    23 #include<math.h>
     23#include<cmath>
    2424
    2525#include<lemon/utility.h>
     
    402402      bool lowerBounded() const {
    403403        using namespace std;
    404         return isfinite(_lb);
     404        return finite(_lb);
    405405      }
    406406      ///Is the constraint upper bounded?
    407407      bool upperBounded() const {
    408408        using namespace std;
    409         return isfinite(_ub);
     409        return finite(_ub);
    410410      }
    411411    };
Note: See TracChangeset for help on using the changeset viewer.