3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +00:00

bug fix. Prevent resetting gg stats #6062 (#6618)

This commit is contained in:
Hari Govind V K 2023-03-03 15:32:23 -05:00 committed by GitHub
parent b82d177276
commit 55d45e0c0c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -114,18 +114,10 @@ void pob::inherit(pob const &p) {
m_desired_level = std::max(m_desired_level, p.m_desired_level);
m_open = p.m_open;
m_use_farkas = p.m_use_farkas;
m_is_conjecture = p.m_is_conjecture;
m_enable_local_gen = p.m_enable_local_gen;
m_enable_concretize = p.m_enable_concretize;
m_is_subsume = p.m_is_subsume;
m_enable_expand_bnd_gen = p.m_enable_expand_bnd_gen;
m_weakness = p.m_weakness;
m_derivation = nullptr;
m_gas = p.m_gas;
}
void pob::close () {