COIN-OR::LEMON - Graph Library

Changeset 2361:f2ef1aa8189a in lemon-0.x for lemon/lp_cplex.h


Ignore:
Timestamp:
02/14/07 14:50:25 (17 years ago)
Author:
athos
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3167
Message:

Implemented virtual functions of class LpCplex?.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/lp_cplex.h

    r2312 r2361  
    5656    virtual LpSolverBase &_copyLp();
    5757
     58
    5859    virtual int _addCol();
    5960    virtual int _addRow();
     
    6566    virtual void _setColCoeffs(int i, LpColIterator b, LpColIterator e);
    6667    virtual void _setCoeff(int row, int col, Value value);
     68    virtual Value _getCoeff(int row, int col);
     69
    6770    virtual void _setColLowerBound(int i, Value value);
     71    virtual Value _getColLowerBound(int i);
    6872    virtual void _setColUpperBound(int i, Value value);
     73    virtual Value _getColUpperBound(int i);
     74
    6975//     virtual void _setRowLowerBound(int i, Value value);
    7076//     virtual void _setRowUpperBound(int i, Value value);
    7177    virtual void _setRowBounds(int i, Value lower, Value upper);
     78    virtual void _getRowBounds(int i, Value &lb, Value &ub);
    7279    virtual void _setObjCoeff(int i, Value obj_coef);
     80    virtual Value _getObjCoeff(int i);
    7381    virtual void _clearObj();
    74     ///\e
     82
    7583   
    7684    virtual SolveExitStatus _solve();
     
    8896    virtual void _setMin();
    8997
     98    virtual bool _isMax();
     99
    90100  };
    91101} //END OF NAMESPACE LEMON
Note: See TracChangeset for help on using the changeset viewer.