Class

at.logic.gapt.proofs

FiniteContext

Related Doc: package proofs

Permalink

case class FiniteContext(constants: Set[Const] = Set(), definitions: Map[Const, LambdaExpression] = Map(), typeDefs: Set[TypeDef] = Set( Context.oTypeDef ), backgroundTheory: BackgroundTheory = FOTheory()) extends BabelSignature with Context with Product with Serializable

A finite Context.

Source
Context.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FiniteContext
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Context
  7. BabelSignature
  8. AnyRef
  9. 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

Instance Constructors

  1. new FiniteContext(constants: Set[Const] = Set(), definitions: Map[Const, LambdaExpression] = Map(), typeDefs: Set[TypeDef] = Set( Context.oTypeDef ), backgroundTheory: BackgroundTheory = FOTheory())

    Permalink

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(newTheory: BackgroundTheory): FiniteContext

    Permalink
  4. def +(equation: HOLFormula): FiniteContext

    Permalink
  5. def +(defn: (String, LambdaExpression)): FiniteContext

    Permalink
  6. def +(typeDef: TypeDef): FiniteContext

    Permalink
  7. def +(const: Const): FiniteContext

    Permalink
  8. def ++(typeDefs: Iterable[TypeDef])(implicit dummyImplicit: DummyImplicit): FiniteContext

    Permalink
  9. def ++(consts: Iterable[Const]): FiniteContext

    Permalink
  10. def ->[B](y: B): (FiniteContext, B)

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

    Permalink
    Definition Classes
    AnyRef → Any
  12. def apply(s: String): VarConst

    Permalink

    Decides whether the symbol with the given identifier should be a variable or constant, and what its type should be.

    Decides whether the symbol with the given identifier should be a variable or constant, and what its type should be.

    s

    The name of the symbol.

    returns

    Either IsVar(type) or IsConst(type).

    Definition Classes
    ContextBabelSignature
  13. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  14. val backgroundTheory: BackgroundTheory

    Permalink
  15. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  16. def constant(name: String): Option[Const]

    Permalink

    Returns Some(const) if name is a constant.

    Returns Some(const) if name is a constant.

    Definition Classes
    FiniteContextContext
  17. val constants: Set[Const]

    Permalink
  18. val constantsMap: Map[String, Const]

    Permalink
  19. def definition(name: String): Option[LambdaExpression]

    Permalink

    Returns Some(expandedDefinition) if name is a defined constant.

    Returns Some(expandedDefinition) if name is a defined constant.

    Definition Classes
    FiniteContextContext
  20. val definitionMap: Map[String, LambdaExpression]

    Permalink
  21. val definitions: Map[Const, LambdaExpression]

    Permalink
  22. def ensuring(cond: (FiniteContext) ⇒ Boolean, msg: ⇒ Any): FiniteContext

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  27. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  28. def formatted(fmtstr: String): String

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

    Permalink
    Definition Classes
    AnyRef → Any
  30. def getType(s: String): Type

    Permalink

    Returns the type of the symbol with the given identifier.

    Returns the type of the symbol with the given identifier.

    s

    The name of the symbol.

    Definition Classes
    BabelSignature
  31. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  32. def isVar(s: String): Boolean

    Permalink

    Returns true iff the symbol with the given identifier is a variable.

    Returns true iff the symbol with the given identifier is a variable.

    s

    The name of the symbol.

    Definition Classes
    BabelSignature
  33. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  36. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  37. def theory(atomicSeq: HOLClause): Option[LKProof]

    Permalink

    Returns Some(lkProof) if clause is valid modulo the background theory.

    Returns Some(lkProof) if clause is valid modulo the background theory.

    lkProof should end in a minimal sub-sequent of clause that is still valid.

    Definition Classes
    FiniteContextContext
  38. def typeDef(name: String): Option[TypeDef]

    Permalink

    Returns Some(typeDef) if name is a base type.

    Returns Some(typeDef) if name is a base type.

    Definition Classes
    FiniteContextContext
  39. def typeDef(ty: TBase): Option[TypeDef]

    Permalink
    Definition Classes
    Context
  40. val typeDefs: Set[TypeDef]

    Permalink
  41. val typeDefsMap: Map[String, TypeDef]

    Permalink
  42. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  45. def [B](y: B): (FiniteContext, B)

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

Shadowed Implicit Value Members

  1. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from FiniteContext to any2stringadd[FiniteContext] performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (finiteContext: any2stringadd[FiniteContext]).+(other)
    Definition Classes
    any2stringadd

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Context

Inherited from BabelSignature

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from FiniteContext to any2stringadd[FiniteContext]

Inherited by implicit conversion StringFormat from FiniteContext to StringFormat[FiniteContext]

Inherited by implicit conversion Ensuring from FiniteContext to Ensuring[FiniteContext]

Inherited by implicit conversion ArrowAssoc from FiniteContext to ArrowAssoc[FiniteContext]

Ungrouped