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 BaseTypes(baseTypes: Map[String, TBase]) extends Product with Serializable

    Base types, including inductive types.

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

    Constant symbols, including defined constants, constructors, etc.

  4. case class Definitions(definitions: Map[String, Expr]) extends Product with Serializable

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

  5. trait Facet[T] extends AnyRef

    Type class for a facet of a context.

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

    Inductive base type with constructors.

  7. case class PrimRecFunBatch(prfDefinitions: Seq[(Const, Int, Int, Vector[(Expr, Expr)])]) extends Update with Product with Serializable
  8. case class ProofDeclaration(lhs: Expr, proof: LKProof) extends Update with Product with Serializable
  9. case class ProofDefinition(proofNameTerm: Expr, connector: SequentConnector, proof: LKProof) extends Product with Serializable
  10. case class ProofDefinitionDeclaration(lhs: Expr, referencedProof: LKProof) extends Update with Product with Serializable
  11. case class ProofDefinitions(components: Map[String, Set[ProofDefinition]]) extends Product with Serializable
  12. case class ProofNameDeclaration(lhs: Expr, endSequent: HOLSequent) extends Update with Product with Serializable
  13. case class ProofNames(names: Map[String, (Expr, HOLSequent)]) extends Product with Serializable
  14. case class Reductions(normalizer: Normalizer) extends Product with Serializable

    Definitional reductions.

  15. case class SkolemFun(sym: Const, defn: Expr) extends Update with Product with Serializable
  16. case class Sort(ty: TBase) extends TypeDef with Product with Serializable

    Uninterpreted base type.

  17. 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.

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

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

  19. sealed trait TypeDef extends Update

    Definition of a base type.

    Definition of a base type. Either Sort or InductiveType.

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

Inherited from AnyRef

Inherited from Any

Ungrouped