COIN-OR::LEMON - Graph Library

Changeset 1263:a490938ad0aa in lemon-0.x for src/work/athos/lp/lp_glpk.h


Ignore:
Timestamp:
03/25/05 17:19:03 (19 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1690
Message:
  • LpGlpk? added to the makefile
  • missing const_cast<>() added
  • prop for two new functions (solve() and solution())
File:
1 edited

Legend:

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

    r1261 r1263  
    5656    virtual void _setRowCoeffs(int i,
    5757                               int length,
    58                                int   * indices,
    59                                Value   * values );
     58                               const int   * indices,
     59                               const Value   * values );
    6060    virtual void _setColCoeffs(int i,
    6161                               int length,
    62                                int   * indices,
    63                                Value   * values);
     62                               const int   * indices,
     63                               const Value   * values);
    6464    virtual void _setColLowerBound(int i, Value value);
    6565    virtual void _setColUpperBound(int i, Value value);
     
    6767    virtual void _setRowUpperBound(int i, Value value);
    6868    virtual void _setObjCoeff(int i, Value obj_coef);
     69    ///\e
     70   
     71    ///\bug Unimplemented
     72    ///
     73    virtual SolutionType _solve();
     74    ///\e
     75   
     76    ///\bug Unimplemented
     77    ///
     78    virtual Value _getSolution(int i);
    6979
    7080  };
Note: See TracChangeset for help on using the changeset viewer.