gapt.expr.formula.hol.HOLPartialAtom.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.hol
import gapt.expr.App
import gapt.expr.Expr
import gapt.expr.formula.Atom
trait HOLPartialAtom extends Expr {
private[expr] def numberOfArguments: Int
def apply(that: Expr*)(implicit dummyImplicit: DummyImplicit): Atom = App(this, that).asInstanceOf[Atom]
}