Remove superfluous #ifndef boundaries
authoralpar
Tue, 17 Oct 2006 11:05:23 +0000
changeset 22531645f6cc9667
parent 2252 133028e83940
child 2254 50cb2b90daa9
Remove superfluous #ifndef boundaries
lemon/lp_glpk.cc
lemon/mip_cplex.cc
lemon/mip_glpk.cc
     1.1 --- a/lemon/lp_glpk.cc	Tue Oct 17 11:02:30 2006 +0000
     1.2 +++ b/lemon/lp_glpk.cc	Tue Oct 17 11:05:23 2006 +0000
     1.3 @@ -16,9 +16,6 @@
     1.4   *
     1.5   */
     1.6  
     1.7 -#ifndef LEMON_LP_GLPK_CC
     1.8 -#define LEMON_LP_GLPK_CC
     1.9 -
    1.10  ///\file
    1.11  ///\brief Implementation of the LEMON-GLPK lp solver interface.
    1.12  
    1.13 @@ -526,5 +523,3 @@
    1.14  
    1.15   
    1.16  } //END OF NAMESPACE LEMON
    1.17 -
    1.18 -#endif //LEMON_LP_GLPK_CC
     2.1 --- a/lemon/mip_cplex.cc	Tue Oct 17 11:02:30 2006 +0000
     2.2 +++ b/lemon/mip_cplex.cc	Tue Oct 17 11:05:23 2006 +0000
     2.3 @@ -16,9 +16,6 @@
     2.4   *
     2.5   */
     2.6  
     2.7 -#ifndef LEMON_MIP_CPLEX_CC
     2.8 -#define LEMON_MIP_CPLEX_CC
     2.9 -
    2.10  ///\file
    2.11  ///\brief Implementation of the LEMON-CPLEX mip solver interface.
    2.12  
    2.13 @@ -134,5 +131,3 @@
    2.14      return objval;
    2.15    }
    2.16  } //END OF NAMESPACE LEMON
    2.17 -
    2.18 -#endif //END OF MIP_CPLEX_CC
     3.1 --- a/lemon/mip_glpk.cc	Tue Oct 17 11:02:30 2006 +0000
     3.2 +++ b/lemon/mip_glpk.cc	Tue Oct 17 11:05:23 2006 +0000
     3.3 @@ -16,9 +16,6 @@
     3.4   *
     3.5   */
     3.6  
     3.7 -#ifndef LEMON_MIP_GLPK_CC
     3.8 -#define LEMON_MIP_GLPK_CC
     3.9 -
    3.10  ///\file
    3.11  ///\brief Implementation of the LEMON-GLPK mip solver interface.
    3.12  
    3.13 @@ -111,5 +108,3 @@
    3.14      return lpx_mip_obj_val(lp);
    3.15    }
    3.16  } //END OF NAMESPACE LEMON
    3.17 -
    3.18 -#endif //END OF MIP_GLPK_CC