mip_test file went to mip_demo.
authorathos
Mon, 17 Jul 2006 09:31:41 +0000
changeset 214763d293ff1bef
parent 2146 5fcb6598276d
child 2148 ab368e0ab662
mip_test file went to mip_demo.
demo/Makefile.am
test/mip_test.cc
     1.1 --- a/demo/Makefile.am	Mon Jul 17 09:16:00 2006 +0000
     1.2 +++ b/demo/Makefile.am	Mon Jul 17 09:31:41 2006 +0000
     1.3 @@ -24,7 +24,7 @@
     1.4  	demo/strongly_connected_orientation
     1.5  
     1.6  if HAVE_GLPK
     1.7 -noinst_PROGRAMS += demo/lp_demo demo/lp_maxflow_demo
     1.8 +noinst_PROGRAMS += demo/lp_demo demo/lp_maxflow_demo demo/mip_demo
     1.9  else !HAVE_GLPK
    1.10  if HAVE_CPLEX
    1.11  noinst_PROGRAMS += demo/lp_demo demo/lp_maxflow_demo
    1.12 @@ -62,6 +62,9 @@
    1.13  demo_lp_demo_SOURCES = demo/lp_demo.cc
    1.14  demo_lp_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
    1.15  
    1.16 +demo_mip_demo_SOURCES = demo/mip_demo.cc
    1.17 +demo_mip_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
    1.18 +
    1.19  demo_lp_maxflow_demo_SOURCES = demo/lp_maxflow_demo.cc
    1.20  demo_lp_maxflow_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
    1.21  
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/test/mip_test.cc	Mon Jul 17 09:31:41 2006 +0000
     2.3 @@ -0,0 +1,14 @@
     2.4 +#include <lemon/lp.h>
     2.5 +
     2.6 +using namespace lemon;
     2.7 +
     2.8 +int main(){
     2.9 +
    2.10 +
    2.11 +#ifdef HAVE_GLPK
    2.12 +  //This needs some thinking
    2.13 +#endif
    2.14 +
    2.15 +  return 0;
    2.16 +
    2.17 +}