Packages

object Sort

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Sort
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. case class Interval(lower: Option[IdealInt], upper: Option[IdealInt]) extends Sort with Product with Serializable

    Sort representing (possibly left- or right-open) intervals.

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. val AnySort: ProxySort

    A placeholder sort that is used in places where the sort has not been inferred yet.

  5. lazy val Bool: ADTProxySort

    The sort of Booleans.

    The sort of Booleans. Booleans are encoded as an ADT with two nullary constructors true (mapped to the integer 0), false (mapped to the integer 1).

    See also

    ap.theories.ADT.BoolADT

  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
  8. def createInfUninterpretedSort(name: String): InfUninterpretedSort

    Create a new uninterpreted sort of infinite cardinality.

  9. def createUninterpretedSort(name: String): UninterpretedSort

    Create a new uninterpreted sort of finite or infinite cardinality.

  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  14. def individualsVectors(sorts: List[Sort]): Stream[List[ITerm]]

    Generate a stream of vectors of individuals in the given sort vector.

  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  19. def sortOf(t: ITerm): Sort

    Determine the sort of the given term.

  20. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  21. def toString(): String
    Definition Classes
    AnyRef → Any
  22. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  23. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. object :::

    Extractor to identify terms with associated sort.

    Extractor to identify terms with associated sort. This can be used for checks like t match { case t ::: Sort.Bool => XXX }.

  26. object AnyBool

    Extractor to recognise sorts that represent the Booleans.

  27. object Integer extends Sort

    The sort of integers, which is also the default sort whenever no sort is specified.

  28. object MultipleValueBool extends ProxySort

    The sort of integers reinterpreted as Booleans.

    The sort of integers reinterpreted as Booleans. Integer 0true, every non-zero number as false. For symbolic representation the same terms as in sort Bool are used.

    See also

    ap.theories.ADT.BoolADT

    Bool

  29. object Nat extends ProxySort

    The sort of natural numbers.

  30. object NonNumeric

    Extractor to recognise non-numeric sorts.

  31. object NonNumericTerm
  32. object Numeric

    Extractor to recognise sorts that are subsets of the integers.

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from AnyRef

Inherited from Any

Ungrouped