COIN-OR::LEMON - Graph Library

Changeset 2185:e2bf51eab7f7 in lemon-0.x for lemon/lp_base.h


Ignore:
Timestamp:
08/30/06 18:08:03 (18 years ago)
Author:
athos
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2906
Message:

Fixed the mip error (mipstatus was incorrect).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/lp_base.h

    r2148 r2185  
    122122      ///\e
    123123    enum SolutionStatus {
    124       ///Feasible solution has'n been found (but may exist).
     124      ///Feasible solution hasn't been found (but may exist).
    125125
    126126      ///\todo NOTFOUND might be a better name.
     
    12061206    }
    12071207
     1208    /// The status of the MIP problem
     1209    SolutionStatus mipStatus() {
     1210      return _getMipStatus();
     1211    }
     1212
    12081213  protected:
    12091214
    12101215    virtual ColTypes _colType(int col) = 0;
    12111216    virtual void _colType(int col, ColTypes col_type) = 0;
     1217    virtual SolutionStatus _getMipStatus()=0;
    12121218
    12131219  };
Note: See TracChangeset for help on using the changeset viewer.