Skip to content

Commit

Permalink
Première version avec intflpl, validation(?) avec IParals.
Browse files Browse the repository at this point in the history
  • Loading branch information
damien-masse committed Jan 12, 2024
1 parent e17547a commit f0de7ef
Show file tree
Hide file tree
Showing 8 changed files with 652 additions and 504 deletions.
12 changes: 12 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,18 @@
add_definitions(${EIGEN3_DEFINITIONS})
include_directories(${EIGEN3_INCLUDE_DIRS})

################################################################################
# Looking for intflpl
################################################################################

option(WITH_INTFLPL "Using intfpl (floating-point polyhedra)" OFF)

if(WITH_INTFLPL)
find_package(intflpl REQUIRED)
message(STATUS "Found intflpl version ${INTFLPL_VERSION}")
include_directories(${INTFLPL_INCLUDE_DIRS})
endif()


################################################################################
# Looking for CAPD (if needed)
Expand Down
Loading

0 comments on commit f0de7ef

Please sign in to comment.