Browse Source

fix for the case where carl is available but cln isn't

Former-commit-id: 3f27a193b1
tempestpy_adaptions
TimQu 9 years ago
parent
commit
358fe02b11
  1. 2
      src/adapters/CarlAdapter.h

2
src/adapters/CarlAdapter.h

@ -44,12 +44,14 @@ namespace carl {
}
#if defined STORM_HAVE_CLN && defined USE_CLN_NUMBERS
namespace cln {
inline size_t hash_value(cl_RA const& n) {
std::hash<cln::cl_RA> h;
return h(n);
}
}
#endif
namespace storm {
#if defined STORM_HAVE_CLN && defined USE_CLN_NUMBERS

Loading…
Cancel
Save