Object/Class

ap.theories

ADT

Related Docs: class ADT | package theories

Permalink

object ADT

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

Type Members

  1. class ADTException extends Exception

    Permalink
  2. class ADTProxySort extends ProxySort

    Permalink

    Class representing the types/sorts defined by this ADT theory

  3. case class ADTSort(num: Int) extends CtorArgSort with Product with Serializable

    Permalink
  4. sealed abstract class CtorArgSort extends AnyRef

    Permalink
  5. case class CtorSignature(arguments: Seq[(String, CtorArgSort)], result: ADTSort) extends Product with Serializable

    Permalink
  6. case class OtherSort(sort: Sort) extends CtorArgSort with Product with Serializable

    Permalink

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object BoolADT extends ADT

    Permalink

    The ADT of Booleans, with truth values true, false as only constructors.

    The ADT of Booleans, with truth values true, false as only constructors. The ADT is a simple enumeration, and preprocessing will map true to value 0, and false to value 1.

  5. object Constructor

    Permalink

    Extractor recognising the constructors of any ADT theory.

    Extractor recognising the constructors of any ADT theory. The extractor will produce the adt, and the index of the constructor.

  6. object CtorId

    Permalink

    Extractor recognising the X_ctor functions of any ADT theory.

    Extractor recognising the X_ctor functions of any ADT theory.

  7. object CtorIdRewriter extends CollectingVisitor[Unit, IExpression]

    Permalink

    The preprocessor can sometimes cause solution formulas that are illegal according to SMT-LIB because they contain the ADT.CtorId functions in wrong places.

    The preprocessor can sometimes cause solution formulas that are illegal according to SMT-LIB because they contain the ADT.CtorId functions in wrong places. This class rewrites such formulas to only use CtorId functions in equations ctorId(t) = num.

  8. object Selector

    Permalink

    Extractor recognising the selectors of any ADT theory.

    Extractor recognising the selectors of any ADT theory. The extractor will produce the adt, the index of the constructor, and the index of the selected constructor argument.

  9. object TermMeasure extends Enumeration

    Permalink
  10. object TermSize

    Permalink

    Extractor recognising the X_size functions of any ADT theory.

    Extractor recognising the X_size functions of any ADT theory.

  11. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  13. def createEnumType(name: String, cases: Seq[String]): (Sort, IndexedSeq[ITerm])

    Permalink

    Create an ADT that implements an enumeration, and return the corresponding sort and the terms representing the cases.

  14. def createListType(name: String, elementSort: Sort, withSize: Boolean = false): (Sort, IFunction, IFunction, IFunction, IFunction, Option[IFunction])

    Permalink

    Create an ADT that implements lists.

    Create an ADT that implements lists. The return tuple provides the list sort, and the functions for nil, cons, head, tail. If the withSize option is set, the last returned function is the size function of the ADT; it computes the number of constructor symbols of a term.

  15. def createRecordType(name: String, fields: Seq[(String, Sort)]): (Sort, IFunction, IndexedSeq[IFunction])

    Permalink

    Create an ADT that implements a record type, and return the corresponding sort, the constructor symbol, and the selectors.

  16. def depthSortedVectors(sorts: List[Sort]): Stream[List[ITerm]]

    Permalink
    Attributes
    protected[ap.theories]
  17. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  25. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  27. final def wait(arg0: Long, arg1: Int): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. 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 AnyRef

Inherited from Any

Ungrouped