Packages

final case class Context(c: List[Formula]) extends Product with Serializable

A context is a conjunction of assumption formulas. Variable references proceed from the head of the list and binding rules introduce assumptions at the head, i.e., assumption 0 is the first element and the most recently added.

c

List of assumptions

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Context
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Context(c: List[Formula])

    c

    List of assumptions

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 apply(p: ProofVariable): Formula

    Retrieve assumption formula for given variable index

  5. def asIndexedSeq: IndexedSeq[Formula]

    returns IndexedSeq containing same elements

  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def asList: List[Formula]

    returns List containing same elements

  8. def asSequent: Sequent

    returns Sequent with same assumptions and empty succedent

  9. val c: List[Formula]
  10. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  11. def contains(x: ProofVariable): Boolean

    Returns whether context contains proof variable

  12. def entails(f: Formula): Sequent

    returns Sequent with same assumptions and given succedent

  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def extend(P: Formula): Context

    Add assumption P to context

  15. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. def freevars: SetLattice[Variable]

    All variables which appear free in some assumption

  17. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. def rename(what: Variable, repl: Variable): Context

    Apply single renaming to all assumptions

  23. def renames(whats: List[Variable], repls: List[Variable]): Context

    Apply all renamings to all assumptions

  24. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  25. def toString(): String
    Definition Classes
    Context → AnyRef → Any
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped