COIN-OR::LEMON - Graph Library

Changeset 1458:7a483c1d38b5 in lemon-0.x for lemon/lp_base.h


Ignore:
Timestamp:
06/09/05 11:49:48 (19 years ago)
Author:
athos
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1938
Message:

Not ready, but I commit it for simplicity.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/lp_base.h

    r1445 r1458  
    109109  public:
    110110
    111     ///\e
     111    ///Possible outcomes of an LP solving procedure
    112112    enum SolveExitStatus {
    113       ///\e
     113      ///This means that the problem has been successfully solved: either
     114      ///an optimal solution has been found or infeasibility/unboundedness
     115      ///has been proved.
    114116      SOLVED = 0,
    115       ///\e
     117      ///Any other case (including the case when some user specified limit has been exceeded)
    116118      UNSOLVED = 1
    117119    };
     
    916918    ///@{
    917919
    918     ///\e
     920    ///\e Solve the LP problem at hand
     921    ///
     922    ///\return The result of the optimization procedure. Possible values and their meanings can be found in the documentation of \ref SolveExitStatus.
     923    ///
     924    ///\todo Which method is used to solve the problem
    919925    SolveExitStatus solve() { return _solve(); }
    920926   
     
    925931    ///@{
    926932
    927     ///\e
     933    ///\e 
    928934    SolutionStatus primalStatus() {
    929935      return _getPrimalStatus();
Note: See TracChangeset for help on using the changeset viewer.