COIN-OR::LEMON - Graph Library

Changeset 2324:18fc834761d9 in lemon-0.x for lemon/lp_skeleton.cc


Ignore:
Timestamp:
12/04/06 17:48:13 (17 years ago)
Author:
athos
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3100
Message:

Some query functions got implemented, but only for GLPK.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/lp_skeleton.cc

    r2312 r2324  
    6969  }
    7070
     71  LpSkeleton::Value LpSkeleton::_getCoeff(int, int)
     72  {
     73    return 0;
     74  }
     75
    7176
    7277  void LpSkeleton::_setColLowerBound(int, Value)
     
    9499  }
    95100
     101  LpSkeleton::Value LpSkeleton::_getObjCoeff(int i){
     102    return 0;
     103  }
     104
    96105  void LpSkeleton::_setMax()
    97106  {
     
    101110  {
    102111  }
     112
     113  bool LpSkeleton::_isMax()
     114  {
     115    return true;
     116  }
     117
    103118
    104119  void LpSkeleton::_clearObj()
Note: See TracChangeset for help on using the changeset viewer.