Storm 1.14.0.1
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
CuddDdManagerEnvironment.h
Go to the documentation of this file.
1#pragma once
2
3#include <cstdint>
4
6
7namespace storm {
8
10 public:
13
17 double getConstantPrecision() const;
18 void setConstantPrecision(double value);
19
23 uint64_t getMaximalMemory() const;
24 void setMaximalMemory(uint64_t value);
25
26 bool isReorderingEnabled() const;
27 void setReorderingEnabled(bool value);
28
31
32 private:
33 double constantPrecision;
34 uint64_t maximalMemory;
35 bool reorderingEnabled;
36 storm::dd::CuddReorderingTechnique reorderingTechnique;
37};
38} // namespace storm
uint64_t getMaximalMemory() const
Retrieves the maximal amount of memory (in megabytes) that CUDD can occupy.
void setReorderingTechnique(storm::dd::CuddReorderingTechnique value)
double getConstantPrecision() const
Retrieves the precision up to which constants are considered to be different.
storm::dd::CuddReorderingTechnique getReorderingTechnique() const