COIN-OR::LEMON - Graph Library

Changeset 1303:9bcc455da4f5 in lemon-0.x for src/work/athos/lp/lp_base.h


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

SolutionStatus? -> SolveExitStatus?
SolutionType? -> SolutionStatus?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/work/athos/lp/lp_base.h

    r1295 r1303  
    106106
    107107    ///\e
    108     enum SolutionStatus {
     108    enum SolveExitStatus {
    109109      ///\e
    110110      SOLVED = 0,
     
    114114     
    115115    ///\e
    116     enum SolutionType {
     116    enum SolutionStatus {
    117117      ///Feasible solution has'n been found (but may exist).
    118118
     
    391391    virtual void _setRowUpperBound(int i, Value value) = 0;
    392392    virtual void _setObjCoeff(int i, Value obj_coef) = 0;
    393     virtual SolutionStatus _solve() = 0;
     393    virtual SolveExitStatus _solve() = 0;
    394394    virtual Value _getPrimal(int i) = 0;
    395     virtual SolutionType _getPrimalType() = 0;
     395    virtual SolutionStatus _getPrimalType() = 0;
    396396
    397397
     
    615615
    616616    ///\e
    617     SolutionStatus solve() { return _solve(); }
     617    SolveExitStatus solve() { return _solve(); }
    618618   
    619619    ///@}
     
    624624
    625625    ///\e
    626     SolutionType primalType() {
     626    SolutionStatus primalType() {
    627627      return _getPrimalType();
    628628    }
Note: See TracChangeset for help on using the changeset viewer.