fix(init/meta): fix build
This commit is contained in:
parent
47c3c0ba84
commit
4d5d2abcba
2 changed files with 2 additions and 2 deletions
|
|
@ -22,7 +22,7 @@ meta def step {α : Type} (tac : smt_tactic α) : smt_tactic unit :=
|
|||
tac >> solve_goals
|
||||
|
||||
meta def istep {α : Type} (line0 col0 line col : nat) (tac : smt_tactic α) : smt_tactic unit :=
|
||||
λ ss ts, (@scope_trace _ line col ((tac >> solve_goals) ss ts)).clamp_pos line0 line col
|
||||
λ ss ts, (@scope_trace _ line col (λ _, (tac >> solve_goals) ss ts)).clamp_pos line0 line col
|
||||
|
||||
meta def execute (tac : smt_tactic unit) : tactic unit :=
|
||||
using_smt tac
|
||||
|
|
|
|||
|
|
@ -477,7 +477,7 @@ meta def step {α : Type u} (t : tactic α) : tactic unit :=
|
|||
t >>[tactic] cleanup
|
||||
|
||||
meta def istep {α : Type u} (line0 col0 : ℕ) (line col : ℕ) (t : tactic α) : tactic unit :=
|
||||
λ s, (@scope_trace _ line col (step t s)).clamp_pos line0 line col
|
||||
λ s, (@scope_trace _ line col (λ _, step t s)).clamp_pos line0 line col
|
||||
|
||||
meta def is_prop (e : expr) : tactic bool :=
|
||||
do t ← infer_type e,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue