Packages

object Context

Source
Context.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Context
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class Axiom (sequent: HOLSequent) extends Update with Product with Serializable
  2. case class Axioms (axioms: Set[HOLSequent]) extends Product with Serializable

    Theory axioms for LK proofs.

  3. case class BaseTypes (baseTypes: Set[TBase]) extends Product with Serializable

    Base types, including inductive types.

  4. case class ConstDecl (const: Const) extends Update with Product with Serializable
  5. case class Constants (constants: Map[String, Const]) extends Product with Serializable

    Constant symbols, including defined constants, constructors, etc.

  6. case class Definition (definition: expr.Definition) extends Update with Product with Serializable
  7. case class Definitions (definitions: Map[Const, LambdaExpression]) extends ReductionRule with Product with Serializable

    Definitions that define a constant by an expression of the same type.

  8. trait Facet [T] extends AnyRef

    Type class for a facet of a context.

  9. case class InductiveType (ty: TBase, constructors: Vector[Const]) extends TypeDef with Product with Serializable

    Inductive base type with constructors.

  10. case class SkolemFun (sym: Const, defn: LambdaExpression) extends Update with Product with Serializable
  11. case class Sort (ty: TBase) extends TypeDef with Product with Serializable

    Uninterpreted base type.

  12. class State extends AnyRef

    The state of a context.

    The state of a context.

    A context remembers both its history (what elements were added to it), as well as their effect: the current state (the values of the facets).

    State is basically a Cartesian product of all possible facets, where all except finitely many facets still have their initial value. The get method returns the value of a facet, the update method changes the value.

  13. case class StructurallyInductiveTypes (constructors: Map[TBase, Vector[Const]]) extends Product with Serializable

    Inductive types, for each type we store its list of constructors.

  14. sealed trait TypeDef extends Update

    Definition of a base type.

    Definition of a base type. Either Sort or InductiveType.

  15. trait Update extends AnyRef

    Update of a context.

    Update of a context.

    An update stores (potentially multiple) modifications to a Context. It is represented by a function that takes a Context, and returns the modified State.

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(updates: Traversable[Update]): Context
  5. def apply(): Context
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. implicit val axiomsFacet: Facet[Axioms]
  8. implicit val baseTypesFacet: Facet[BaseTypes]
  9. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. implicit val constsFacet: Facet[Constants]
  11. val default: Context
  12. implicit val defsFacet: Facet[Definitions]
  13. val empty: Context
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  18. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  23. implicit val skolemFunsFacet: Facet[SkolemFunctions]
  24. implicit val structIndTysFacet: Facet[StructurallyInductiveTypes]
  25. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  26. def toString(): String
    Definition Classes
    AnyRef → Any
  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. val withoutEquality: Context
  31. object Facet
  32. object InductiveType extends Serializable
  33. object Sort extends Serializable
  34. object State
  35. object Update

Inherited from AnyRef

Inherited from Any

Ungrouped