Packages

object Proofterm extends OperationCollection

Support for Isabelle proofterms. Experimental and incomplete. May throw NotImplementedError and change without notice. Not documented.

Annotations
@Experimental()
Source
Proofterm.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Proofterm
  2. OperationCollection
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final case class AbsP(name: String, term: Option[Term], proof: Proofterm) extends Proofterm with Product with Serializable
  2. final case class Abst(name: String, typ: Option[Typ], proof: Proofterm) extends Proofterm with Product with Serializable
  3. final case class AppP(proof1: Proofterm, proof2: Proofterm) extends Proofterm with Product with Serializable
  4. final case class Appt(proof: Proofterm, term: Option[Term]) extends Proofterm with Product with Serializable
  5. final case class Hyp(term: Term) extends Proofterm with Product with Serializable
  6. final case class OfClass(typ: Typ, clazz: String) extends Proofterm with Product with Serializable
  7. class Ops extends AnyRef
    Attributes
    protected
  8. final case class Oracle(name: String, term: Term, typ: Option[List[Typ]]) extends Proofterm with Product with Serializable
  9. final case class PAxm(name: String, term: Term, typ: Option[List[Typ]]) extends Proofterm with Product with Serializable
  10. final case class PBound(index: Int) extends Proofterm with Product with Serializable
  11. final case class PThm(header: ThmHeader, body: ThmBody) extends Proofterm with Product with Serializable
  12. final class ThmBody extends MLValueWrapper[ThmBody]
  13. final case class ThmHeader(serial: Long, pos: List[Position], theoryName: String, name: String, prop: Term, types: Option[List[Typ]]) extends Product with Serializable

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def Ops(implicit isabelle: Isabelle, ec: ExecutionContext): Ops

    Returns an instance of type Ops.

    Returns an instance of type Ops. It is guaranteed that for each instance isabelle, exactly one instance of Obs is created (using the ec from the first such invocation). (If you see this doc string in a class different from OperationCollection but no definition of the class Ops, treat this function as if it was private.)

    Definition Classes
    OperationCollection
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. def init()(implicit isabelle: Isabelle, executionContext: ExecutionContext): Unit

    Makes sure an Ops instance for the instance isabelle is initialized.

    Makes sure an Ops instance for the instance isabelle is initialized. This is useful when code needs to be sure that the global initialization inside the Ops class has happened (e.g., declarations of ML types via Isabelle.executeMLCodeNow) even if it does not access any of the fields in the Ops class.

    Can safely be called several times with the same isabelle and/or executionContext.

    Definition Classes
    OperationCollection
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def newOps(implicit isabelle: Isabelle, ec: ExecutionContext): Ops

    Should construct an instance of type Ops

    Should construct an instance of type Ops

    Attributes
    protected
    Definition Classes
    ProoftermOperationCollection
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  18. def toString(): String
    Definition Classes
    AnyRef → Any
  19. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  20. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  21. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  22. case object MinProof extends Proofterm with Product with Serializable
  23. object PThm extends Serializable
  24. object ThmBody extends Companion[ThmBody]
  25. implicit object converter extends Converter[Proofterm]

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from OperationCollection

Inherited from AnyRef

Inherited from Any

Ungrouped