mirror of
https://github.com/Z3Prover/z3
synced 2025-04-07 09:55:19 +00:00
fix bug reported by Nuno
qhead should not be changed after tactic execution. It should remain 0 so the same tactic can be applied repeatedly on the entire state
This commit is contained in:
parent
a96f5a9b42
commit
96a2c04026
|
@ -110,8 +110,6 @@ public:
|
||||||
try {
|
try {
|
||||||
if (!in->proofs_enabled() || m_simp->supports_proofs())
|
if (!in->proofs_enabled() || m_simp->supports_proofs())
|
||||||
m_simp->reduce();
|
m_simp->reduce();
|
||||||
if (m.inc())
|
|
||||||
advance_qhead();
|
|
||||||
}
|
}
|
||||||
catch (rewriter_exception& ex) {
|
catch (rewriter_exception& ex) {
|
||||||
throw tactic_exception(ex.msg());
|
throw tactic_exception(ex.msg());
|
||||||
|
|
Loading…
Reference in a new issue