gapt.proofs.lk.util.solve.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.util
import gapt.expr._
import gapt.expr.formula.All
import gapt.expr.formula.And
import gapt.expr.formula.Atom
import gapt.expr.formula.Bottom
import gapt.expr.formula.Ex
import gapt.expr.formula.Formula
import gapt.expr.formula.Imp
import gapt.expr.formula.Neg
import gapt.expr.formula.Or
import gapt.expr.formula.Top
import gapt.proofs._
import gapt.proofs.context.mutable.MutableContext
import gapt.proofs.lk.LKProof
import gapt.proofs.lk.LKVisitor
import gapt.proofs.lk.rules.AndLeftRule
import gapt.proofs.lk.rules.AndRightRule
import gapt.proofs.lk.rules.BottomAxiom
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.LogicalAxiom
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.TopAxiom
import gapt.proofs.lk.rules.WeakeningLeftRule
import gapt.proofs.lk.rules.WeakeningRightRule
import gapt.provers.OneShotProver
import gapt.utils.Maybe
object LKProver extends OneShotProver {
def getLKProof(seq: HOLSequent)(implicit ctx: Maybe[MutableContext]): Option[LKProof] = solvePropositional(seq).toOption
}
object EquationalLKProver extends OneShotProver {
def getLKProof(seq: HOLSequent)(implicit ctx: Maybe[MutableContext]): Option[LKProof] = solveQuasiPropositional(seq).toOption
}
object AtomicExpansion {
def apply(f: Formula): LKProof = f match {
case a: Atom => LogicalAxiom(a)
case Bottom() => WeakeningRightRule(BottomAxiom, Bottom())
case Top() => WeakeningLeftRule(TopAxiom, Top())
case Neg(l) => NegLeftRule(NegRightRule(apply(l), Ant(0)), Suc(0))
case And(l, r) => AndLeftRule(AndRightRule(apply(l), Suc(0), apply(r), Suc(0)), Ant(0), Ant(1))
case Or(l, r) => OrRightRule(OrLeftRule(apply(l), Ant(0), apply(r), Ant(0)), Suc(0), Suc(1))
case Imp(l, r) => ImpRightRule(ImpLeftRule(apply(l), Suc(0), apply(r), Ant(0)), Ant(1), Suc(0))
case All(x, l) => ForallRightRule(ForallLeftRule(apply(l), Ant(0), l, x, x), Suc(0), x, x)
case Ex(x, l) => ExistsLeftRule(ExistsRightRule(apply(l), Suc(0), l, x, x), Ant(0), x, x)
}
def apply(p: LKProof): LKProof = new LKVisitor[Unit] {
override def visitLogicalAxiom(proof: LogicalAxiom, otherArg: Unit): (LKProof, SequentConnector) =
(AtomicExpansion(proof.A), SequentConnector(proof.endSequent))
}.apply(p, ())
}