Skip to content

Commit

Permalink
Implement equivalence breaking for strong equivalence decomposition
Browse files Browse the repository at this point in the history
  • Loading branch information
teiesti committed Aug 20, 2024
1 parent 6590cbd commit 2d36dc2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/verifying/task/strong_equivalence.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,10 @@ impl Task for StrongEquivalenceTask {
right = crate::simplifying::fol::classic::simplify(right);
}

// TODO: Break equivalences, if requested
if self.break_equivalences {
left = crate::breaking::fol::ht::break_equivalences_theory(left);
right = crate::breaking::fol::ht::break_equivalences_theory(right);
}

let mut problems = Vec::new();
if matches!(
Expand Down

0 comments on commit 2d36dc2

Please sign in to comment.