Packages

object Plugin

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

Type Members

  1. sealed abstract class Action extends AnyRef
  2. case class AddAxiom(assumptions: Seq[Formula], axiom: Conjunction, theory: Theory) extends Action with Product with Serializable

    Add an explicit theory axiom.

    Add an explicit theory axiom. The action can specify a list of assumptions that are antecedents of the axiom and assumed to be present in a goal. Constants in the axiom will be replaced with universally quantified variables.

  3. case class AddFormula(formula: Conjunction) extends Action with Product with Serializable

    Add a formula to the handled proof goal.

    Add a formula to the handled proof goal. This action does not support generation of proof certificates.

  4. case class AddReducableModelElement(facts: Conjunction, constants: Set[ConstantTerm], reducerSettings: ReducerSettings) extends Action with Product with Serializable

    Record that values of the given constants can be reconstructed from the provided facts.

  5. case class AxiomSplit(assumptions: Seq[Formula], cases: Seq[(Conjunction, Seq[Action])], theory: Theory) extends Action with Product with Serializable

    Split a proof goal into multiple sub-goals, and justify the split through an explicit theory axiom.

    Split a proof goal into multiple sub-goals, and justify the split through an explicit theory axiom. The action can specify a list of assumptions that are antecedents of the axiom, but already assumed to be present in a goal. Constants in the axiom will be replaced with universally quantified variables.

  6. case class CloseByAxiom(assumptions: Seq[Formula], theory: Theory) extends Action with Product with Serializable

    Close the goal by invoking an explicit theory axiom.

    Close the goal by invoking an explicit theory axiom. The action can specify a list of assumptions that are antecedents of the axiom and assumed to be present in a goal. Constants in the axiom will be replaced with universally quantified variables.

  7. case class CutSplit(cutFormula: Conjunction, leftCase: Seq[Action], rightCase: Seq[Action]) extends Action with Product with Serializable

    Split a proof goal by applying the cut rule.

  8. case class RemoveFacts(facts: Conjunction) extends Action with Product with Serializable

    Remove some facts from the handled proof goal.

  9. case class ScheduleTask(proc: TheoryProcedure, priority: Int) extends Action with Product with Serializable

    Schedule a task to be applied later on the goal.

  10. case class SplitDisequality(equality: LinearCombination, leftActions: Seq[Action], rightActions: Seq[Action]) extends Action with Product with Serializable

    Split a disequality fact into two inequalities.

  11. case class SplitGoal(cases: Seq[Seq[Action]]) extends Action with Product with Serializable

    Split a proof goal into multiple sub-goals.

    Split a proof goal into multiple sub-goals. This action does not support generation of proof certificates.

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 AC: AC_PLUGIN.type
    Attributes
    protected[theoryPlugins]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. def isRelevantAxiomAction(action: Action, order: TermOrder): Boolean

    A simple relevance filter to get rid of axioms that follow trivially from built-in arithmetic rules.

    A simple relevance filter to get rid of axioms that follow trivially from built-in arithmetic rules. Such irrelevant axioms should not be added, since they might interfere with the built-in simplification rules, and sometimes lead to illformed proofs.

  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  16. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  17. def toString(): String
    Definition Classes
    AnyRef → Any
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  20. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  21. object GoalState extends Enumeration

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