3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-04 10:20:23 +00:00

permanent throttling

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2025-07-03 09:54:59 -07:00
parent d2990e2f68
commit 74f4639f0c
8 changed files with 339 additions and 19 deletions

View file

@ -103,7 +103,6 @@ class core {
lpvar m_patched_var = 0;
monic const* m_patched_monic = nullptr;
nla_throttle m_throttle;
bool m_throttle_enabled = true;
@ -439,6 +438,7 @@ public:
bool throttle_enabled() const { return m_throttle_enabled; }
nla_throttle& throttle() { return m_throttle; }
const nla_throttle& throttle() const { return m_throttle; }
nla_throttle m_throttle;
}; // end of core