COIN-OR::LEMON - Graph Library

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


Ignore:
Timestamp:
04/07/05 08:38:56 (20 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.h

    r1312 r1313  
    11/* -*- C++ -*-
    2  * src/lemon/lp_solver_skeleton.h
     2 * src/lemon/lp_skeleton.h
    33 * - Part of LEMON, a generic C++ optimization library
    44 *
     
    1616 */
    1717
    18 #ifndef LEMON_LP_SOLVER_SKELETON
    19 #define LEMON_LP_SOLVER_SKELETON
     18#ifndef LEMON_LP_SKELETON
     19#define LEMON_LP_SKELETON
    2020
    2121#include"lp_base.h"
     
    2626 
    2727  ///A skeleton class to implement LP solver interfaces
    28   class LpSolverSkeleton :public LpSolverBase {
     28  class LpSkeleton :public LpSolverBase {
    2929    int col_num,row_num;
    3030   
     
    108108
    109109  public:
    110     LpSolverSkeleton() : LpSolverBase(), col_num(0), row_num(0) {}
     110    LpSkeleton() : LpSolverBase(), col_num(0), row_num(0) {}
    111111  }; 
    112112
    113113} //namespace lemon
    114114
    115 #endif // LEMON_LP_SOLVER_SKELETON
     115#endif // LEMON_LP_SKELETON
Note: See TracChangeset for help on using the changeset viewer.