Browse Source

minor fix to Z3 API modification

tempestpy_adaptions
dehnert 7 years ago
parent
commit
dfc0141894
  1. 4
      src/storm/adapters/Z3ExpressionAdapter.cpp

4
src/storm/adapters/Z3ExpressionAdapter.cpp

@ -1,5 +1,7 @@
#include "storm/adapters/Z3ExpressionAdapter.h"
#include <cstdint>
#include "storm/storage/expressions/Expressions.h"
#include "storm/storage/expressions/ExpressionManager.h"
#include "storm/utility/macros.h"
@ -15,7 +17,7 @@ namespace storm {
#ifdef STORM_Z3_API_USES_STANDARD_INTEGERS
typedef int64_t Z3_SIGNED_INTEGER;
typedef int64_t Z3_UNSIGNED_INTEGER;
typedef uint64_t Z3_UNSIGNED_INTEGER;
#else
typedef long long Z3_SIGNED_INTEGER;
typedef unsigned long long Z3_UNSIGNED_INTEGER;

Loading…
Cancel
Save