3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-11 09:44:43 +00:00

fix regressions exposed in QF_LIA: manager got initialized early and Euclidean solver is not safe even with some throttle

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2016-03-23 20:38:18 -07:00
parent 87989dd93e
commit fe4f3e7772
2 changed files with 10 additions and 8 deletions

View file

@ -1308,7 +1308,7 @@ namespace smt {
if (!gcd_test())
return FC_CONTINUE;
if (m_params.m_arith_euclidean_solver || (0 == (1 + m_branch_cut_counter) % 80))
if (m_params.m_arith_euclidean_solver)
apply_euclidean_solver();
if (get_context().inconsistent())