3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

add instrumentation to theory_lra for shuffling final check

This commit is contained in:
Nikolaj Bjorner 2023-04-26 10:04:45 -07:00
parent 3029fb24a1
commit d2e3e4895e
2 changed files with 145 additions and 58 deletions

View file

@ -248,9 +248,8 @@ branch y_i >= ceil(y0_i) is impossible.
bool hnf_cutter::init_terms_for_hnf_cut() {
clear();
for (unsigned i = 0; i < lra.terms().size() && !is_full(); i++) {
for (unsigned i = 0; i < lra.terms().size() && !is_full(); i++)
try_add_term_to_A_for_hnf(tv::term(i));
}
return hnf_has_var_with_non_integral_value();
}