fix(tests/lean/slow): adjust tests
This commit is contained in:
parent
9dc0388022
commit
230b994e79
2 changed files with 4 additions and 4 deletions
|
@ -4,7 +4,7 @@
|
|||
-- Author: Floris van Doorn
|
||||
----------------------------------------------------------------------------------------------------
|
||||
import logic algebra.binary
|
||||
open tactic binary eq.ops eq
|
||||
open binary eq.ops eq
|
||||
open decidable
|
||||
namespace experiment
|
||||
definition refl := @eq.refl
|
||||
|
@ -27,7 +27,7 @@ definition to_nat [coercion] (n : num) : ℕ
|
|||
:= num.rec zero (λ n, pos_num.rec (succ zero) (λ n r, plus r (plus r (succ zero))) (λ n r, plus r r) n) n
|
||||
|
||||
namespace helper_tactics
|
||||
definition apply_refl := apply @refl
|
||||
definition apply_refl := tactic.apply @refl
|
||||
tactic_hint apply_refl
|
||||
end helper_tactics
|
||||
open helper_tactics
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
-- Author: Floris van Doorn
|
||||
----------------------------------------------------------------------------------------------------
|
||||
import logic algebra.binary
|
||||
open tactic binary eq.ops eq
|
||||
open binary eq.ops eq
|
||||
open decidable
|
||||
|
||||
namespace experiment
|
||||
|
@ -23,7 +23,7 @@ definition to_nat [coercion] (n : num) : ℕ
|
|||
:= num.rec zero (λ n, pos_num.rec (succ zero) (λ n r, plus r (plus r (succ zero))) (λ n r, plus r r) n) n
|
||||
|
||||
namespace helper_tactics
|
||||
definition apply_refl := apply @eq.refl
|
||||
definition apply_refl := tactic.apply @eq.refl
|
||||
tactic_hint apply_refl
|
||||
end helper_tactics
|
||||
open helper_tactics
|
||||
|
|
Loading…
Reference in a new issue