3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-01-28 21:08:43 +00:00

Update timestamp on variable flip in ddfw

This commit is contained in:
Nikolaj Bjorner 2026-01-26 10:11:14 -08:00 committed by GitHub
parent a4e123b900
commit d18cc5629a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -270,6 +270,7 @@ namespace sat {
void ddfw::flip(bool_var v) {
++m_flips;
m_vars[v].m_timestamp = m_flips;
m_limit.inc();
literal lit = literal(v, !value(v));
literal nlit = ~lit;