Skip to content
Snippets Groups Projects

correct issue deep in OL Equivalence checker related to quantifiers.

Merged Viktor Kuncak requested to merge github/fork/SimonGuilloud/sameFix into main
1 file
+ 0
4
Compare changes
  • Side-by-side
  • Inline
@@ -92,15 +92,11 @@ object OLPropositionalSolver {
// Transform a sequent into a format more adequate for solving
private def augmentSequent(s: Sequent): AugSequent = {
import lisa.utils.parsing.FOLPrinter.*
val f = reducedForm(sequentToFormula(s))
val atoms: scala.collection.mutable.Map[Formula, Int] = scala.collection.mutable.Map.empty
AugSequent((Nil, Nil), f)
}
def reduceSequent(s: Sequent): Formula = {
val p = simplify(sequentToFormula(s))
val nf = computeNormalForm(p)
Loading