COIN-OR::LEMON - Graph Library

Changeset 1313:96b74270c3a1 in lemon-0.x for src/lemon/lp_skeleton.cc


Ignore:
Timestamp:
04/07/05 08:38:56 (19 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1752
Message:

LpSolverSkeleton? -> LpSkeleton?
lp_solver_skeleton* -> lp_skeleton*

File:
1 moved

Legend:

Unmodified
Added
Removed
  • src/lemon/lp_skeleton.cc

    r1312 r1313  
    11/* -*- C++ -*-
    2  * src/lemon/lp_solver_skeleton.cc
     2 * src/lemon/lp_skeleton.cc
    33 * - Part of LEMON, a generic C++ optimization library
    44 *
     
    1616 */
    1717
    18 #include <lemon/lp_solver_skeleton.h>
     18#include <lemon/lp_skeleton.h>
    1919
    2020///\file
     
    2222namespace lemon {
    2323 
    24   int LpSolverSkeleton::_addCol()
     24  int LpSkeleton::_addCol()
    2525  {
    2626    return ++col_num;
    2727  }
    2828 
    29   int LpSolverSkeleton::_addRow()
     29  int LpSkeleton::_addRow()
    3030  {
    3131    return ++row_num;
    3232  }
    3333 
    34   void LpSolverSkeleton::_setRowCoeffs(int i,
     34  void LpSkeleton::_setRowCoeffs(int i,
    3535                                               int length,
    3636                                               int  const * indices,
     
    3939  }
    4040 
    41   void LpSolverSkeleton::_setColCoeffs(int i,
     41  void LpSkeleton::_setColCoeffs(int i,
    4242                                               int length,
    4343                                               int  const * indices,
     
    4646  }
    4747 
    48   void LpSolverSkeleton::_setColLowerBound(int i, Value value)
     48  void LpSkeleton::_setColLowerBound(int i, Value value)
    4949  {
    5050  }
    5151 
    52   void LpSolverSkeleton::_setColUpperBound(int i, Value value)
     52  void LpSkeleton::_setColUpperBound(int i, Value value)
    5353  {
    5454  }
    5555 
    56   void LpSolverSkeleton::_setRowLowerBound(int i, Value value)
     56  void LpSkeleton::_setRowLowerBound(int i, Value value)
    5757  {
    5858  }
    5959 
    60   void LpSolverSkeleton::_setRowUpperBound(int i, Value value)
     60  void LpSkeleton::_setRowUpperBound(int i, Value value)
    6161  {
    6262  }
    6363 
    64   void LpSolverSkeleton::_setObjCoeff(int i, Value obj_coef)
     64  void LpSkeleton::_setObjCoeff(int i, Value obj_coef)
    6565  {
    6666  }
    6767
    68   void LpSolverSkeleton::_setMax()
     68  void LpSkeleton::_setMax()
    6969  {
    7070  }
    71   void LpSolverSkeleton::_setMin()
     71  void LpSkeleton::_setMin()
    7272  {
    7373  }
    7474
    75   LpSolverSkeleton::SolveExitStatus LpSolverSkeleton::_solve()
     75  LpSkeleton::SolveExitStatus LpSkeleton::_solve()
    7676  {
    7777    return SOLVED;
    7878  }
    7979
    80   LpSolverSkeleton::Value LpSolverSkeleton::_getPrimal(int i)
     80  LpSkeleton::Value LpSkeleton::_getPrimal(int i)
    8181  {
    8282    return 0;
    8383  }
    8484 
    85   LpSolverSkeleton::Value LpSolverSkeleton::_getPrimalValue()
     85  LpSkeleton::Value LpSkeleton::_getPrimalValue()
    8686  {
    8787    return 0;
    8888  }
    8989 
    90   LpSolverSkeleton::SolutionStatus LpSolverSkeleton::_getPrimalStatus()
     90  LpSkeleton::SolutionStatus LpSkeleton::_getPrimalStatus()
    9191  {
    9292    return OPTIMAL;
Note: See TracChangeset for help on using the changeset viewer.