This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
2 changed files with
6 additions and
4 deletions
|
|
|
@ -1,4 +1,5 @@
|
|
|
|
|
set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH}
|
|
|
|
|
$ENV{HOME}/lib/
|
|
|
|
|
/opt/cplex-12.6/cplex/lib/x86-64_linux/static_pic
|
|
|
|
|
/software/cplex-12.6/distribution/cplex/lib/x86-64_linux/static_pic
|
|
|
|
|
/Users/axavier/Applications/IBM/ILOG/CPLEX_Studio1262/cplex/lib/x86-64_osx/static_pic)
|
|
|
|
@ -7,9 +8,10 @@ find_library(CPLEX_LIBRARIES
|
|
|
|
|
NAMES cplex cplex1220 cplex1240 cplex1260 cplex1261 cplex1262)
|
|
|
|
|
|
|
|
|
|
find_path(CPLEX_INCLUDE_DIR NAMES ilcplex/cplex.h PATHS
|
|
|
|
|
/Users/axavier/Applications/IBM/ILOG/CPLEX_Studio1262/cplex/include
|
|
|
|
|
/software/cplex-12.6/distribution/cplex/include/
|
|
|
|
|
/opt/cplex-12.6/cplex/include/)
|
|
|
|
|
$ENV{HOME}/include/
|
|
|
|
|
/opt/cplex-12.6/cplex/include/
|
|
|
|
|
/Users/axavier/Applications/IBM/ILOG/CPLEX_Studio1262/cplex/include/
|
|
|
|
|
/software/cplex-12.6/distribution/cplex/include/)
|
|
|
|
|
|
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
|
find_package_handle_standard_args(
|
|
|
|
|
|
|
|
@ -41,7 +41,7 @@
|
|
|
|
|
/*
|
|
|
|
|
* Maximum number of sets that should be considered
|
|
|
|
|
*/
|
|
|
|
|
#define MAX_N_SETS 1000
|
|
|
|
|
#define MAX_N_SETS 1
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Number of rays that should be generated per set.
|
|
|
|
|