mirror of
https://github.com/Z3Prover/z3
synced 2026-05-23 02:19:37 +00:00
Fix trail mechanism to capture state before modification
Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
parent
4be6d1894f
commit
e3c1610335
1 changed files with 5 additions and 3 deletions
|
|
@ -25,7 +25,7 @@ namespace smt {
|
||||||
non_link_justifications(MAX_VARS * MAX_VARS, {nullptr, nullptr}), largest_var(0),
|
non_link_justifications(MAX_VARS * MAX_VARS, {nullptr, nullptr}), largest_var(0),
|
||||||
max_size(MAX_VARS), ctx(ctx), t_lattice_refutation(t_lattice) {
|
max_size(MAX_VARS), ctx(ctx), t_lattice_refutation(t_lattice) {
|
||||||
// Initialize the vectors
|
// Initialize the vectors
|
||||||
link_dls.resize(MAX_VARS * MAX_VARS, 0);
|
link_dls.resize(MAX_VARS * MAX_VARS, static_cast<unsigned>(0));
|
||||||
for (int i = 0; i < MAX_VARS; i++) {
|
for (int i = 0; i < MAX_VARS; i++) {
|
||||||
reachable[i].reset();
|
reachable[i].reset();
|
||||||
non_links[i].reset();
|
non_links[i].reset();
|
||||||
|
|
@ -53,16 +53,18 @@ namespace smt {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool reachability_matrix::bitwise_or_rows(int source_dest, int source) {
|
bool reachability_matrix::bitwise_or_rows(int source_dest, int source) {
|
||||||
// Save old state for potential rollback
|
// Save old state before modification
|
||||||
uint_set old_reachable = reachable[source_dest];
|
uint_set old_reachable = reachable[source_dest];
|
||||||
|
|
||||||
|
// Push trail before modifying
|
||||||
|
ctx.push_trail(value_trail(reachable[source_dest]));
|
||||||
|
|
||||||
// Compute union: reachable[source_dest] |= reachable[source]
|
// Compute union: reachable[source_dest] |= reachable[source]
|
||||||
reachable[source_dest] |= reachable[source];
|
reachable[source_dest] |= reachable[source];
|
||||||
|
|
||||||
// Check if anything changed
|
// Check if anything changed
|
||||||
bool changes = !(old_reachable == reachable[source_dest]);
|
bool changes = !(old_reachable == reachable[source_dest]);
|
||||||
if (changes) {
|
if (changes) {
|
||||||
ctx.push_trail(value_trail(reachable[source_dest]));
|
|
||||||
// Check for conflicts with newly added reachabilities
|
// Check for conflicts with newly added reachabilities
|
||||||
for (unsigned dest : reachable[source_dest]) {
|
for (unsigned dest : reachable[source_dest]) {
|
||||||
if (!old_reachable.contains(dest)) {
|
if (!old_reachable.contains(dest)) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue