# HG changeset patch # User athos # Date 1153128701 0 # Node ID 63d293ff1befd8d1d431d4b286c6a997fe0fa29d # Parent 5fcb6598276d369312892ed4dc9786750f3a55f0 mip_test file went to mip_demo. diff -r 5fcb6598276d -r 63d293ff1bef demo/Makefile.am --- a/demo/Makefile.am Mon Jul 17 09:16:00 2006 +0000 +++ b/demo/Makefile.am Mon Jul 17 09:31:41 2006 +0000 @@ -24,7 +24,7 @@ demo/strongly_connected_orientation if HAVE_GLPK -noinst_PROGRAMS += demo/lp_demo demo/lp_maxflow_demo +noinst_PROGRAMS += demo/lp_demo demo/lp_maxflow_demo demo/mip_demo else !HAVE_GLPK if HAVE_CPLEX noinst_PROGRAMS += demo/lp_demo demo/lp_maxflow_demo @@ -62,6 +62,9 @@ demo_lp_demo_SOURCES = demo/lp_demo.cc demo_lp_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS) +demo_mip_demo_SOURCES = demo/mip_demo.cc +demo_mip_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS) + demo_lp_maxflow_demo_SOURCES = demo/lp_maxflow_demo.cc demo_lp_maxflow_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS) diff -r 5fcb6598276d -r 63d293ff1bef test/mip_test.cc --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/mip_test.cc Mon Jul 17 09:31:41 2006 +0000 @@ -0,0 +1,14 @@ +#include + +using namespace lemon; + +int main(){ + + +#ifdef HAVE_GLPK + //This needs some thinking +#endif + + return 0; + +}