我试图在 Coq 中证明一个定理,但我无法解决出现的问题。我正在尝试解决:
forall A B C: Prop, A\/(B\/C)->(A\/B)\/C.
Proof.
intros.
destruct H as [H1 | [H2 | H3 ]].
Case H1.
and in this last line I get the following error "Error: The reference Case was not found in the current environment."
我是 Coq 的新手,所以我不知道这到底意味着什么。我在互联网上做了一些研究,但我没有设法找到解决方案。有谁知道这个问题来自哪里?