[Lemon-commits] [lemon_svn] deba: r2967 - hugo/trunk/test

Lemon SVN svn at lemon.cs.elte.hu
Mon Nov 6 21:51:31 CET 2006


Author: deba
Date: Mon Oct  2 14:09:32 2006
New Revision: 2967

Modified:
   hugo/trunk/test/mip_test.cc

Log:
include just the existing solvers



Modified: hugo/trunk/test/mip_test.cc
==============================================================================
--- hugo/trunk/test/mip_test.cc	(original)
+++ hugo/trunk/test/mip_test.cc	Mon Oct  2 14:09:32 2006
@@ -1,13 +1,17 @@
 #include "test_tools.h"
 
 
-#include <lemon/mip_cplex.h>
-#include <lemon/mip_glpk.h>
-
 #ifdef HAVE_CONFIG_H
 #include <config.h>
 #endif
 
+#ifdef HAVE_CPLEX
+#include <lemon/mip_cplex.h>
+#endif
+
+#ifdef HAVE_GLPK
+#include <lemon/mip_glpk.h>
+#endif
 
 
 using namespace lemon;



More information about the Lemon-commits mailing list