This PR deprecates the tactics `simp_arith`, `simp_arith!`, `simp_all_arith` and `simp_all_arith!`. Users can just use the `+arith` option.
7 lines
107 B
Text
7 lines
107 B
Text
def f (x : Nat) := x + 1
|
|
|
|
def g (x : Nat) := f x + f x
|
|
|
|
example : g x > 0 := by
|
|
unfold g f
|
|
simp +arith
|