src/lemon/lp_cplex.h
changeset 1398 2f21cc34a245
parent 1381 998e8def9676
child 1405 3626c7f10f14
equal deleted inserted replaced
0:e0a39bd984f8 1:f349e9037a37
    19 
    19 
    20 ///\file
    20 ///\file
    21 ///\brief Header of the LEMON-CPLEX lp solver interface.
    21 ///\brief Header of the LEMON-CPLEX lp solver interface.
    22 
    22 
    23 #include <lemon/lp_base.h>
    23 #include <lemon/lp_base.h>
       
    24 
    24 extern "C" {
    25 extern "C" {
    25 #include <ilcplex/cplex.h>
    26 #include <ilcplex/cplex.h>
    26 }
    27 }
    27 
    28 
    28 namespace lemon {
    29 namespace lemon {
    29 
    30 
    30 
    31 
    31   /// \brief Wrapper for GLPK solver
    32   /// \brief Interface for the CPLEX solver
    32   /// 
    33   /// 
    33   /// This class implements a lemon wrapper for GLPK.
    34   /// This class implements an interface for the CPLEX LP solver.
    34   class LpCplex : public LpSolverBase {
    35   class LpCplex : public LpSolverBase {
    35 
    36 
    36   public:
    37   public:
    37 
    38 
    38     typedef LpSolverBase Parent;
    39     typedef LpSolverBase Parent;