Packages

object Derive extends Derive

Linear Supertypes
Derive, UnifyUSCalculus, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Derive
  2. Derive
  3. UnifyUSCalculus
  4. AnyRef
  5. 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.

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

    Definition Classes
    UnifyUSCalculus
  2. type ForwardTactic = (ProvableSig) ⇒ ProvableSig

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

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

    Definition Classes
    UnifyUSCalculus
  3. type Subst = RenUSubst

    The (generalized) substitutions used for unification

    The (generalized) substitutions used for unification

    Definition Classes
    UnifyUSCalculus

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))
    Definition Classes
    UnifyUSCalculus
    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.

    Definition Classes
    UnifyUSCalculus
    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).

    Definition Classes
    UnifyUSCalculus
    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)

    Definition Classes
    UnifyUSCalculus
  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
    Definition Classes
    UnifyUSCalculus
    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.

    Definition Classes
    UnifyUSCalculus
    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.

    Definition Classes
    UnifyUSCalculus
    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}
    Definition Classes
    UnifyUSCalculus
    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
    Definition Classes
    UnifyUSCalculus
    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.

    Definition Classes
    UnifyUSCalculus
    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.

    Definition Classes
    UnifyUSCalculus
    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.

    Definition Classes
    UnifyUSCalculus
    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.

    Definition Classes
    UnifyUSCalculus
    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. lazy val Dand: BuiltInPositionTactic

    Dand: &' derives a conjunction (p(x)&q(x))' to obtain p(x)' & q(x)'

    Dand: &' derives a conjunction (p(x)&q(x))' to obtain p(x)' & q(x)'

    Definition Classes
    Derive
  18. lazy val Dcompose: BuiltInPositionTactic

    Dcompose: o' derives a function composition by chain rule

    Dcompose: o' derives a function composition by chain rule

    Definition Classes
    Derive
  19. lazy val Dconst: BuiltInPositionTactic

    Dconst: c()' derives a constant c()' = 0

    Dconst: c()' derives a constant c()' = 0

    Definition Classes
    Derive
  20. lazy val Dequal: BuiltInPositionTactic

    Dequal: =' derives an equation (f(x)=g(x))' to obtain f(x)'=g(x)'

    Dequal: =' derives an equation (f(x)=g(x))' to obtain f(x)'=g(x)'

    Definition Classes
    Derive
  21. lazy val Dexists: BuiltInPositionTactic

    Dexists: \exists' derives an exists quantifier

    Dexists: \exists' derives an exists quantifier

    Definition Classes
    Derive
  22. lazy val Dforall: BuiltInPositionTactic

    Dforall: \forall' derives an all quantifier (\forall x p(x))' to obtain \forall x (p(x)')

    Dforall: \forall' derives an all quantifier (\forall x p(x))' to obtain \forall x (p(x)')

    Definition Classes
    Derive
  23. lazy val Dgreater: BuiltInPositionTactic

    Dgreater: >' derives greater-than (f(x)>g(x))' to obtain f(x)'>=g(x)'

    Dgreater: >' derives greater-than (f(x)>g(x))' to obtain f(x)'>=g(x)'

    Definition Classes
    Derive
  24. lazy val Dgreaterequal: BuiltInPositionTactic

    Dgreaterequal: >=' derives a greater-or-equal (f(x)>=g(x))' to obtain f(x)'>=g(x)'

    Dgreaterequal: >=' derives a greater-or-equal (f(x)>=g(x))' to obtain f(x)'>=g(x)'

    Definition Classes
    Derive
  25. lazy val Dimply: BuiltInPositionTactic

    Dimply: ->' derives an implication (p(x)->q(x))' to obtain (!p(x) | q(x))'

    Dimply: ->' derives an implication (p(x)->q(x))' to obtain (!p(x) | q(x))'

    Definition Classes
    Derive
  26. lazy val Dless: BuiltInPositionTactic

    Dless: <' derives less-than (f(x)⟨g(x))' to obtain f(x)'<=g(x)'

    Dless: <' derives less-than (f(x)⟨g(x))' to obtain f(x)'<=g(x)'

    Definition Classes
    Derive
  27. lazy val Dlessequal: BuiltInPositionTactic

    Dlessequal: <=' derives a less-or-equal (f(x)<=g(x))' to obtain f(x)'<=g(x)'

    Dlessequal: <=' derives a less-or-equal (f(x)<=g(x))' to obtain f(x)'<=g(x)'

    Definition Classes
    Derive
  28. lazy val Dminus: BuiltInPositionTactic

    Dminus: -' derives a difference (f(x)-g(x))' = (f(x))' - (g(x))'

    Dminus: -' derives a difference (f(x)-g(x))' = (f(x))' - (g(x))'

    Definition Classes
    Derive
  29. lazy val Dneg: BuiltInPositionTactic

    neg: -' derives unary negation (-f(x))' = -(f(x)')

    neg: -' derives unary negation (-f(x))' = -(f(x)')

    Definition Classes
    Derive
  30. lazy val Dnotequal: BuiltInPositionTactic

    Dnotequal: !=' derives a disequation (f(x)!=g(x))' to obtain f(x)'=g(x)'

    Dnotequal: !=' derives a disequation (f(x)!=g(x))' to obtain f(x)'=g(x)'

    Definition Classes
    Derive
  31. lazy val Dor: BuiltInPositionTactic

    Dor: |' derives a disjunction (p(x)|q(x))' to obtain p(x)' & q(x)'

    Dor: |' derives a disjunction (p(x)|q(x))' to obtain p(x)' & q(x)'

    Definition Classes
    Derive
  32. lazy val Dplus: BuiltInPositionTactic

    Dplus: +' derives a sum (f(x)+g(x))' = (f(x))' + (g(x))'

    Dplus: +' derives a sum (f(x)+g(x))' = (f(x))' + (g(x))'

    Definition Classes
    Derive
  33. lazy val Dpower: BuiltInPositionTactic

    Dpower: ^' derives a power

    Dpower: ^' derives a power

    Definition Classes
    Derive
  34. lazy val Dquotient: BuiltInPositionTactic

    Dquotient: /' derives a quotient (f(x)/g(x))' = (f(x)'*g(x) - f(x)*g(x)') / (g(x)^2)

    Dquotient: /' derives a quotient (f(x)/g(x))' = (f(x)'*g(x) - f(x)*g(x)') / (g(x)^2)

    Definition Classes
    Derive
  35. lazy val Dtimes: BuiltInPositionTactic

    Dtimes: *' derives a product (f(x)*g(x))' = f(x)'*g(x) + f(x)*g(x)'

    Dtimes: *' derives a product (f(x)*g(x))' = f(x)'*g(x) + f(x)*g(x)'

    Definition Classes
    Derive
  36. lazy val Dvar: DependentPositionTactic

    Dvariable: x' derives a variable (x)' = x' Syntactically derives a differential of a variable to a differential symbol.

    Dvariable: x' derives a variable (x)' = x' Syntactically derives a differential of a variable to a differential symbol.

    G |- x'=f, D
    --------------
    G |- (x)'=f, D
    Definition Classes
    Derive
    Annotations
    @Tactic( x$1 , x$4 , x$5 , x$6 , x$2 , x$7 , x$8 , x$3 , x$9 , x$10 , x$11 , x$12 )
    Examples:
    1. |- x'=1
      ----------Dvariable(1, 0::Nil)
      |- (x)'=1
    2. ,
    3. |- [z':=1;]z'=1
      ------------------Dvariable(1, 1::0::Nil)
      |- [z':=1;](z)'=1
  37. 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.

    Definition Classes
    UnifyUSCalculus
    See also

    byUS()

  38. 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.

    Definition Classes
    UnifyUSCalculus
    See also

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

    ProvableInfo)

  39. 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.

    Definition Classes
    UnifyUSCalculus
    See also

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

    ProvableInfo)

  40. 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).

    Definition Classes
    UnifyUSCalculus
    See also

    US(USubst,ProvableSig)

  41. def USX(S: List[SubstitutionPair]): InputTactic
    Definition Classes
    UnifyUSCalculus
    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 )
  42. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  43. 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).

    Definition Classes
    UnifyUSCalculus
    See also

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

  44. 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.

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

    Definition Classes
    UnifyUSCalculus
  45. def by(lemma: Lemma, subst: USubst): BelleExpr
    Definition Classes
    UnifyUSCalculus
  46. def by(pi: ProvableInfo, subst: Subst): BelleExpr
    Definition Classes
    UnifyUSCalculus
  47. 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.

    Definition Classes
    UnifyUSCalculus
    See also

    byUS()

  48. def by(lemma: Lemma): BelleExpr
    Definition Classes
    UnifyUSCalculus
  49. 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.

    Definition Classes
    UnifyUSCalculus
  50. 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.

    Definition Classes
    UnifyUSCalculus
    See also

    byUS()

    by()

  51. def byUS(lemma: Lemma): BelleExpr

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

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

    Definition Classes
    UnifyUSCalculus
  52. 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.

    Definition Classes
    UnifyUSCalculus
    See also

    UnifyUSCalculus.US()

  53. 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.

    Definition Classes
    UnifyUSCalculus
    See also

    UnifyUSCalculus.US()

  54. 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.

    Definition Classes
    UnifyUSCalculus
    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()

  55. def chase(breadth: Int, giveUp: Int, keys: (Expression) ⇒ List[ProvableInfo], modifier: (ProvableInfo, Position) ⇒ ForwardTactic): BuiltInPositionTactic
    Definition Classes
    UnifyUSCalculus
  56. def chase(breadth: Int, giveUp: Int, keys: (Expression) ⇒ List[ProvableInfo]): BuiltInPositionTactic
    Definition Classes
    UnifyUSCalculus
  57. 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.

    Definition Classes
    UnifyUSCalculus
  58. 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.

    Definition Classes
    UnifyUSCalculus
    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 )
  59. 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

    Definition Classes
    UnifyUSCalculus
  60. def chaseCustomFor(keys: (Expression) ⇒ List[(ProvableSig, PosInExpr, List[PosInExpr])]): ForwardPositionTactic
    Definition Classes
    UnifyUSCalculus
  61. 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.
    Definition Classes
    UnifyUSCalculus
    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

  62. def chaseFor(breadth: Int, giveUp: Int, keys: (Expression) ⇒ List[ProvableInfo], modifier: (ProvableInfo, Position) ⇒ ForwardTactic, inst: (ProvableInfo) ⇒ (Subst) ⇒ Subst, index: (ProvableInfo) ⇒ (PosInExpr, List[PosInExpr])): ForwardPositionTactic
    Definition Classes
    UnifyUSCalculus
  63. def chaseFor(breadth: Int, giveUp: Int, keys: (Expression) ⇒ List[ProvableInfo], modifier: (ProvableInfo, Position) ⇒ ForwardTactic, inst: (ProvableInfo) ⇒ (Subst) ⇒ Subst): ForwardPositionTactic
    Definition Classes
    UnifyUSCalculus
  64. def chaseFor(breadth: Int, giveUp: Int, keys: (Expression) ⇒ List[ProvableInfo], modifier: (ProvableInfo, Position) ⇒ ForwardTactic): ForwardPositionTactic
    Definition Classes
    UnifyUSCalculus
  65. def chaseI(breadth: Int, giveUp: Int, keys: (Expression) ⇒ List[ProvableInfo], modifier: (ProvableInfo, Position) ⇒ ForwardTactic, inst: (ProvableInfo) ⇒ (Subst) ⇒ Subst, index: (ProvableInfo) ⇒ (PosInExpr, List[PosInExpr])): BuiltInPositionTactic
    Definition Classes
    UnifyUSCalculus
  66. def chaseI(breadth: Int, giveUp: Int, keys: (Expression) ⇒ List[ProvableInfo], modifier: (ProvableInfo, Position) ⇒ ForwardTactic, inst: (ProvableInfo) ⇒ (Subst) ⇒ Subst): BuiltInPositionTactic
    Definition Classes
    UnifyUSCalculus
  67. def chaseI(breadth: Int, giveUp: Int, keys: (Expression) ⇒ List[ProvableInfo], inst: (ProvableInfo) ⇒ (Subst) ⇒ Subst): BuiltInPositionTactic
    Definition Classes
    UnifyUSCalculus
  68. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  69. def commuteEquivFR: ForwardPositionTactic

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

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

    Definition Classes
    UnifyUSCalculus
  70. 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
    Definition Classes
    UnifyUSCalculus
    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)

  71. 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.

    Definition Classes
    UnifyUSCalculus
    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 )
  72. def either(left: ForwardTactic, right: ForwardTactic): ForwardTactic

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

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

    Definition Classes
    UnifyUSCalculus
  73. def eitherP(left: ForwardPositionTactic, right: ForwardPositionTactic): ForwardPositionTactic

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

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

    Definition Classes
    UnifyUSCalculus
  74. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  75. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  76. val fail: BuiltInTactic

    fail is a tactic that always fails as being inapplicable

    fail is a tactic that always fails as being inapplicable

    Definition Classes
    UnifyUSCalculus
    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

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

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

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

    Definition Classes
    UnifyUSCalculus
  81. 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).

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

    Definition Classes
    UnifyUSCalculus
  82. 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).

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

    Definition Classes
    UnifyUSCalculus
  83. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  84. 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.

    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.

    Definition Classes
    UnifyUSCalculus
  85. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  86. 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

    Definition Classes
    UnifyUSCalculus
    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 , ... , ... , ... )
  87. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  88. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  89. def seqCompose(first: ForwardTactic, second: ForwardTactic): ForwardTactic

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

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

    Definition Classes
    UnifyUSCalculus
  90. def seqComposeP(first: ForwardPositionTactic, second: ForwardPositionTactic): ForwardPositionTactic

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

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

    Definition Classes
    UnifyUSCalculus
  91. 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

    Definition Classes
    UnifyUSCalculus
    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

  92. 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.

    Definition Classes
    UnifyUSCalculus
    Note

    Efficient source-level indexing implementation.

    See also

    AxIndex

    UnifyUSCalculus.chase

    HilbertCalculus.stepAt

  93. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  94. def toString(): String
    Definition Classes
    AnyRef → Any
  95. 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.

    Definition Classes
    UnifyUSCalculus
    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

  96. 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.

    Definition Classes
    UnifyUSCalculus
    See also

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

  97. 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.

    Definition Classes
    UnifyUSCalculus
    See also

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

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

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

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

    Definition Classes
    UnifyUSCalculus
  99. def uniformSubstitute(subst: USubst): InputTactic

    Definition Classes
    UnifyUSCalculus
    See also

    US()

  100. def useAt(lem: Lemma): 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).

    Definition Classes
    UnifyUSCalculus
  101. def useAt(lem: Lemma, key: PosInExpr): BuiltInPositionTactic
    Definition Classes
    UnifyUSCalculus
  102. 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.

    Definition Classes
    UnifyUSCalculus
  103. 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.

    Definition Classes
    UnifyUSCalculus
  104. 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.

    Definition Classes
    UnifyUSCalculus
  105. 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.

    Definition Classes
    UnifyUSCalculus
    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()

  106. 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).

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

    Definition Classes
    UnifyUSCalculus
  107. 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.

    Definition Classes
    UnifyUSCalculus
    See also

    useAt(AxiomInfo)

  108. 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.

    Definition Classes
    UnifyUSCalculus
    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

  109. def useFor(axiom: ProvableInfo, inst: (Subst) ⇒ Subst): ForwardPositionTactic
    Definition Classes
    UnifyUSCalculus
  110. 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.

    Definition Classes
    UnifyUSCalculus
  111. def useFor(axiom: ProvableInfo, key: PosInExpr): ForwardPositionTactic
    Definition Classes
    UnifyUSCalculus
  112. 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

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

    Definition Classes
    UnifyUSCalculus
  113. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  114. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  115. 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

    Definition Classes
    UnifyUSCalculus
    Annotations
    @deprecated
    Deprecated

    use by(ProvableInfo) instead if possible.

Inherited from Derive

Inherited from UnifyUSCalculus

Inherited from AnyRef

Inherited from Any

Ungrouped