Browse Source

fixed wrong type mask for arrays...

tempestpy_adaptions
TimQu 6 years ago
parent
commit
ede671ea3f
  1. 2
      src/storm/storage/expressions/Type.h

2
src/storm/storage/expressions/Type.h

@ -241,7 +241,7 @@ namespace storm {
virtual bool isArrayType() const override;
private:
static const uint64_t mask = (1ull << 60);
static const uint64_t mask = (1ull << 59);
// The type of the array elements (can again be of type array).
Type elementType;

Loading…
Cancel
Save