Trait

at.logic.gapt.proofs

DagProof

Related Doc: package proofs

Permalink

trait DagProof[A <: DagProof[A]] extends Product

Self Type
A
Linear Supertypes
Product, Equals, AnyRef, Any
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. DagProof
  2. Product
  3. Equals
  4. AnyRef
  5. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def canEqual(that: Any): Boolean

    Permalink
    Definition Classes
    Equals
  2. abstract def immediateSubProofs: Seq[A]

    Permalink

    The immediate subproofs of this rule.

  3. abstract def productArity: Int

    Permalink
    Definition Classes
    Product
  4. abstract def productElement(n: Int): Any

    Permalink
    Definition Classes
    Product

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from DagProof[A] to any2stringadd[DagProof[A]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (DagProof[A], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from DagProof[A] to ArrowAssoc[DagProof[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def dagLikeForeach(f: (A) ⇒ Unit): Set[A]

    Permalink

    Iterate over all sub-proofs including this in post-order, ignoring duplicates.

    Iterate over all sub-proofs including this in post-order, ignoring duplicates.

    returns

    Set of all visited sub-proofs including this.

  9. def dagLikePostOrder: Seq[A]

    Permalink

    A sequence of all sub-proofs including this in post-order, ignoring duplicates.

  10. def ensuring(cond: (DagProof[A]) ⇒ Boolean, msg: ⇒ Any): DagProof[A]

    Permalink
    Implicit information
    This member is added by an implicit conversion from DagProof[A] to Ensuring[DagProof[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: (DagProof[A]) ⇒ Boolean): DagProof[A]

    Permalink
    Implicit information
    This member is added by an implicit conversion from DagProof[A] to Ensuring[DagProof[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean, msg: ⇒ Any): DagProof[A]

    Permalink
    Implicit information
    This member is added by an implicit conversion from DagProof[A] to Ensuring[DagProof[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean): DagProof[A]

    Permalink
    Implicit information
    This member is added by an implicit conversion from DagProof[A] to Ensuring[DagProof[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  15. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. def foreach(f: (A) ⇒ Unit): Unit

    Permalink

    Iterate over all sub-proofs including this in post-order.

  18. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from DagProof[A] to StringFormat[DagProof[A]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  19. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  20. val hashCode: Int

    Permalink
    Definition Classes
    DagProof → AnyRef → Any
  21. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  22. def longName: String

    Permalink

    The name of the rule (in words).

  23. def name: String

    Permalink

    The name of the rule (in symbols).

  24. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  25. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  27. def postOrder: Seq[A]

    Permalink

    A sequence of all sub-proofs including this in post-order.

  28. def productIterator: Iterator[Any]

    Permalink
    Definition Classes
    Product
  29. def productPrefix: String

    Permalink
    Definition Classes
    Product
  30. def stepString(subProofLabels: Map[Any, String]): String

    Permalink
    Attributes
    protected
  31. def subProofs: Set[A]

    Permalink

    Set of all sub-proofs including this.

  32. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  33. def toString(): String

    Permalink
    Definition Classes
    DagProof → AnyRef → Any
  34. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. def [B](y: B): (DagProof[A], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from DagProof[A] to ArrowAssoc[DagProof[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from DagProof[A] to any2stringadd[DagProof[A]]

Inherited by implicit conversion StringFormat from DagProof[A] to StringFormat[DagProof[A]]

Inherited by implicit conversion Ensuring from DagProof[A] to Ensuring[DagProof[A]]

Inherited by implicit conversion ArrowAssoc from DagProof[A] to ArrowAssoc[DagProof[A]]

Ungrouped