Browse Source

fix in sylvan, minor changes to cmake list

Former-commit-id: 96adc0c187
tempestpy_adaptions
dehnert 9 years ago
parent
commit
2ea5fd7418
  1. 3
      CMakeLists.txt
  2. 1
      resources/3rdparty/sylvan/src/sylvan_mtbdd.h

3
CMakeLists.txt

@ -549,11 +549,10 @@ message(STATUS "Linking with shipped version of sylvan (in directory ${STORM_SYL
include_directories("${Sylvan_INCLUDE_DIR}")
list(APPEND STORM_LINK_LIBRARIES "${binary_dir}/src/libsylvan.a")
if(${OPERATING_SYSTEM} MATCHES "Linux")
find_package(Hwloc REQUIRED)
find_package(Hwloc QUIET)
if(NOT Hwloc_FOUND)
message(SEND_ERROR "HWLOC is required but was not found.")
else()
message(STATUS "Linking with HWLOC: ${Hwloc_FOUND} ${Hwloc_LIBRARIES}")
list(APPEND STORM_LINK_LIBRARIES ${Hwloc_LIBRARIES})
endif()
endif()

1
resources/3rdparty/sylvan/src/sylvan_mtbdd.h

@ -224,7 +224,6 @@ TASK_DECL_3(MTBDD, mtbdd_abstract_op_plus, MTBDD, MTBDD, int);
* For Integer/Double MTBDDs, mtbdd_false is interpreted as "0" or "0.0".
*/
TASK_DECL_2(MTBDD, mtbdd_op_minus, MTBDD*, MTBDD*);
TASK_DECL_3(MTBDD, mtbdd_abstract_op_minus, MTBDD, MTBDD, int);
/**
* Binary operation Times (for MTBDDs of same type)

Loading…
Cancel
Save