gapt.expr.formula.Formula.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.formula
import gapt.expr.Expr
import gapt.expr.formula.hol.HOLPosition
trait Formula extends Expr {
override def replace(pos: HOLPosition, exp: Expr): Formula = HOLPosition.replace(this, pos, exp)
}