mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 17:45:32 +00:00
fix crashes due to my last commit
This commit is contained in:
parent
bb26f219fe
commit
f30e8ccec3
3 changed files with 12 additions and 0 deletions
|
@ -40,7 +40,9 @@ class sls_tracker {
|
|||
|
||||
struct value_score {
|
||||
value_score() : m(nullptr), value(unsynch_mpz_manager::mk_z(0)), score(0.0), score_prune(0.0), has_pos_occ(0), has_neg_occ(0), distance(0), touched(1) {};
|
||||
value_score(value_score&&) noexcept = default;
|
||||
~value_score() { if (m) m->del(value); }
|
||||
value_score& operator=(value_score&&) = default;
|
||||
unsynch_mpz_manager * m;
|
||||
mpz value;
|
||||
double score;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue