lemon/lp_base.h
changeset 2267 3575f17a6e7f
parent 2260 4274224f8a7d
child 2268 ad15bdd334bf
     1.1 --- a/lemon/lp_base.h	Fri Oct 27 15:19:33 2006 +0000
     1.2 +++ b/lemon/lp_base.h	Mon Oct 30 11:32:19 2006 +0000
     1.3 @@ -1174,7 +1174,7 @@
     1.4  
     1.5        ///Unfortunately, cplex 7.5 somewhere writes something like
     1.6        ///#define INTEGER 'I'
     1.7 -      LEMON_INTEGER = 1
     1.8 +      INT = 1
     1.9        ///\todo No support for other types yet.
    1.10      };
    1.11  
    1.12 @@ -1197,7 +1197,7 @@
    1.13      ///Sets the type of the given Col to integer or remove that property.
    1.14      void integer(Col c, bool enable) {
    1.15        if (enable)
    1.16 -	colType(c,LEMON_INTEGER);
    1.17 +	colType(c,INT);
    1.18        else
    1.19  	colType(c,REAL);
    1.20      }
    1.21 @@ -1207,7 +1207,7 @@
    1.22      ///Gives back the type of the column.
    1.23      ///\return true if the column has integer type and false if not.
    1.24      bool integer(Col c){
    1.25 -      return (colType(c)==LEMON_INTEGER);
    1.26 +      return (colType(c)==INT);
    1.27      }
    1.28  
    1.29      /// The status of the MIP problem