gapt.expr.formula.fol.FOLVar.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.fol
import gapt.expr.Var
import gapt.expr.ty.Ti
trait FOLVar extends Var with FOLTerm
object FOLVar {
def apply(sym: String): FOLVar = Var(sym, Ti).asInstanceOf[FOLVar]
def unapply(e: FOLVar) = Some(e.name)
}