lean4-htt/tests/lean/run/dsimp_test.lean

78 lines
1.4 KiB
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

def f : nat → nat
| 0 := 10
| (n+1) := 20 + n
open list tactic
local attribute [-simp] map head
example (a b c : nat) : head (map f [1, 2, 3]) = 20 :=
begin
dsimp [map],
guard_target head [f 1, f 2, f 3] = 20,
dsimp [f],
guard_target head [20 + 0, 20 + 1, 20 + 2] = 20,
dsimp [head],
guard_target 20 + 0 = 20,
reflexivity
end
example (a b c : nat) : head (map f [1, 2, 3]) = 20 :=
begin
dsimp [map, f, head],
guard_target 20 + 0 = 20,
reflexivity
end
@[simp] lemma succ_zero_eq_one : nat.succ 0 = 1 :=
rfl
def g : nat × nat → nat
| (a, b) := a + b
lemma gax (x y) : g (x, y) = x + y :=
rfl
attribute [simp] gax
example (a b c : nat) : g (f 1, f 2) = 41 :=
begin
dsimp,
guard_target f 1 + f 2 = 41,
dsimp [f],
reflexivity
end
example (a b c : nat) : g (f 1, f 2) = 41 :=
begin
dsimp [f],
guard_target 20 + 0 + (20 + 1) = 41,
reflexivity
end
example (a b c : nat) : g (f 1, f 2) = 41 :=
begin
dsimp [f] without gax,
guard_target g (20 + 0, 20 + 1) = 41,
dsimp [g],
guard_target 20 + 0 + (20 + 1) = 41,
reflexivity
end
local attribute [-simp] gax
example (a b c : nat) : g (f 1, f 2) = 41 :=
begin
dsimp [f],
guard_target g (20 + 0, 20 + 1) = 41,
dsimp [gax],
guard_target 20 + 0 + (20 + 1) = 41,
reflexivity
end
example (a b c : nat) : g (f 1, f 2) = 41 :=
begin
dsimp [f, gax],
guard_target 20 + 0 + (20 + 1) = 41,
reflexivity
end