Create repository for single-row wedge cuts

This commit is contained in:
2017-11-18 17:01:42 -06:00
commit 1494e2f759
771 changed files with 741801 additions and 0 deletions

25
cmake/FindCPLEX.cmake Normal file
View File

@@ -0,0 +1,25 @@
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)
find_library(CPLEX_LIBRARIES
NAMES cplex cplex1220 cplex1240 cplex1260 cplex1261 cplex1262)
find_path(CPLEX_INCLUDE_DIR NAMES ilcplex/cplex.h PATHS
$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(
CPLEX
DEFAULT_MSG
CPLEX_LIBRARIES
CPLEX_INCLUDE_DIR)
mark_as_advanced(
CPLEX_LIBRARIES
CPLEX_INCLUDE_DIR)

23
cmake/FindGMP.cmake Normal file
View File

@@ -0,0 +1,23 @@
# Try to find the GMP librairies
# GMP_FOUND - system has GMP lib
# GMP_INCLUDE_DIR - the GMP include directory
# GMP_LIBRARIES - Libraries needed to use GMP
# Copyright (c) 2006, Laurent Montel, <montel@kde.org>
#
# Redistribution and use is allowed according to the terms of the BSD license.
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
if (GMP_INCLUDE_DIR AND GMP_LIBRARIES)
# Already in cache, be silent
set(GMP_FIND_QUIETLY TRUE)
endif (GMP_INCLUDE_DIR AND GMP_LIBRARIES)
find_path(GMP_INCLUDE_DIR NAMES gmp.h )
find_library(GMP_LIBRARIES NAMES gmp libgmp )
find_library(GMPXX_LIBRARIES NAMES gmpxx libgmpxx )
include(FindPackageHandleStandardArgs)
FIND_PACKAGE_HANDLE_STANDARD_ARGS(GMP DEFAULT_MSG GMP_INCLUDE_DIR GMP_LIBRARIES)
mark_as_advanced(GMP_INCLUDE_DIR GMP_LIBRARIES)

11
cmake/FindLAPACKE.cmake Normal file
View File

@@ -0,0 +1,11 @@
find_library(LAPACKE_LIBRARIES
NAMES lapacke)
find_path(LAPACKE_INCLUDE_DIR NAMES lapacke.h)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(LAPACKE
DEFAULT_MSG
LAPACKE_LIBRARIES
LAPACKE_INCLUDE_DIR)
mark_as_advanced(LAPACKE_LIBRARIES LAPACKE_INCLUDE_DIR)