Packages

trait UnifyUSCalculus extends AnyRef

Automatic unification-based Uniform Substitution Calculus with indexing. Provides a tactic framework for automatically applying axioms and axiomatic rules by matching inputs against them by unification according to the axiom's AxIndex.

This central collection of unification-based algorithms for focused proof strategies is the basis for using axioms and axiomatic proof rules in flexible ways. It is also central for deciding upon their succession in proof strategies, e.g., which steps to take next.

The most important algorithms are: - UnifyUSCalculus.useAt() makes use of a (derived) axiom or axiomatic rule in any position and logically transforms the goal to prove what is required for the transformation. - UnifyUSCalculus.chase chains together a sequence of canonical useAt inferences to make a formula disappear (chase it away) as far as possible.

Which part of a (derived) axiom to latch on to during a useAt is determined by the unification keys in the AxiomInfo.theKey. Which resulting subexpressions to consider next during a chase is determined by the recursors in the AxiomInfo.theRecursor. What unifier is used for the default key is, in turn, determined by AxiomInfo.unifier. Which (derived) axiom is the canonical one to decompose a given expression is determined by AxIndex.axiomsFor() Default keys and default recursors and default axiom indices can be overwritten by specifing extra arguments. This can be useful for noncanonical useAts or chases.

The combination of the UnifyUSCalculus algorithms make it possible to implement a tactic for using an axiom as follows:

useAt(Ax.composeb)

Such a tactic can then be applied in different positions of a sequent, e.g.:

useAt(Ax.composeb)(1)
useAt(Ax.composeb)(-2)
useAt(Ax.composeb)(1, 1::0::Nil)

The combination of the UnifyUSCalculus algorithms also make it possible to implement longer proof strategies. For example, completely chasing away a formula by successively using the canonical axioms on the resulting formulas is:

chase

Applying it at different positions of a sequent proceeds as follows, e.g.:

chase(1)
chase(-2)
chase(1, 1::0::Nil)
See also

AxiomInfo

edu.cmu.cs.ls.keymaerax.infrastruct.UnificationMatch

AxIndex

Andre Platzer. A complete uniform substitution calculus for differential dynamic logic. Journal of Automated Reasoning, 59(2), pp. 219-266, 2017. arXiv:1601.06183

Andre Platzer. A uniform substitution calculus for differential dynamic logic. In Amy P. Felty and Aart Middeldorp, editors, International Conference on Automated Deduction, CADE'15, Berlin, Germany, Proceedings, LNCS. Springer, 2015.

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

Type Members

  1. type ForwardPositionTactic = (Position) ⇒ ForwardTactic

    Forward-style position tactic mapping positions and provables to provables that follow from it.

  2. type ForwardTactic = (ProvableSig) ⇒ ProvableSig

    Forward-style tactic mapping provables to provables that follow from it.

  3. type Subst = RenUSubst

    The (generalized) substitutions used for unification

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. def CE(C: Context[Formula]): ForwardTactic

    CE(C) will wrap any equivalence left<->right or equality left=right fact it gets within context C.

    CE(C) will wrap any equivalence left<->right or equality left=right fact it gets within context C. Uses CE or CQ as needed.

        p(x) <-> q(x)
    --------------------- CE
     C{p(x)} <-> C{q(x)}
        f(x) = g(x)
    --------------------- CQ+CE
     c(f(x)) <-> c(g(x))
    To do

    likewise for Context[Term] using CT instead.

    See also

    CE(PosInExpr

    CEat(Provable)

    CMon(Context)

  5. def CE(inEqPos: PosInExpr): InputTactic

    CE(pos) at the indicated position within an equivalence reduces contextual equivalence C{left}<->C{right}to argument equivalence left<->right.

    CE(pos) at the indicated position within an equivalence reduces contextual equivalence C{left}<->C{right}to argument equivalence left<->right.

        p(x) <-> q(x)
    --------------------- CE
     C{p(x)} <-> C{q(x)}

    Part of the differential dynamic logic Hilbert calculus.

    inEqPos

    the position *within* the two sides of the equivalence at which the context DotFormula occurs.

    Annotations
    @Tactic( x$88 , x$87 , x$89 , x$85 , x$86 , x$90 , x$91 , x$92 , x$93 , x$94 , x$95 , x$96 )
    See also

    UnifyUSCalculus.CE(Context)

    UnifyUSCalculus.CQ(PosInExpr)

    UnifyUSCalculus.CMon(PosInExpr)

    UnifyUSCalculus.CEat(Provable)

    Andre Platzer. A uniform substitution calculus for differential dynamic logic. In Amy P. Felty and Aart Middeldorp, editors, International Conference on Automated Deduction, CADE'15, Berlin, Germany, Proceedings, LNCS. Springer, 2015. A uniform substitution calculus for differential dynamic logic. arXiv 1503.01981

  6. def CEat(fact: ProvableSig, C: Context[Formula]): DependentPositionTactic

    CEat(fact,C) uses the equivalence left<->right or equality left=right or implication left->right fact for congruence reasoning in the given context C at the indicated position to replace right by left in that context (literally, no substitution).

    CEat(fact,C) uses the equivalence left<->right or equality left=right or implication left->right fact for congruence reasoning in the given context C at the indicated position to replace right by left in that context (literally, no substitution).

    Examples:
    1. CE(fact, Context("⎵".asFormula)) is equivalent to CE(fact).

    2. ,
    3. CE(fact, Context("x>0&⎵".asFormula))(p) is equivalent to CE(fact)(p+PosInExpr(1::Nil)). Except that the former has the shape x>0&⎵ for the context starting from position p.

    See also

    UnifyUSCalculus.CEat(Provable)

    useAtImpl()

    CE(Context)

    UnifyUSCalculus.CE(PosInExpr)

    UnifyUSCalculus.CQ(PosInExpr)

    UnifyUSCalculus.CMon(PosInExpr)

  7. def CEat(fact: ProvableSig, key: PosInExpr): BuiltInPositionTactic

    CEat replacing key with the other expression in the equality/equivalence.

    CEat replacing key with the other expression in the equality/equivalence. @see CEat(ProvableSig)

  8. def CEat(fact: ProvableSig): BuiltInPositionTactic

    CEat(fact) uses the equivalence left<->right or equality left=right or implication left->right fact for congruence reasoning at the indicated position to replace right by left at indicated position (literally, no substitution).

    CEat(fact) uses the equivalence left<->right or equality left=right or implication left->right fact for congruence reasoning at the indicated position to replace right by left at indicated position (literally, no substitution). Efficient unification-free version of PosInExpr):PositionTactic

                           fact
    G |- C{q(x)}, D    q(x) <-> p(x)
    -------------------------------- CER(fact)
    G |- C{p(x)}, D

    Similarly for antecedents or equality facts or implication facts, e.g.:

                           fact
    C{q(x)}, G |- D    q(x) <-> p(x)
    -------------------------------- CEL(fact)
    C{p(x)}, G |- D
    Example:
    1. CEat(fact) is equivalent to CEat(fact, Context("⎵".asFormula))

    To do

    Optimization: Would direct propositional rules make CEat faster at pos.isTopLevel?

    See also

    UnifyUSCalculus.CEat(Provable,Context)

    useAtImpl()

    CE(Context)

    UnifyUSCalculus.CE(PosInExpr)

    UnifyUSCalculus.CQ(PosInExpr)

    UnifyUSCalculus.CMon(PosInExpr)

  9. def CEimp(inEqPos: PosInExpr): InputTactic

    CEimply(pos) at the indicated position within an equivalence reduces contextual implication C{left}->C{right}to argument equivalence left<->right.

    CEimply(pos) at the indicated position within an equivalence reduces contextual implication C{left}->C{right}to argument equivalence left<->right.

        p(x) <-> q(x)
    --------------------- CE
     C{p(x)} -> C{q(x)}

    Part of the differential dynamic logic Hilbert calculus.

    inEqPos

    the position *within* the two sides of the equivalence at which the context DotFormula occurs.

    Annotations
    @Tactic( x$99 , x$100 , x$101 , x$97 , x$98 , x$102 , x$103 , x$104 , x$105 , x$106 , x$107 , x$108 )
    See also

    UnifyUSCalculus.CE(Context)

    Andre Platzer. A uniform substitution calculus for differential dynamic logic. In Amy P. Felty and Aart Middeldorp, editors, International Conference on Automated Deduction, CADE'15, Berlin, Germany, Proceedings, LNCS. Springer, 2015. A uniform substitution calculus for differential dynamic logic. arXiv 1503.01981

  10. def CErevimp(inEqPos: PosInExpr): InputTactic

    CErevimply(pos) at the indicated position within an equivalence reduces contextual implication C{left}->C{right}to argument equivalence left<->right.

    CErevimply(pos) at the indicated position within an equivalence reduces contextual implication C{left}->C{right}to argument equivalence left<->right.

        q(x) <-> p(x)
    --------------------- CE
     C{p(x)} -> C{q(x)}

    Part of the differential dynamic logic Hilbert calculus.

    inEqPos

    the position *within* the two sides of the equivalence at which the context DotFormula occurs.

    Annotations
    @Tactic( x$111 , x$112 , x$113 , x$109 , x$110 , x$114 , x$115 , x$116 , x$117 , x$118 , x$119 , x$120 )
    See also

    UnifyUSCalculus.CE(Context)

    Andre Platzer. A uniform substitution calculus for differential dynamic logic. In Amy P. Felty and Aart Middeldorp, editors, International Conference on Automated Deduction, CADE'15, Berlin, Germany, Proceedings, LNCS. Springer, 2015. A uniform substitution calculus for differential dynamic logic. arXiv 1503.01981

  11. def CMon(C: Context[Formula]): ForwardTactic

    CMon(C) will wrap any implication left->right fact it gets within a (positive or negative) context C by monotonicity.

    CMon(C) will wrap any implication left->right fact it gets within a (positive or negative) context C by monotonicity.

       k |- o
    ------------ CMon if C{⎵} of positive polarity
    C{k} |- C{o}
    Note

    The direction in the conclusion switches for negative polarity C{⎵}

    See also

    UnifyUSCalculus.CMon(PosInExpr)

    CE(Context)

  12. def CMon: BuiltInRightTactic

    Convenience CMon first hiding other context.

    Convenience CMon first hiding other context.

      |- o -> k
    ------------------------- for positive C{.}
    G |- C{o} -> C{k}, D
      |- k -> o
    ------------------------- for negative C{.}
    G |- C{o} -> C{k}, D
    Annotations
    @Tactic( x$135 , x$136 , x$137 , x$133 , x$134 , x$138 , x$139 , x$140 , x$141 , x$142 , x$143 , x$144 )
    See also

    CMon()

  13. def CMon(inEqPos: PosInExpr): InputTactic

    CMon(pos) at the indicated position within an implication reduces contextual implication C{o}->C{k} to argument implication o->k for positive C.

    CMon(pos) at the indicated position within an implication reduces contextual implication C{o}->C{k} to argument implication o->k for positive C. Contextual monotonicity proof rule.

    |- o -> k
    ------------------------- for positive C{.}
    |- C{o} -> C{k}
    |- k -> o
    ------------------------- for negative C{.}
    |- C{o} -> C{k}
    inEqPos

    the position *within* the two sides C{.} of the implication at which the context DotFormula happens.

    Annotations
    @Tactic( x$124 , x$123 , x$125 , x$121 , x$122 , x$126 , x$127 , x$128 , x$129 , x$130 , x$131 , x$132 )
    See also

    UnifyUSCalculus.CQ(PosInExpr)

    UnifyUSCalculus.CE(PosInExpr)

    UnifyUSCalculus.CMon(Context)

    UnifyUSCalculus.CEat())

    HilbertCalculus.monb

    HilbertCalculus.mond

  14. def CQ(inEqPos: PosInExpr): InputTactic

    CQ(pos) at the indicated position within an equivalence reduces contextual equivalence p(left)<->p(right) to argument equality left=right.

    CQ(pos) at the indicated position within an equivalence reduces contextual equivalence p(left)<->p(right) to argument equality left=right. This tactic will use CEat() under the hood as needed.

         f(x) = g(x)
    --------------------- CQ
     c(f(x)) <-> c(g(x))
    inEqPos

    the position *within* the two sides of the equivalence at which the context DotTerm happens.

    Annotations
    @Tactic( x$51 , x$52 , x$53 , x$49 , x$50 , x$54 , x$55 , x$56 , x$57 , x$58 , x$59 , x$60 )
    See also

    UnifyUSCalculus.CE(PosInExpr)

    UnifyUSCalculus.CMon(PosInExpr)

  15. def CQimp(inEqPos: PosInExpr): InputTactic

    CQimply(pos) at the indicated position within an equivalence reduces contextual implication p(left)->p(right) to argument equality left=right.

    CQimply(pos) at the indicated position within an equivalence reduces contextual implication p(left)->p(right) to argument equality left=right. This tactic will use CEat() under the hood as needed.

         f(x) = g(x)
    --------------------- CQ
     c(f(x)) -> c(g(x))
    inEqPos

    the position *within* the two sides of the equivalence at which the context DotTerm happens.

    Annotations
    @Tactic( x$63 , x$64 , x$65 , x$61 , x$62 , x$66 , x$67 , x$68 , x$69 , x$70 , x$71 , x$72 )
    See also

    UnifyUSCalculus.CE(PosInExpr)

    UnifyUSCalculus.CMon(PosInExpr)

  16. def CQrevimp(inEqPos: PosInExpr): InputTactic

    CQrevimp(pos) at the indicated position within an equivalence reduces contextual implication p(left)->p(right) to argument equality left=right.

    CQrevimp(pos) at the indicated position within an equivalence reduces contextual implication p(left)->p(right) to argument equality left=right. This tactic will use CEat() under the hood as needed.

         g(x) = f(x)
    --------------------- CQ
     c(f(x)) -> c(g(x))
    inEqPos

    the position *within* the two sides of the equivalence at which the context DotTerm happens.

    Annotations
    @Tactic( x$75 , x$76 , x$77 , x$73 , x$74 , x$78 , x$79 , x$80 , x$81 , x$82 , x$83 , x$84 )
    See also

    UnifyUSCalculus.CE(PosInExpr)

    UnifyUSCalculus.CMon(PosInExpr)

  17. def US(fact: ProvableSig): BuiltInTactic

    US(fact) uses a suitable uniform substitution to reduce the proof to the proof of fact.

    US(fact) uses a suitable uniform substitution to reduce the proof to the proof of fact. Unifies the current sequent with fact.conclusion. Use that unifier as a uniform substitution to instantiate fact with.

       fact:
      g |- d
    --------- US where G=s(g) and D=s(d) where s=unify(fact.conclusion, G|-D)
      G |- D
    fact

    the proof to reduce this proof to by a suitable Uniform Substitution.

    See also

    byUS()

  18. def US(subst: USubst): BuiltInTactic

    US(subst) uses a uniform substitution of rules to transform an entire provable.

    US(subst) uses a uniform substitution of rules to transform an entire provable.

     G1 |- D1 ... Gn |- Dn              s(G1) |- s(D1) ... s(Gn) |- s(Dn)
    -----------------------     =>     -----------------------------------   (USR)
             G |- D                                s(G) |- s(D)
    subst

    The uniform substitution s (of no free variables) to be used on the premises and conclusion of the provable.

    See also

    edu.cmu.cs.ls.keymaerax.core.Provable.apply(USubst)

    ProvableInfo)

  19. def US(subst: USubst, fact: ProvableSig): BuiltInTactic

    US(subst, fact) reduces the present proof to a proof of fact, whose uniform substitution instance under subst the current goal is.

    US(subst, fact) reduces the present proof to a proof of fact, whose uniform substitution instance under subst the current goal is.

    s(g1) |- s(d1) ... s(gn) |- s(dn)        g1 |- d1 ... gn |- dn
    ---------------------------------   if  ----------------------- fact
            G |- D                                   g |- d
    where G=s(g) and D=s(d)
    subst

    the substitution s that instantiates fact g |- d to the present goal G |- D.

    fact

    the fact g |- d to reduce the proof to. Facts do not have to be proved yet.

    See also

    edu.cmu.cs.ls.keymaerax.core.Provable.apply(USubst)

    ProvableInfo)

  20. def US(subst: USubst, fact: ProvableInfo): BuiltInTactic

    US(subst, fact) reduces the proof to the given fact, whose uniform substitution instance under subst the current goal is.

    US(subst, fact) reduces the proof to the given fact, whose uniform substitution instance under subst the current goal is. When fact is an axiom:

        *              *
    ---------   if  -------- fact
      G |- D         g |- d
    where G=s(g) and D=s(d)

    When fact is an axiomatic rule:

    s(g1) |- s(d1) ... s(gn) |- s(dn)        g1 |- d1 ... gn |- dn
    ---------------------------------   if  ----------------------- fact
            G |- D                                   g |- d
    where G=s(g) and D=s(d)
    subst

    the substitution s that instantiates fact g |- d to the present goal G |- D.

    fact

    the provable for the axiom g |- d to reduce the proof to (accordingly for axiomatic rules).

    See also

    US(USubst,ProvableSig)

  21. def USX(S: List[SubstitutionPair]): InputTactic
    Annotations
    @Tactic( x$37 , x$38 , x$41 , x$40 , x$39 , x$42 , x$43 , x$44 , x$45 , x$46 , x$47 , x$48 )
  22. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  23. def boundRename(what: Variable, repl: Variable): BuiltInPositionTactic

    boundRename(what,repl) renames what to repl at the indicated position (or vice versa).

    boundRename(what,repl) renames what to repl at the indicated position (or vice versa).

    See also

    edu.cmu.cs.ls.keymaerax.core.BoundRenaming

  24. def by(lemma: Lemma, subst: Subst): BelleExpr

    by(name,subst) uses the given axiom or axiomatic rule under the given substitution to prove the sequent.

  25. def by(lemma: Lemma, subst: USubst): BelleExpr
  26. def by(pi: ProvableInfo, subst: Subst): BelleExpr
  27. def by(pi: ProvableInfo, subst: USubst): BelleExpr

    by(pi,subst) uses the given axiom or axiomatic rule under the given substitution to prove the sequent.

    by(pi,subst) uses the given axiom or axiomatic rule under the given substitution to prove the sequent.

     s(a) |- s(b)      a |- b
    ------------- rule(---------) if s(g)=G and s(d)=D
       G  |-  D        g |- d
    pi

    the provable to use to prove the sequent

    subst

    what substitution s to use for instantiating the fact pi.

    See also

    byUS()

  28. def by(lemma: Lemma): BelleExpr
  29. def by(pi: ProvableInfo): BelleExpr

    by(pi) uses the given provable with its information literally to continue or close the proof (if it fits to what has been proved).

    by(pi) uses the given provable with its information literally to continue or close the proof (if it fits to what has been proved).

    pi

    the information for the Provable to use, e.g., from Ax.

  30. def byUS(pi: ProvableInfo, inst: (Subst) ⇒ Subst): BelleExpr

    rule(pi,inst) uses the given axiom or axiomatic rule to prove the sequent.

    rule(pi,inst) uses the given axiom or axiomatic rule to prove the sequent. Unifies the fact's conclusion with the current sequent and proceed to the instantiated premise of fact.

     s(a) |- s(b)      a |- b
    ------------- rule(---------) if s(g)=G and s(d)=D
       G  |-  D        g |- d

    The behavior of rule(Provable) is essentially the same as that of by(Provable) except that the former prefetches the uniform substitution instance during tactics applicability checking.

    pi

    the provable info for the fact to use to prove the sequent

    inst

    Transformation for instantiating additional unmatched symbols that do not occur in the conclusion. Defaults to identity transformation, i.e., no change in substitution found by unification. This transformation could also modify the unifier if other cases than the most-general unifier are preferred.

    See also

    byUS()

    by()

  31. def byUS(lemma: Lemma): BelleExpr

    byUS(lemma) proves by a uniform substitution instance of lemma.

  32. def byUS(provable: ProvableSig): BuiltInTactic

    byUS(pi) proves by a uniform substitution instance of provable (information), obtained by unification with the current goal.

    byUS(pi) proves by a uniform substitution instance of provable (information), obtained by unification with the current goal. Like by(ProvableInfo,USubst) except that the required substitution is automatically obtained by unification.

    See also

    UnifyUSCalculus.US()

  33. def byUS(pi: ProvableInfo): BelleExpr

    byUS(pi) proves by a uniform substitution instance of provable (information) or axiom or axiomatic rule, obtained by unification with the current goal.

    byUS(pi) proves by a uniform substitution instance of provable (information) or axiom or axiomatic rule, obtained by unification with the current goal. Like by(ProvableInfo,USubst) except that the required substitution is automatically obtained by unification.

    See also

    UnifyUSCalculus.US()

  34. def chase(keys: (Expression) ⇒ List[ProvableInfo], modifier: (ProvableInfo, Position) ⇒ ForwardTactic, inst: (ProvableInfo) ⇒ (Subst) ⇒ Subst = ax=>us=>us, index: (ProvableInfo) ⇒ (PosInExpr, List[PosInExpr]) = AxIndex.axiomIndex): BuiltInPositionTactic

    chase: Chases the expression at the indicated position forward until it is chased away or can't be chased further without critical choices.

    chase: Chases the expression at the indicated position forward until it is chased away or can't be chased further without critical choices.

    Chase the expression at the indicated position forward (Hilbert computation constructing the answer by proof). Follows canonical axioms toward all their recursors while there is an applicable simplifier axiom according to keys.

    keys

    maps expressions to a list of axiom names to be used for those expressions. First returned axioms will be favored (if applicable) over further axioms. Defaults to AxIndex.axiomFor().

    modifier

    will be notified after successful uses of axiom at a position with the result of the use. The result of modifier(ax,pos)(step) will be used instead of step for each step of the chase. Defaults to identity transformation, i.e., no modification in found match.

    inst

    Transformation for instantiating additional unmatched symbols that do not occur when using the given axiom _1. Defaults to identity transformation, i.e., no change in substitution found by unification. This transformation could also change the substitution if other cases than the most-general unifier are preferred.

    index

    Provides recursors to continue chase after applying an axiom from keys. Defaults to AxIndex.axiomIndex.

    Examples:
    1. When applied at 1::Nil, turns [{x'=22}](2*x+x*y>=5)' into [{x'=22}]2*x'+(x'*y+x*y')>=0

    2. ,
    3. When applied at Nil, turns [?x>0;x:=x+1;++?x=0;x:=1;]x>=1 into ((x>0->x+1>=1) & (x=0->1>=1))

    4. ,
    5. When applied at 1::Nil, turns [{x'=22}][?x>0;x:=x+1;++?x=0;x:=1;]x>=1 into [{x'=22}]((x>0->x+1>=1) & (x=0->1>=1))

    To do

    also implement a backwards chase in tableaux/sequent style based on useAt instead of useFor

    Note

    Chase is search-free and, thus, quite efficient. It directly follows the axiom index information to compute follow-up positions for the chase.

    See also

    HilbertCalculus.derive

    chaseFor()

  35. def chase(breadth: Int, giveUp: Int, keys: (Expression) ⇒ List[ProvableInfo], modifier: (ProvableInfo, Position) ⇒ ForwardTactic): BuiltInPositionTactic
  36. def chase(breadth: Int, giveUp: Int, keys: (Expression) ⇒ List[ProvableInfo]): BuiltInPositionTactic
  37. def chase(breadth: Int, giveUp: Int): BuiltInPositionTactic

    Chase with bounded breadth and giveUp to stop.

    Chase with bounded breadth and giveUp to stop.

    breadth

    how many alternative axioms to pursue locally, using the first applicable one. Equivalent to pruning keys so that all lists longer than giveUp are replaced by Nil, and then all lists are truncated beyond breadth.

    giveUp

    how many alternatives are too much so that the chase stops without trying any for applicability. Equivalent to pruning keys so that all lists longer than giveUp are replaced by Nil.

  38. val chase: BuiltInPositionTactic

    Chases the expression at the indicated position forward until it is chased away or can't be chased further without critical choices.

    Chases the expression at the indicated position forward until it is chased away or can't be chased further without critical choices. Unlike TactixLibrary.chaseAt will not branch or use propositional rules, merely transform the chosen formula in place.

    Annotations
    @Tactic( x$2 , x$3 , x$1 , x$4 , x$5 , x$6 , x$7 , x$8 , x$9 , x$10 , x$11 , x$12 )
  39. def chaseCustom(keys: (Expression) ⇒ List[(ProvableSig, PosInExpr, List[PosInExpr])]): BuiltInPositionTactic

    chaseCustom: Unrestricted form of chase where AxiomIndex is not built in, i.e.

    chaseCustom: Unrestricted form of chase where AxiomIndex is not built in, i.e. it takes keys of the form Expression => List[(Provable,PosInExpr, List[PosInExpr])] This allows customized rewriting using provables derived at runtime

  40. def chaseCustomFor(keys: (Expression) ⇒ List[(ProvableSig, PosInExpr, List[PosInExpr])]): ForwardPositionTactic
  41. def chaseFor(keys: (Expression) ⇒ List[ProvableInfo], modifier: (ProvableInfo, Position) ⇒ ForwardTactic, inst: (ProvableInfo) ⇒ (Subst) ⇒ Subst = ax=>us=>us, index: (ProvableInfo) ⇒ (PosInExpr, List[PosInExpr])): ForwardPositionTactic

    chaseFor: Chases the expression of Provables at given positions forward until it is chased away or can't be chased further without critical choices.

    chaseFor: Chases the expression of Provables at given positions forward until it is chased away or can't be chased further without critical choices.

    Chase the expression at the indicated position forward (Hilbert computation constructing the answer by proof). Follows canonical axioms toward all their recursors while there is an applicable simplifier axiom according to keys.

    keys

    maps expressions to a list of axioms/tactics to be used for those expressions. The first applicable axiom/tactic will be chosen. Defaults to AxIndex.axiomIndex.

    modifier

    will be notified after successful uses of axiom at a position with the result of the use. The result of modifier(ax,pos)(step) will be used instead of step for each step of the chase. Defaults to identity transformation, i.e., no modification in found match.

    inst

    Transformation for instantiating additional unmatched symbols that do not occur when using the given axiom. Defaults to identity transformation, i.e., no change in substitution found by unification. This transformation could also change the substitution if other cases than the most-general unifier are preferred.

    index

    The key and recursor information determining (as in AxiomInfo)

    • ._1 which subexpression of the ProvableInfo to match against.
    • ._2 which resulting recursors to continue chasing after in the resulting expression. Defaults to AxIndex.axiomIndex.
    Examples:
    1. When applied at 1::Nil, turns [{x'=22}](2*x+x*y>=5)' into [{x'=22}]2*x'+(x'*y+x*y')>=0

    2. ,
    3. When applied at Nil, turns [?x>0;x:=x+1;++?x=0;x:=1;]x>=1 into ((x>0->x+1>=1) & (x=0->1>=1))

    4. ,
    5. When applied at 1::Nil, turns [{x'=22}][?x>0;x:=x+1;++?x=0;x:=1;]x>=1 into [{x'=22}]((x>0->x+1>=1) & (x=0->1>=1))

    Note

    Chase is search-free and, thus, quite efficient. It directly follows the axiom index information to compute follow-up positions for the chase.

    See also

    chase()

    HilbertCalculus.derive

  42. def chaseFor(breadth: Int, giveUp: Int, keys: (Expression) ⇒ List[ProvableInfo], modifier: (ProvableInfo, Position) ⇒ ForwardTactic, inst: (ProvableInfo) ⇒ (Subst) ⇒ Subst, index: (ProvableInfo) ⇒ (PosInExpr, List[PosInExpr])): ForwardPositionTactic
  43. def chaseFor(breadth: Int, giveUp: Int, keys: (Expression) ⇒ List[ProvableInfo], modifier: (ProvableInfo, Position) ⇒ ForwardTactic, inst: (ProvableInfo) ⇒ (Subst) ⇒ Subst): ForwardPositionTactic
  44. def chaseFor(breadth: Int, giveUp: Int, keys: (Expression) ⇒ List[ProvableInfo], modifier: (ProvableInfo, Position) ⇒ ForwardTactic): ForwardPositionTactic
  45. def chaseI(breadth: Int, giveUp: Int, keys: (Expression) ⇒ List[ProvableInfo], modifier: (ProvableInfo, Position) ⇒ ForwardTactic, inst: (ProvableInfo) ⇒ (Subst) ⇒ Subst, index: (ProvableInfo) ⇒ (PosInExpr, List[PosInExpr])): BuiltInPositionTactic
  46. def chaseI(breadth: Int, giveUp: Int, keys: (Expression) ⇒ List[ProvableInfo], modifier: (ProvableInfo, Position) ⇒ ForwardTactic, inst: (ProvableInfo) ⇒ (Subst) ⇒ Subst): BuiltInPositionTactic
  47. def chaseI(breadth: Int, giveUp: Int, keys: (Expression) ⇒ List[ProvableInfo], inst: (ProvableInfo) ⇒ (Subst) ⇒ Subst): BuiltInPositionTactic
  48. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  49. def commuteEquivFR: ForwardPositionTactic

    commuteEquivFR commutes the equivalence at the given position (for forward tactics).

  50. def cutAt(repl: Expression): DependentPositionWithAppliedInputTactic

    cutAt(repl) cuts left/right to replace the expression at the indicated position in its context C{.} by repl.

    cutAt(repl) cuts left/right to replace the expression at the indicated position in its context C{.} by repl.

    G |- C{repl}, D   G |- C{repl}->C{c}, D
    --------------------------------------- cutAt(repl)
    G |- C{c}, D
    C{repl}, G |- D   G |- D, C{c}->C{repl}
    --------------------------------------- cutAt(repl)
    C{c}, G |- D
    Annotations
    @Tactic( x$147 , x$148 , x$149 , x$145 , x$146 , x$150 , x$151 , x$152 , x$153 , x$154 , x$155 , x$156 )
    See also

    UnifyUSCalculus.CEat(Provable)

  51. val deepChase: BuiltInPositionTactic

    Chases the expression at the indicated position forward.

    Chases the expression at the indicated position forward. Unlike chase descends into formulas and terms exhaustively.

    Annotations
    @Tactic( x$14 , x$15 , x$13 , x$16 , x$17 , x$18 , x$19 , x$20 , x$21 , x$22 , x$23 , x$24 )
  52. def either(left: ForwardTactic, right: ForwardTactic): ForwardTactic

    either(left,right) runs left if successful and right otherwise (for forward tactics).

  53. def eitherP(left: ForwardPositionTactic, right: ForwardPositionTactic): ForwardPositionTactic

    eitherP(left,right) runs left if successful and right otherwise (for forward tactics).

  54. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  55. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  56. val fail: BuiltInTactic

    fail is a tactic that always fails as being inapplicable

    fail is a tactic that always fails as being inapplicable

    Annotations
    @Tactic( macros.this.Tactic.<init>$default$1 , macros.this.Tactic.<init>$default$2 , macros.this.Tactic.<init>$default$3 , macros.this.Tactic.<init>$default$4 , macros.this.Tactic.<init>$default$5 , macros.this.Tactic.<init>$default$6 , macros.this.Tactic.<init>$default$7 , macros.this.Tactic.<init>$default$8 , macros.this.Tactic.<init>$default$9 , ... , ... , ... )
    See also

    skip

  57. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  58. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  59. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  60. def iden: ForwardTactic

    identity tactic skip that does not no anything (for forward tactics).

  61. def ifThenElse(cond: (ProvableSig) ⇒ Boolean, thenT: ForwardTactic, elseT: ForwardTactic): ForwardTactic

    ifThenElse(cond,thenT,elseT) runs thenT if cond holds and elseT otherwise (for forward tactics).

  62. def ifThenElseP(cond: (Position) ⇒ (ProvableSig) ⇒ Boolean, thenT: ForwardPositionTactic, elseT: ForwardPositionTactic): ForwardPositionTactic

    ifThenElseP(cond,thenT,elseT) runs thenT if cond holds and elseT otherwise (for forward tactics).

  63. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  64. def let(abbr: Expression, value: Expression, inner: BelleExpr): BelleExpr

    Let(abbr, value, inner) alias let abbr=value in inner abbreviates value by abbr in the provable and proceeds with an internal proof by tactic inner, resuming to the outer proof by a uniform substitution of value for abbr of the resulting provable.

  65. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  66. val nil: BuiltInTactic

    nil=skip is a no-op tactic that has no effect

    nil=skip is a no-op tactic that has no effect

    Annotations
    @Tactic( macros.this.Tactic.<init>$default$1 , macros.this.Tactic.<init>$default$2 , macros.this.Tactic.<init>$default$3 , macros.this.Tactic.<init>$default$4 , macros.this.Tactic.<init>$default$5 , macros.this.Tactic.<init>$default$6 , macros.this.Tactic.<init>$default$7 , macros.this.Tactic.<init>$default$8 , macros.this.Tactic.<init>$default$9 , ... , ... , ... )
  67. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  68. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  69. def seqCompose(first: ForwardTactic, second: ForwardTactic): ForwardTactic

    seqCompose(first,second) runs first followed by second (for forward tactics).

  70. def seqComposeP(first: ForwardPositionTactic, second: ForwardPositionTactic): ForwardPositionTactic

    seqComposeP(first,second) runs first followed by second (for forward tactics).

  71. val skip: BuiltInTactic

    skip is a no-op tactic that has no effect Identical to nil but different name

    skip is a no-op tactic that has no effect Identical to nil but different name

    Annotations
    @Tactic( macros.this.Tactic.<init>$default$1 , macros.this.Tactic.<init>$default$2 , macros.this.Tactic.<init>$default$3 , macros.this.Tactic.<init>$default$4 , macros.this.Tactic.<init>$default$5 , macros.this.Tactic.<init>$default$6 , macros.this.Tactic.<init>$default$7 , macros.this.Tactic.<init>$default$8 , macros.this.Tactic.<init>$default$9 , ... , ... , ... )
    See also

    TactixLibrary.done

  72. def stepAt(axiomIndex: (Expression) ⇒ Option[DerivationInfo]): DependentPositionTactic

    Make the canonical simplifying proof step based at the indicated position except when an unknown decision needs to be made (e.g.

    Make the canonical simplifying proof step based at the indicated position except when an unknown decision needs to be made (e.g. invariants for loops or for differential equations). Using the provided AxIndex.

    Note

    Efficient source-level indexing implementation.

    See also

    AxIndex

    UnifyUSCalculus.chase

    HilbertCalculus.stepAt

  73. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  74. def toString(): String
    Definition Classes
    AnyRef → Any
  75. val todo: BuiltInTactic

    A no-op tactic that as no effect but marks an open proof task.

    A no-op tactic that as no effect but marks an open proof task.

    Annotations
    @Tactic( macros.this.Tactic.<init>$default$1 , macros.this.Tactic.<init>$default$2 , macros.this.Tactic.<init>$default$3 , macros.this.Tactic.<init>$default$4 , macros.this.Tactic.<init>$default$5 , macros.this.Tactic.<init>$default$6 , macros.this.Tactic.<init>$default$7 , macros.this.Tactic.<init>$default$8 , macros.this.Tactic.<init>$default$9 , ... , ... , ... )
    See also

    skip,nil

  76. def uniformRename(ur: URename): BuiltInTactic

    uniformRename(ur) renames ur.what to ur.repl uniformly and vice versa.

    uniformRename(ur) renames ur.what to ur.repl uniformly and vice versa.

    See also

    edu.cmu.cs.ls.keymaerax.core.UniformRenaming

  77. def uniformRename(what: Variable, repl: Variable): BuiltInTactic

    uniformRename(what,repl) renames what to repl uniformly and vice versa.

    uniformRename(what,repl) renames what to repl uniformly and vice versa.

    See also

    edu.cmu.cs.ls.keymaerax.core.UniformRenaming

  78. def uniformRenameF(what: Variable, repl: Variable): ForwardTactic

    uniformRenameF(what,repl) renames what to repl uniformly (for forward tactics).

  79. def uniformSubstitute(subst: USubst): InputTactic

    See also

    US()

  80. def useAt(lem: Lemma): BuiltInPositionTactic

    useAt(lem)(pos) uses the given lemma at the given position in the sequent (by unifying and equivalence rewriting).

  81. def useAt(lem: Lemma, key: PosInExpr): BuiltInPositionTactic
  82. def useAt(lem: Lemma, key: PosInExpr, inst: (Option[Subst]) ⇒ Subst): BuiltInPositionTactic

    useAt(lem)(pos) uses the given lemma at the given position in the sequent (by unifying and equivalence rewriting).

    useAt(lem)(pos) uses the given lemma at the given position in the sequent (by unifying and equivalence rewriting).

    key

    the optional position of the key in the axiom to unify with.

    inst

    optional transformation augmenting or replacing the uniform substitutions after unification with additional information.

  83. def useAt(axiom: ProvableInfo, key: PosInExpr): BuiltInPositionTactic

    useAt(axiom)(pos) uses the given (derived) axiom/axiomatic rule at the given position in the sequent (by unifying and equivalence rewriting), overwriting key.

    useAt(axiom)(pos) uses the given (derived) axiom/axiomatic rule at the given position in the sequent (by unifying and equivalence rewriting), overwriting key.

    key

    the optional position of the key in the axiom to unify with.

  84. def useAt(axiom: AxiomInfo, inst: (Option[Subst]) ⇒ Subst): BuiltInPositionTactic

    useAt(axiom)(pos) uses the given (derived) axiom/axiomatic rule at the given position in the sequent (by unifying and equivalence rewriting), with a given instantiation augmentation.

    useAt(axiom)(pos) uses the given (derived) axiom/axiomatic rule at the given position in the sequent (by unifying and equivalence rewriting), with a given instantiation augmentation.

    inst

    transformation augmenting or replacing the uniform substitutions after unification with additional information.

  85. def useAt(axiom: ProvableInfo, key: PosInExpr, inst: (Option[Subst]) ⇒ Subst): BuiltInPositionTactic

    useAt(axiom)(pos) uses the given axiom/axiomatic rule at the given position in the sequent (by unifying and equivalence/implicational rewriting).

    useAt(axiom)(pos) uses the given axiom/axiomatic rule at the given position in the sequent (by unifying and equivalence/implicational rewriting). Unifies the left or right part of fact with what's found at sequent(pos) and use corresponding instance to make progress by reducing to the other side.

      G |- C{s(r)}, D
    ------------------ useAt(__l__<->r) if s=unify(c,l)
      G |- C{c}, D

    and accordingly for implication facts that are l->r facts or conditional equivalences p->(l<->r) or p->(l->r) facts and so on, where l indicates the key part of the fact. useAt automatically tries proving the required assumptions/conditions of the fact it is using.

    Backward Tableaux-style proof analogue of useFor().

    Tactic specification:

    useAt(fact)(p)(F) = let (C,c)=F(p) in
      case c of {
        s=unify(fact.left,_) => CutRight(C(s(fact.right))(p) ; <(
          "use cut": skip
          "show cut": EquivifyRight(p.top) ; CoHide(p.top) ; CE(C(_)) ; fact
        )
        s=unify(fact.right,_) => accordingly with an extra commuteEquivRightT
      }
    axiom

    describing what fact to use to simplify at the indicated position of the sequent

    key

    the part of the Formula fact to unify the indicated position of the sequent with

    inst

    Transformation for instantiating additional unmatched symbols that do not occur in fact(key). Defaults to identity transformation, i.e., no change in substitution found by unification. This transformation could also change the substitution if other cases than the most-general unifier are preferred.

    Example:
    1. useAt(AxiomInfo("[;] choice", PosInExpr(0::Nil))(0, PosInExpr(1::1::Nil)) applied to the indicated 1::1::Nil position of [x:=1;][{x'=22}] [x:=2*x;++x:=0;]x>=0 turns it into [x:=1;][{x'=22}] ([x:=2*x;]x>=0 & [x:=0;]x>=0)

    To do

    could directly use prop rules instead of CE if key close to HereP if more efficient.

    See also

    useFor()

  86. def useAt(axiom: ProvableInfo): BuiltInPositionTactic

    useAt(axiom)(pos) uses the given (derived) axiom/axiomatic rule at the given position in the sequent (by unifying and equivalence rewriting).

  87. def useExpansionAt(axiom: AxiomInfo): BuiltInPositionTactic

    useExpansionAt(axiom)(pos) uses the given axiom at the given position in the sequent (by unifying and equivalence rewriting) in the direction that expands as opposed to simplifies operators.

    useExpansionAt(axiom)(pos) uses the given axiom at the given position in the sequent (by unifying and equivalence rewriting) in the direction that expands as opposed to simplifies operators.

    See also

    useAt(AxiomInfo)

  88. def useFor(fact: ProvableSig, key: PosInExpr, inst: (Subst) ⇒ Subst = us => us): ForwardPositionTactic

    useFor(fact,key,inst) use the key part of the given fact forward for the selected position in the given Provable to conclude a new Provable Forward Hilbert-style proof analogue of useAtImpl().

    useFor(fact,key,inst) use the key part of the given fact forward for the selected position in the given Provable to conclude a new Provable Forward Hilbert-style proof analogue of useAtImpl().

      G |- C{c}, D
    ------------------ useFor(__l__<->r) if s=unify(c,l)
      G |- C{s(r)}, D

    and accordingly for facts that are l->r facts or conditional p->(l<->r) or p->(l->r) facts and so on, where l indicates the key part of the fact. useAt automatically tries proving the required assumptions/conditions of the fact it is using.

    For facts of the form

    prereq -> (left<->right)

    this tactic currently only uses master to prove prereq globally and otherwise gives up.

    fact

    the Provable fact whose conclusion to use to simplify at the indicated position of the sequent

    key

    the part of the fact's conclusion to unify the indicated position of the sequent with

    inst

    Transformation for instantiating additional unmatched symbols that do not occur in fact.conclusion(key). Defaults to identity transformation, i.e., no change in substitution found by unification. This transformation could also change the substitution if other cases than the most-general unifier are preferred.

    Example:
    1. useFor(Axiom.axiom(Ax.composeb), PosInExpr(0::Nil)) applied to the indicated 1::1::Nil of [x:=1;][{x'=22}][x:=2*x;++x:=0;]x>=0 turns it into [x:=1;][{x'=22}] ([x:=2*x;]x>=0 & [x:=0;]x>=0)

    See also

    useAtImpl()

    edu.cmu.cs.ls.keymaerax.btactics

  89. def useFor(axiom: ProvableInfo, inst: (Subst) ⇒ Subst): ForwardPositionTactic
  90. def useFor(pi: ProvableInfo, key: PosInExpr, inst: (Subst) ⇒ Subst): ForwardPositionTactic

    useFor(pi, key) use the key part of the given axiom or provable info forward for the selected position in the given Provable to conclude a new Provable

    useFor(pi, key) use the key part of the given axiom or provable info forward for the selected position in the given Provable to conclude a new Provable

    key

    the optional position of the key in the axiom to unify with. Defaults to AxiomInfo.theKey

    inst

    optional transformation augmenting or replacing the uniform substitutions after unification with additional information. Defaults to no change.

  91. def useFor(axiom: ProvableInfo, key: PosInExpr): ForwardPositionTactic
  92. def useFor(axiom: ProvableInfo): ForwardPositionTactic

    useFor(axiom) use the given (derived) axiom/axiomatic rule forward for the selected position in the given Provable to conclude a new Provable

  93. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  94. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  95. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Deprecated Value Members

  1. def by(fact: ⇒ ProvableSig, name: String = TacticFactory.ANON): BuiltInTactic

    by(provable) uses the given Provable literally to continue or close the proof (if it fits to what has been proved so far)

    by(provable) uses the given Provable literally to continue or close the proof (if it fits to what has been proved so far)

    fact

    the Provable to drop into the proof to proceed or close it if proved.

    name

    the name to use/record for the tactic

    Annotations
    @deprecated
    Deprecated

    use by(ProvableInfo) instead if possible.

Inherited from AnyRef

Inherited from Any

Ungrouped