Class

ap.parser

ITerm

Related Doc: package parser

Permalink

abstract class ITerm extends IExpression

Abstract class representing terms in input-syntax.

Linear Supertypes
IExpression, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ITerm
  2. IExpression
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ITerm()

    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 *(that: ITerm): ITerm

    Permalink

    Product of two terms (only defined if at least one of the terms is constant).

  4. def *(coeff: IdealInt): ITerm

    Permalink

    Product of term with an integer.

  5. def ***(coeff: IdealInt): ITerm

    Permalink

    Product of two terms.

    Product of two terms. The resulting expression is simplified immediately if one of the terms is constant.

  6. def +(that: ITerm): ITerm

    Permalink

    Sum of two terms.

  7. def +++(that: ITerm): ITerm

    Permalink

    Sum of two terms.

    Sum of two terms. The resulting expression is simplified immediately if one of the terms disappears.

  8. def -(that: ITerm): ITerm

    Permalink

    Difference between two terms.

  9. def ---(that: ITerm): ITerm

    Permalink

    Difference of two terms.

    Difference of two terms. The resulting expression is simplified immediately if one of the terms disappears.

  10. def <(that: ITerm): IFormula

    Permalink

    Inequality between two terms.

  11. def <=(that: ITerm): IFormula

    Permalink

    Inequality between two terms.

  12. def =/=(that: ITerm): IFormula

    Permalink

    Dis-equation between two terms.

  13. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  14. def ===(that: ITerm): IFormula

    Permalink

    Equation between two terms.

  15. def >(that: ITerm): IFormula

    Permalink

    Inequality between two terms.

  16. def >=(that: ITerm): IFormula

    Permalink

    Inequality between two terms.

  17. def apply(i: Int): IExpression

    Permalink

    Return the ith sub-expression.

    Return the ith sub-expression.

    Definition Classes
    IExpression
  18. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  20. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  22. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  23. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  24. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  25. def iterator: Iterator[IExpression]

    Permalink

    Iterator over the sub-expressions of this expression.

    Iterator over the sub-expressions of this expression.

    Definition Classes
    IExpression
  26. def length: Int

    Permalink

    Number of sub-expressions.

    Number of sub-expressions.

    Definition Classes
    IExpression
  27. def minusSimplify: ITerm

    Permalink

    Negation of a term.

    Negation of a term. The resulting expression is simplified immediately if one of the terms is constant.

  28. final def ne(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  30. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  31. def subExpressions: IndexedSeq[IExpression]

    Permalink

    The sub-expressions of this expression.

    The sub-expressions of this expression.

    Definition Classes
    IExpression
  32. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  34. def unary_-: ITerm

    Permalink

    Negation of a term.

  35. def update(newSubExprs: Seq[IExpression]): ITerm

    Permalink

    Replace the subexpressions of this node with new expressions

    Replace the subexpressions of this node with new expressions

    Definition Classes
    ITermIExpression
  36. final def wait(arg0: Long, arg1: Int): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from IExpression

Inherited from AnyRef

Inherited from Any

Ungrouped