gapt.proofs.lk.transformations.moveStrongQuantifierRulesDown.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gapt_3 Show documentation
Show all versions of gapt_3 Show documentation
General Architecture for Proof Theory
The newest version!
package gapt.proofs.lk.transformations
import gapt.expr.Var
import gapt.expr.formula.All
import gapt.expr.formula.Ex
import gapt.expr.formula.hol.instantiate
import gapt.expr.subst.Substitution
import gapt.expr.util.rename
import gapt.proofs.Ant
import gapt.proofs.Sequent
import gapt.proofs.SequentConnector
import gapt.proofs.Suc
import gapt.proofs.lk.LKProof
import gapt.proofs.lk.LKProofSubstitutableDefault
import gapt.proofs.lk.rules.AndLeftRule
import gapt.proofs.lk.rules.AndRightRule
import gapt.proofs.lk.rules.ContractionLeftRule
import gapt.proofs.lk.rules.ContractionRightRule
import gapt.proofs.lk.rules.CutRule
import gapt.proofs.lk.rules.EqualityLeftRule
import gapt.proofs.lk.rules.EqualityRightRule
import gapt.proofs.lk.rules.ExistsLeftRule
import gapt.proofs.lk.rules.ExistsRightRule
import gapt.proofs.lk.rules.ForallLeftRule
import gapt.proofs.lk.rules.ForallRightRule
import gapt.proofs.lk.rules.ImpLeftRule
import gapt.proofs.lk.rules.ImpRightRule
import gapt.proofs.lk.rules.InductionRule
import gapt.proofs.lk.rules.InitialSequent
import gapt.proofs.lk.rules.NegLeftRule
import gapt.proofs.lk.rules.NegRightRule
import gapt.proofs.lk.rules.OrLeftRule
import gapt.proofs.lk.rules.OrRightRule
import gapt.proofs.lk.rules.StrongQuantifierRule
import gapt.proofs.lk.rules.WeakeningLeftRule
import gapt.proofs.lk.rules.WeakeningRightRule
import gapt.proofs.lk.util.freeVariablesLK
/**
* Modifies an LK proof to introduce strong quantifiers as soon as possible.
*/
object moveStrongQuantifierRulesDown {
def apply(p: LKProof): LKProof = apply(p, p.conclusion map { _ => Seq() })._1
private def isUnderInduction(p: LKProof, idx: Suc, quantNum: Int): Boolean = p match {
case p @ ForallRightRule(subProof, aux: Suc, _, _) if p.mainIndices contains idx =>
if (quantNum == 0) false
else isUnderInduction(subProof, aux, quantNum - 1)
case p @ InductionRule(_, _, _) if p.mainIndices contains idx => true
case _ =>
(for (
(q, o) <- p.immediateSubProofs zip p.occConnectors;
aux <- o.parents(idx)
) yield isUnderInduction(q, aux.asInstanceOf[Suc], quantNum)) exists identity
}
private def apply(p: LKProof, eigenVariables: Sequent[Seq[Var]]): (LKProof, SequentConnector) = p.conclusion.zipWithIndex.elements.view.collect {
case (All.Block(vs, f), i @ Suc(_)) if vs.size > eigenVariables(i).size && !isUnderInduction(p, i, eigenVariables(i).size) =>
val v = vs(eigenVariables(i).size)
val eigen = rename(v, freeVariablesLK(p) ++ eigenVariables.elements.flatten)
val (q, oc) = apply(p, eigenVariables.updated(i, eigenVariables(i) :+ eigen))
val q_ = ForallRightRule(q, oc.child(i), eigen, v)
(q_, q_.getSequentConnector * oc)
case (Ex.Block(vs, f), i @ Ant(_)) if vs.size > eigenVariables(i).size =>
val v = vs(eigenVariables(i).size)
val eigen = rename(v, freeVariablesLK(p) ++ eigenVariables.elements.flatten)
val (q, oc) = apply(p, eigenVariables.updated(i, eigenVariables(i) :+ eigen))
val q_ = ExistsLeftRule(q, oc.child(i), eigen, v)
(q_, q_.getSequentConnector * oc)
}.headOption getOrElse {
p match {
case StrongQuantifierRule(subProof, aux, eigen, quant, isSuc) =>
val newEigen = eigenVariables(p.mainIndices.head).head
val (q, oc) = apply(
Substitution(eigen -> newEigen)(subProof),
p.occConnectors(0).parents(eigenVariables).map(_.head).updated(aux, eigenVariables(p.mainIndices.head).tail)
)
(q, oc * p.occConnectors(0).inv)
case _: InitialSequent => (p, SequentConnector(p.endSequent))
case p @ WeakeningLeftRule(subProof, formula) =>
val (q1, oc) = apply(subProof, p.occConnectors(0).parents(eigenVariables).map(_.head))
val q = WeakeningLeftRule(q1, instantiate(formula, eigenVariables(p.mainIndices.head)))
(q, (q.getSequentConnector * oc * p.getSequentConnector.inv).+(q.mainIndices.head, p.mainIndices.head))
case p @ WeakeningRightRule(subProof, formula) =>
val (q1, oc) = apply(subProof, p.occConnectors(0).parents(eigenVariables).map(_.head))
val q = WeakeningRightRule(q1, instantiate(formula, eigenVariables(p.mainIndices.head)))
(q, (q.getSequentConnector * oc * p.getSequentConnector.inv).+(q.mainIndices.head, p.mainIndices.head))
case _ =>
val (qs, oc) = (for ((subProof, occConn) <- p.immediateSubProofs zip p.occConnectors)
yield apply(subProof, occConn.parents(eigenVariables).map(_.headOption getOrElse Seq()))).unzip
val q = p match {
case ContractionLeftRule(_, aux1, aux2) => ContractionLeftRule(qs(0), oc(0).child(aux1), oc(0).child(aux2))
case ContractionRightRule(_, aux1, aux2) => ContractionRightRule(qs(0), oc(0).child(aux1), oc(0).child(aux2))
case CutRule(_, aux1, _, aux2) => CutRule(qs(0), oc(0).child(aux1), qs(1), oc(1).child(aux2))
case NegLeftRule(_, aux) => NegLeftRule(qs(0), oc(0).child(aux))
case NegRightRule(_, aux) => NegRightRule(qs(0), oc(0).child(aux))
case AndLeftRule(_, aux1, aux2) => AndLeftRule(qs(0), oc(0).child(aux1), oc(0).child(aux2))
case AndRightRule(_, aux1, _, aux2) => AndRightRule(qs(0), oc(0).child(aux1), qs(1), oc(1).child(aux2))
case OrLeftRule(_, aux1, _, aux2) => OrLeftRule(qs(0), oc(0).child(aux1), qs(1), oc(1).child(aux2))
case OrRightRule(_, aux1, aux2) => OrRightRule(qs(0), oc(0).child(aux1), oc(0).child(aux2))
case ImpLeftRule(_, aux1, _, aux2) => ImpLeftRule(qs(0), oc(0).child(aux1), qs(1), oc(1).child(aux2))
case ImpRightRule(_, aux1, aux2) => ImpRightRule(qs(0), oc(0).child(aux1), oc(0).child(aux2))
case ForallLeftRule(_, aux, formula, term, v) => ForallLeftRule(qs(0), oc(0).child(aux), formula, term, v)
case ExistsRightRule(_, aux, formula, term, v) => ExistsRightRule(qs(0), oc(0).child(aux), formula, term, v)
case EqualityLeftRule(_, eq, aux, con) => EqualityLeftRule(qs(0), oc(0).child(eq), oc(0).child(aux), con)
case EqualityRightRule(_, eq, aux, con) => EqualityRightRule(qs(0), oc(0).child(eq), oc(0).child(aux), con)
case p @ InductionRule(cases, main, term) =>
p.copy(cases.lazyZip(qs).lazyZip(oc).map { (c, q, o) =>
c.copy(proof = q, hypotheses = c.hypotheses map o.child, conclusion = o.child(c.conclusion))
})
}
(q, q.occConnectors.lazyZip(oc).lazyZip(p.occConnectors) map { _ * _ * _.inv } reduce { _ + _ })
}
}
}