There have been a couple of API changes in intel thread building blocks which apparently makes it incompatible with Storm right now.
For example, our findTBB.cmake appears to not work on macOS anymore (at least for me). However, there is a TBBConfig.cmake shipped with TBB nowadays...
Moreover, the file tbb/tbb_stddef.h included by Storm is no longer available.
Anyway... my proposal would be to (at some point) drop support for TBB entirely in favor of parallel algorithms that were added in c++17. GCC supports them already (btw they use tbb under the hood). Unfortunately, the parallel algorithms are not yet available for clang.
There have been a couple of API changes in intel thread building blocks which apparently makes it incompatible with Storm right now.
For example, our
findTBB.cmakeappears to not work on macOS anymore (at least for me). However, there is aTBBConfig.cmakeshipped with TBB nowadays...Moreover, the file
tbb/tbb_stddef.hincluded by Storm is no longer available.Anyway... my proposal would be to (at some point) drop support for TBB entirely in favor of parallel algorithms that were added in
c++17. GCC supports them already (btw they use tbb under the hood). Unfortunately, the parallel algorithms are not yet available for clang.