COIN-OR::LEMON - Graph Library

Changeset 1390:9c8e464ed940 in lemon-0.x


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

LpSkeleton? updated

Location:
src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/lemon/lp_skeleton.cc

    r1389 r1390  
    7474  }
    7575
    76   void _setRowBounds(int, Value, Value)
     76  void LpSkeleton::_setRowBounds(int, Value, Value)
    7777  {
    7878  }
     
    8585  {
    8686  }
     87
    8788  void LpSkeleton::_setMin()
    8889  {
    8990  }
    9091
     92  void LpSkeleton::_clearObj()
     93  {
     94  }
     95 
    9196  LpSkeleton::SolveExitStatus LpSkeleton::_solve()
    9297  {
  • src/lemon/lp_skeleton.h

    r1389 r1390  
    8585
    8686    /// \e
     87    virtual void _clearObj();
     88    /// \e
    8789    virtual void _setObjCoeff(int i, Value obj_coef);
    8890
  • src/test/lp_test.cc

    r1387 r1390  
     1#include<lemon/lp_skeleton.h>
     2
    13#ifdef HAVE_CONFIG_H
    24#include <config.h>
     
    143145int main()
    144146{
     147  LpSkeleton lp_skel;
     148  lpTest(lp_skel);
     149
    145150  LpDefault lp;
    146151
Note: See TracChangeset for help on using the changeset viewer.