include just the existing solvers
authordeba
Mon, 02 Oct 2006 12:09:32 +0000
changeset 2227809b18050520
parent 2226 0411ac8a2d87
child 2228 f71b0f9a7c3a
include just the existing solvers
test/mip_test.cc
     1.1 --- a/test/mip_test.cc	Mon Oct 02 11:18:30 2006 +0000
     1.2 +++ b/test/mip_test.cc	Mon Oct 02 12:09:32 2006 +0000
     1.3 @@ -1,13 +1,17 @@
     1.4  #include "test_tools.h"
     1.5  
     1.6  
     1.7 -#include <lemon/mip_cplex.h>
     1.8 -#include <lemon/mip_glpk.h>
     1.9 -
    1.10  #ifdef HAVE_CONFIG_H
    1.11  #include <config.h>
    1.12  #endif
    1.13  
    1.14 +#ifdef HAVE_CPLEX
    1.15 +#include <lemon/mip_cplex.h>
    1.16 +#endif
    1.17 +
    1.18 +#ifdef HAVE_GLPK
    1.19 +#include <lemon/mip_glpk.h>
    1.20 +#endif
    1.21  
    1.22  
    1.23  using namespace lemon;