Trait

at.logic.gapt.expr

PropFormula

Related Doc: package expr

Permalink

trait PropFormula extends LambdaExpression with PropPartialFormula with FOLFormula

Linear Supertypes
FOLFormula, FOLExpression, HOLFormula, PropPartialFormula, FOLPartialFormula, LambdaExpression, AnyRef, Any
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. PropFormula
  2. FOLFormula
  3. FOLExpression
  4. HOLFormula
  5. PropPartialFormula
  6. FOLPartialFormula
  7. LambdaExpression
  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

Abstract Value Members

  1. abstract def exptype: TA

    Permalink
    Definition Classes
    LambdaExpression
  2. abstract def syntaxEquals(e: LambdaExpression): Boolean

    Permalink
    Definition Classes
    LambdaExpression

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 &(that: FOLFormula): FOLFormula

    Permalink
    Definition Classes
    FOLFormula
  4. def &(that: HOLFormula): HOLFormula

    Permalink
    Definition Classes
    HOLFormula
  5. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from PropFormula to any2stringadd[PropFormula] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  6. def -->(that: FOLFormula): FOLFormula

    Permalink
    Definition Classes
    FOLFormula
  7. def -->(that: HOLFormula): HOLFormula

    Permalink
    Definition Classes
    HOLFormula
  8. def ->[B](y: B): (PropFormula, B)

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

    Permalink
    Definition Classes
    AnyRef → Any
  10. def alphaEquals(that: LambdaExpression): Boolean

    Permalink

    Alpha-equality.

    Alpha-equality.

    that

    Lambda expression to compare against.

    returns

    whether this lambda expression is equal to that lambda expression modulo alpha-conversion.

    Definition Classes
    LambdaExpression
  11. def apply(pos: FOLPosition): FOLExpression

    Permalink

    Retrieves this expression's subexpression at a given position.

    Retrieves this expression's subexpression at a given position.

    pos

    The position to be retrieved.

    returns

    The subexpression at pos.

    Definition Classes
    FOLExpression
  12. def apply(pos: HOLPosition): LambdaExpression

    Permalink

    Retrieves this expression's subexpression at a given position.

    Retrieves this expression's subexpression at a given position.

    pos

    The position to be retrieved.

    returns

    The subexpression at pos.

    Definition Classes
    LambdaExpression
  13. def apply(p: LambdaPosition): LambdaExpression

    Permalink
    Definition Classes
    LambdaExpression
  14. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  16. def ensuring(cond: (PropFormula) ⇒ Boolean, msg: ⇒ Any): PropFormula

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  21. def equals(a: Any): Boolean

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  23. def find(exp: FOLExpression): List[FOLPosition]

    Permalink

    Finds all HOL positions of a subexpression in this expression.

    Finds all HOL positions of a subexpression in this expression.

    exp

    The subexpression to be found.

    returns

    A list containing all positions where exp occurs.

    Definition Classes
    FOLExpression
  24. def find(exp: LambdaExpression): List[HOLPosition]

    Permalink

    Finds all HOL positions of a subexpression in this expression.

    Finds all HOL positions of a subexpression in this expression.

    exp

    The subexpression to be found.

    returns

    A list containing all positions where exp occurs.

    Definition Classes
    LambdaExpression
  25. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from PropFormula to StringFormat[PropFormula] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  26. def get(pos: FOLPosition): Option[FOLExpression]

    Permalink

    Retrieves this expression's subexpression at a given position, if there is one.

    Retrieves this expression's subexpression at a given position, if there is one.

    pos

    The position to be retrieved.

    returns

    If there is a subexpression at that position, return Some(that expression). Otherwise None.

    Definition Classes
    FOLExpression
  27. def get(pos: HOLPosition): Option[LambdaExpression]

    Permalink

    Retrieves this expression's subexpression at a given position, if there is one.

    Retrieves this expression's subexpression at a given position, if there is one.

    pos

    The position to be retrieved.

    returns

    If there is a subexpression at that position, return Some(that expression). Otherwise None.

    Definition Classes
    LambdaExpression
  28. def get(p: LambdaPosition): Option[LambdaExpression]

    Permalink

    Returns the subexpression at the given position, if it exists.

    Returns the subexpression at the given position, if it exists.

    Definition Classes
    LambdaExpression
  29. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  30. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  31. def isDefinedAt(pos: FOLPosition): Boolean

    Permalink

    Tests whether this expression has a subexpression at a given position.

    Tests whether this expression has a subexpression at a given position.

    pos

    The position to be tested.

    returns

    Whether this(pos) is defined.

    Definition Classes
    FOLExpression
  32. def isDefinedAt(pos: HOLPosition): Boolean

    Permalink

    Tests whether this expression has a subexpression at a given position.

    Tests whether this expression has a subexpression at a given position.

    pos

    The position to be tested.

    returns

    Whether this(pos) is defined.

    Definition Classes
    LambdaExpression
  33. def isDefinedAt(p: LambdaPosition): Boolean

    Permalink

    Tests whether this Expression has a subexpression at the given position.

    Tests whether this Expression has a subexpression at the given position.

    Definition Classes
    LambdaExpression
  34. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  35. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  38. def renameSymbols(map: SymbolMap): FOLFormula

    Permalink
    Definition Classes
    FOLFormulaFOLExpression
  39. def replace(pos: FOLPosition, replacement: FOLExpression): FOLExpression

    Permalink
    Definition Classes
    FOLExpression
  40. def replace(pos: HOLPosition, exp: LambdaExpression): HOLFormula

    Permalink
    Definition Classes
    HOLFormulaLambdaExpression
  41. def replace(pos: LambdaPosition, replacement: LambdaExpression): LambdaExpression

    Permalink
    Definition Classes
    LambdaExpression
  42. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    LambdaExpression → AnyRef → Any
  44. def unary_-: FOLFormula

    Permalink
    Definition Classes
    FOLFormulaHOLFormula
  45. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  48. def |(that: FOLFormula): FOLFormula

    Permalink
    Definition Classes
    FOLFormula
  49. def |(that: HOLFormula): HOLFormula

    Permalink
    Definition Classes
    HOLFormula
  50. def [B](y: B): (PropFormula, B)

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

Inherited from FOLFormula

Inherited from FOLExpression

Inherited from HOLFormula

Inherited from PropPartialFormula

Inherited from FOLPartialFormula

Inherited from LambdaExpression

Inherited from AnyRef

Inherited from Any

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

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

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

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

Ungrouped