COIN-OR::LEMON - Graph Library

Changeset 2605:852361980706 in lemon-0.x for lemon/lp_soplex.h


Ignore:
Timestamp:
04/08/08 18:01:28 (16 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3488
Message:

Bug fixes in LP solvers

  • the copyLp is clarified
  • newLp and copyLp gives back pointers
  • cplex gives back empty string for variables without name
  • cplex row and column retrieval
  • added macro for soplex
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/lp_soplex.h

    r2553 r2605  
    6767    LpSoplex();
    6868    /// \e
     69    LpSoplex(const LpSoplex&);
     70    /// \e
    6971    ~LpSoplex();
    7072
    7173  protected:
    7274
    73     virtual LpSolverBase &_newLp();
    74     virtual LpSolverBase &_copyLp();
     75    virtual LpSolverBase* _newLp();
     76    virtual LpSolverBase* _copyLp();
    7577
    7678    virtual int _addCol();
Note: See TracChangeset for help on using the changeset viewer.