Browse Source

Fixed bitshift for DFT isomorphism

tempestpy_adaptions
Matthias Volk 6 years ago
parent
commit
1d7c5caaf2
  1. 2
      src/storm-dft/storage/dft/DFTIsomorphism.h

2
src/storm-dft/storage/dft/DFTIsomorphism.h

@ -14,7 +14,7 @@ namespace storage {
struct GateGroupToHash { struct GateGroupToHash {
static constexpr uint_fast64_t fivebitmask = (1 << 6) - 1; static constexpr uint_fast64_t fivebitmask = (1 << 6) - 1;
static constexpr uint_fast64_t eightbitmask = (1 << 8) - 1;
static constexpr uint_fast64_t eightbitmask = (1 << 9) - 1;
/** /**
* Hash function, which ensures that the colours are sorted according to their rank. * Hash function, which ensures that the colours are sorted according to their rank.

Loading…
Cancel
Save