gapt.expr.subst.ExprSubstitutable6.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.expr.subst
import gapt.expr.ClosedUnderFOLSub
import gapt.expr.formula.fol.FOLFormula
import gapt.expr.formula.fol.FOLTerm
trait ExprSubstitutable6 extends ExprSubstitutable5 {
implicit val FOLTermClosedUnderFOLSub: ClosedUnderFOLSub[FOLTerm] =
(sub, x) => applySub(sub, x).asInstanceOf[FOLTerm]
implicit val FOLFormulaClosedUnderFOLSub: ClosedUnderFOLSub[FOLFormula] =
(sub, x) => applySub(sub, x).asInstanceOf[FOLFormula]
}