COIN-OR::LEMON - Graph Library

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_solver_skeleton.cc

    r1254 r1263  
    6565  {
    6666  }
     67
     68  LpSolverSkeleton::SolutionType LpSolverSkeleton::_solve()
     69  {
     70    return OPTIMAL;
     71  }
     72
     73  LpSolverSkeleton::Value LpSolverSkeleton::_getSolution(int i)
     74  {
     75    return 0;
     76  }
    6777 
    6878} //namespace lemon
Note: See TracChangeset for help on using the changeset viewer.