Trait

inox.solvers.unrolling

QuantificationTemplates

Related Doc: package unrolling

Permalink

trait QuantificationTemplates extends AnyRef

Self Type
Templates
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. QuantificationTemplates
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class Negative(insts: (ast.Trees.Variable, Encoded)) extends Templates.Polarity with Product with Serializable

    Permalink
  2. sealed abstract class Polarity extends AnyRef

    Permalink

    Represents the polarity of the quantification within the considered formula.

    Represents the polarity of the quantification within the considered formula. Positive and negative polarity enable optimizations during quantifier instantiation.

    Unknown polarity is treated conservatively (subsumes both positive and negative cases).

  3. case class Positive(guard: Encoded) extends Templates.Polarity with Product with Serializable

    Permalink
  4. class QuantificationTemplate extends AnyRef

    Permalink
  5. case class Unknown(qs: (ast.Trees.Variable, Encoded), q2s: (ast.Trees.Variable, Encoded), insts: (ast.Trees.Variable, Encoded), guard: Encoded) extends Templates.Polarity with Product with Serializable

    Permalink

    Unknown quantification polarity.

    Unknown quantification polarity.

    Instantiations of unknown polarity quantification with body

    p

    follows the schema:

    q == (q2 && inst)
    inst == (guard ==> p)

    It is useful to keep the two clauses separate so that satisfying assignments can be constructed where only certain inst variables are falsified. This is used to enable a powerful unrolling heuristic in the presence of both quantifiers and recursive functions.

    p }}}

    q == (q2 && inst)
    inst == (guard ==> p)

    It is useful to keep the two clauses separate so that satisfying assignments can be constructed where only certain inst variables are falsified. This is used to enable a powerful unrolling heuristic in the presence of both quantifiers and recursive functions.

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 FunctionMatcher

    Permalink
  5. object QuantificationMatcher

    Permalink
  6. object QuantificationTemplate

    Permalink
  7. object QuantificationTypeMatcher

    Permalink
  8. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def correspond(m1: Matcher, m2: Matcher): Option[Boolean]

    Permalink
    Attributes
    protected
    Annotations
    @inline()
  11. def correspond(k1: Templates.MatcherKey, k2: Templates.MatcherKey): Option[Boolean]

    Permalink
    Attributes
    protected
  12. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  16. def getFiniteRangeClauses: Clauses

    Permalink
  17. def getGroundInstantiations(e: Encoded, tpe: ast.Trees.Type): Seq[(Encoded, Seq[Encoded])]

    Permalink
  18. def getInstantiationsWithBlockers: Seq[(Encoded, Set[Encoded])]

    Permalink
  19. def getQuantifications: Seq[Templates.Quantification]

    Permalink
  20. def hasQuantifiers: Boolean

    Permalink
  21. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  22. def instantiateAxiom(template: Templates.LambdaTemplate): Clauses

    Permalink
  23. def instantiateMatcher(blocker: Encoded, matcher: Matcher): Clauses

    Permalink
  24. def instantiateQuantification(template: Templates.QuantificationTemplate): (Map[Encoded, Encoded], Clauses)

    Permalink
  25. final def isInstanceOf[T0]: Boolean

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

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

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

    Permalink
    Definition Classes
    AnyRef
  29. def promoteQuantifications: Unit

    Permalink
  30. def requiresFiniteRangeCheck: Boolean

    Permalink
  31. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  33. final def wait(): Unit

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped