3
獲取假名'類型
我正在尋找一種通過它的名字獲得假名以匹配它的方法。就像這樣:Ltac:從名稱
Ltac mytactic h_name :=
let h := hyp_from_name h_name in
match h with
| _ /\ _ => do_something
| _ => print_error_message
end
.
這將是像這樣使用:
H0 : A /\ B
==================
A
Coq < mytactic H0.
感謝。