lemon/mip_glpk.h
changeset 2144 cd8897f67c26
child 2148 ab368e0ab662
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/lemon/mip_glpk.h	Mon Jul 17 09:00:21 2006 +0000
     1.3 @@ -0,0 +1,58 @@
     1.4 +/* -*- C++ -*-
     1.5 + *
     1.6 + * This file is a part of LEMON, a generic C++ optimization library
     1.7 + *
     1.8 + * Copyright (C) 2003-2006
     1.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    1.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
    1.11 + *
    1.12 + * Permission to use, modify and distribute this software is granted
    1.13 + * provided that this copyright notice appears in all copies. For
    1.14 + * precise terms see the accompanying LICENSE file.
    1.15 + *
    1.16 + * This software is provided "AS IS" with no warranty of any kind,
    1.17 + * express or implied, and with no claim as to its suitability for any
    1.18 + * purpose.
    1.19 + *
    1.20 + */
    1.21 +
    1.22 +#ifndef LEMON_ILP_GLPK_H
    1.23 +#define LEMON_ILP_GLPK_H
    1.24 +
    1.25 +///\file
    1.26 +///\brief Header of the LEMON-GLPK lp solver interface.
    1.27 +///\ingroup gen_opt_group
    1.28 +
    1.29 +
    1.30 +#include <lemon/lp_glpk.h>
    1.31 +
    1.32 +namespace lemon {
    1.33 +  /// \brief Interface for the GLPK ILP solver
    1.34 +  /// 
    1.35 +  /// This class implements an interface for the GLPK ILP solver.
    1.36 +  ///\ingroup gen_opt_group
    1.37 +  class MipGlpk : public MipSolverBase, public LpGlpk{
    1.38 +  
    1.39 +  public:
    1.40 +  
    1.41 +    typedef MipSolverBase ParentMip;
    1.42 +    typedef LpGlpk ParentLp;
    1.43 +    
    1.44 +    MipGlpk();
    1.45 +    //~MipGlpk();
    1.46 +    
    1.47 +    
    1.48 +    
    1.49 +  protected:
    1.50 +  
    1.51 +    virtual void _integer(int c, bool enable);
    1.52 +    virtual bool _integer(int c);
    1.53 +    
    1.54 +    virtual LpGlpk::SolveExitStatus _solve();
    1.55 +    virtual ParentLp::Value _getPrimal(int i);
    1.56 +    virtual ParentLp::Value _getPrimalValue();
    1.57 +  };
    1.58 +
    1.59 +} //END OF NAMESPACE LEMON
    1.60 +
    1.61 +#endif // END OF LEMON_ILP_GLPK_H