3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-01-28 04:48:42 +00:00

Reset timestamp for variables in sat_ddfw.cpp

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

View file

@ -220,6 +220,7 @@ namespace sat {
add_assumptions();
for (unsigned v = 0; v < num_vars(); ++v) {
value(v) = (m_rand() % 2) == 0; // m_use_list[lit.index()].size() >= m_use_list[nlit.index()].size();
m_vars[v].m_timestamp = 0;
}
if (!flatten_use_list())