90 lines
2.2 KiB
Text
90 lines
2.2 KiB
Text
meta def mytac :=
|
||
state_t (name_map nat) tactic
|
||
|
||
section
|
||
local attribute [reducible] mytac
|
||
meta instance : monad mytac := by apply_instance
|
||
meta instance : monad_state_lift (name_map nat) tactic mytac := by apply_instance
|
||
meta instance : has_monad_lift tactic mytac := by apply_instance
|
||
end
|
||
|
||
meta instance (α : Type) : has_coe (tactic α) (mytac α) :=
|
||
⟨monad_lift⟩
|
||
|
||
namespace mytac
|
||
|
||
meta def step {α : Type} (t : mytac α) : mytac unit :=
|
||
t >> return ()
|
||
|
||
meta def istep {α : Type} (line0 col0 line col : nat) (t : mytac α) : mytac unit :=
|
||
⟨λ v s, result.cases_on (@scope_trace _ line col (λ_, t.run v s))
|
||
(λ ⟨a, v⟩ new_s, result.success ((), v) new_s)
|
||
(λ opt_msg_thunk e new_s,
|
||
match opt_msg_thunk with
|
||
| some msg_thunk :=
|
||
let msg := λ _ : unit, msg_thunk () ++ format.line ++ to_fmt "value: " ++ to_fmt v ++ format.line ++ to_fmt "state:" ++ format.line ++ new_s^.to_format in
|
||
interaction_monad.result.exception (some msg) (some ⟨line, col⟩) new_s
|
||
| none := interaction_monad.silent_fail new_s
|
||
end)⟩
|
||
|
||
meta def execute (tac : mytac unit) : tactic unit :=
|
||
tac.run (name_map.mk nat) >> return ()
|
||
|
||
meta def save_info (p : pos) : mytac unit :=
|
||
do v ← get,
|
||
s ← tactic.read,
|
||
tactic.save_info_thunk p
|
||
(λ _, to_fmt "Custom state: " ++ to_fmt v ++ format.line ++
|
||
tactic_state.to_format s)
|
||
|
||
namespace interactive
|
||
meta def intros : mytac unit :=
|
||
tactic.intros >> return ()
|
||
|
||
meta def constructor : mytac unit :=
|
||
tactic.constructor >> return ()
|
||
|
||
meta def trace (s : string) : mytac unit :=
|
||
tactic.trace s
|
||
|
||
meta def assumption : mytac unit :=
|
||
tactic.assumption
|
||
|
||
open lean.parser
|
||
open interactive
|
||
open interactive.types
|
||
|
||
meta def add (n : parse ident) (v : nat) : mytac punit :=
|
||
modify (λ m, m.insert n v)
|
||
|
||
end interactive
|
||
end mytac
|
||
|
||
lemma ex₁ (p q : Prop) : p → q → p ∧ q :=
|
||
begin [mytac]
|
||
intros,
|
||
add x 10,
|
||
trace "test",
|
||
--^ "command": "info"
|
||
constructor,
|
||
add y 20,
|
||
assumption,
|
||
--^ "command": "info"
|
||
assumption
|
||
end
|
||
|
||
#print ex₁
|
||
|
||
lemma ex₂ (p q : Prop) : p → q → p ∧ q :=
|
||
begin [mytac]
|
||
intros,
|
||
add x 10,
|
||
trace "test",
|
||
constructor,
|
||
add y 20,
|
||
assumption,
|
||
--^ "command": "info"
|
||
assumption
|
||
end
|
||
|
||
#print ex₂
|