trait FOLAtom extends Expr with FOLPartialAtom with Atom with FOLFormula

Source
FOLAtom.scala
Linear Supertypes
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FOLAtom
  2. FOLFormula
  3. FOLExpression
  4. FOLPartialFormula
  5. Atom
  6. Formula
  7. FOLPartialAtom
  8. HOLPartialAtom
  9. Expr
  10. AnyRef
  11. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def alphaEquivalentHashCode: Int
    Definition Classes
    Expr
  2. abstract def syntaxEquals(e: Expr): Boolean

    Syntactic equality (takes names of variables in binders into account).

    Syntactic equality (takes names of variables in binders into account).

    Definition Classes
    Expr
  3. abstract def ty: Ty

    Type of this expression (e.g.

    Type of this expression (e.g. i>i>o).

    Definition Classes
    Expr

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. def !==(that: Expr): Formula
    Definition Classes
    Expr
  3. final def ##: Int
    Definition Classes
    AnyRef → Any
  4. def &(that: FOLFormula): FOLFormula
    Definition Classes
    FOLFormula
  5. def &(that: Expr): Formula
    Definition Classes
    Expr
  6. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from FOLAtom toany2stringadd[FOLAtom] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  7. def -->(that: FOLFormula): FOLFormula
    Definition Classes
    FOLFormula
  8. def -->(that: Expr): Formula
    Definition Classes
    Expr
  9. def ->[B](y: B): (FOLAtom, B)
    Implicit
    This member is added by an implicit conversion from FOLAtom toArrowAssoc[FOLAtom] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  10. def <->(that: FOLFormula): FOLFormula
    Definition Classes
    FOLFormula
  11. def <->(that: Expr): Formula
    Definition Classes
    Expr
  12. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  13. def ===(that: Expr): Atom
    Definition Classes
    Expr
  14. def ^(n: Int)(that: Expr): Expr
    Definition Classes
    Expr
  15. def alphaEquals(that: Expr): Boolean

    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
    Expr
  16. def apply(pos: FOLPosition): FOLExpression

    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
  17. def apply(that: Expr*)(implicit dummyImplicit: DummyImplicit): Atom
    Definition Classes
    HOLPartialAtom
  18. def apply(that: Iterable[Expr]): Expr
    Definition Classes
    Expr
  19. def apply(that: Expr*): Expr
    Definition Classes
    Expr
  20. def apply(pos: HOLPosition): Expr

    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
    Expr
  21. def apply(p: LambdaPosition): Expr
    Definition Classes
    Expr
  22. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  23. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  24. def contains(exp: Expr): Boolean

    Tests whether an expression is a subexpression.

    Tests whether an expression is a subexpression.

    exp

    The subexpression to be found.

    returns

    A boolean that is true if exp is a subexpression

    Definition Classes
    Expr
  25. def ensuring(cond: (FOLAtom) => Boolean, msg: => Any): FOLAtom
    Implicit
    This member is added by an implicit conversion from FOLAtom toEnsuring[FOLAtom] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  26. def ensuring(cond: (FOLAtom) => Boolean): FOLAtom
    Implicit
    This member is added by an implicit conversion from FOLAtom toEnsuring[FOLAtom] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  27. def ensuring(cond: Boolean, msg: => Any): FOLAtom
    Implicit
    This member is added by an implicit conversion from FOLAtom toEnsuring[FOLAtom] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  28. def ensuring(cond: Boolean): FOLAtom
    Implicit
    This member is added by an implicit conversion from FOLAtom toEnsuring[FOLAtom] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  29. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  30. def equals(a: Any): Boolean
    Definition Classes
    Expr → AnyRef → Any
  31. def find(exp: FOLExpression): List[FOLPosition]

    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
  32. def find(exp: Expr): List[HOLPosition]

    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
    Expr
  33. def get(pos: FOLPosition): Option[FOLExpression]

    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
  34. def get(pos: HOLPosition): Option[Expr]

    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
    Expr
  35. def get(p: LambdaPosition): Option[Expr]

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

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

    Definition Classes
    Expr
  36. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  37. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  38. def isDefinedAt(pos: FOLPosition): Boolean

    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
  39. def isDefinedAt(pos: HOLPosition): Boolean

    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
    Expr
  40. def isDefinedAt(p: LambdaPosition): Boolean

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

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

    Definition Classes
    Expr
  41. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  42. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  43. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  44. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  45. def replace(pos: FOLPosition, replacement: FOLExpression): FOLExpression
    Definition Classes
    FOLExpression
  46. def replace(pos: HOLPosition, exp: Expr): Formula
    Definition Classes
    FormulaExpr
  47. def replace(pos: LambdaPosition, replacement: Expr): Expr
    Definition Classes
    Expr
  48. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  49. def toAsciiString: String

    Converts this expression into a 7-bit safe ASCII string.

    Converts this expression into a 7-bit safe ASCII string.

    The output can be parsed using e.g. the string interpolators, and we guarantee that the expression can be perfectly reconstructed from the string output.

    Definition Classes
    Expr
  50. def toRawAsciiString: String
    Definition Classes
    Expr
  51. def toRawString: String
    Definition Classes
    Expr
  52. def toSigRelativeString(implicit sig: BabelSignature): String

    Converts this expression into a string, taking the signature into account.

    Converts this expression into a string, taking the signature into account.

    This produces a similar output as toString, but will use the variable convention indicated by the signature. That is, if sig defines x to be a constant, then we output just x instead of the default #c(x: i).

    Definition Classes
    Expr
  53. def toString(): String

    Converts this expression into a string.

    Converts this expression into a string.

    The output can be parsed using e.g. the string interpolators, and we guarantee that the expression can be perfectly reconstructed from the string output.

    Definition Classes
    Expr → AnyRef → Any
  54. def toUntypedAsciiString(implicit sig: BabelSignature): String
    Definition Classes
    Expr
  55. def toUntypedString(implicit sig: BabelSignature): String
    Definition Classes
    Expr
  56. def unary_-: FOLFormula
    Definition Classes
    FOLFormulaExpr
  57. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  58. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  59. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  60. def |(that: FOLFormula): FOLFormula
    Definition Classes
    FOLFormula
  61. def |(that: Expr): Formula
    Definition Classes
    Expr

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated
  2. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from FOLAtom toStringFormat[FOLAtom] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  3. def [B](y: B): (FOLAtom, B)
    Implicit
    This member is added by an implicit conversion from FOLAtom toArrowAssoc[FOLAtom] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from FOLFormula

Inherited from FOLExpression

Inherited from FOLPartialFormula

Inherited from Atom

Inherited from Formula

Inherited from FOLPartialAtom

Inherited from HOLPartialAtom

Inherited from Expr

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromFOLAtom to any2stringadd[FOLAtom]

Inherited by implicit conversion StringFormat fromFOLAtom to StringFormat[FOLAtom]

Inherited by implicit conversion Ensuring fromFOLAtom to Ensuring[FOLAtom]

Inherited by implicit conversion ArrowAssoc fromFOLAtom to ArrowAssoc[FOLAtom]

Ungrouped