idris-proof-script-mode 接受什么语言?
What language is accepted by idris-proof-script-mode?
在 Emacs 中,idris-mode 20200522.808,当我使用 C-c C-l
加载文件时,我看到了一个漏洞列表,以及消息“按 [P] 按钮解决漏洞在证明者中交互。"
证明者由两个windows、*idris-proof-obligations*
和*idris-proof-script*
组成。但我无法弄清楚这应该如何工作。我尝试输入与在命令行证明程序中使用的相同类型的术语,例如 intro `{{x}}
和 rewriteWith mylemma
,但是当我输入 M-n
以“前进”时,我得到了这些错误消息:
Prover error: (input):1:7:
|
1 | intro ‘{{n}}
| ^
unexpected ’‘’
expecting end of input or name
Prover error: (input):1:8:
|
1 | rewriteWith sym (fibAuxEq 0 1 n)
| ^
unexpected ’W’
expecting tactic
我应该怎么做?
它接受 the old theorem prover 语言的证明策略,该语言已被弃用。
在 Emacs 中,idris-mode 20200522.808,当我使用 C-c C-l
加载文件时,我看到了一个漏洞列表,以及消息“按 [P] 按钮解决漏洞在证明者中交互。"
证明者由两个windows、*idris-proof-obligations*
和*idris-proof-script*
组成。但我无法弄清楚这应该如何工作。我尝试输入与在命令行证明程序中使用的相同类型的术语,例如 intro `{{x}}
和 rewriteWith mylemma
,但是当我输入 M-n
以“前进”时,我得到了这些错误消息:
Prover error: (input):1:7:
|
1 | intro ‘{{n}}
| ^
unexpected ’‘’
expecting end of input or name
Prover error: (input):1:8:
|
1 | rewriteWith sym (fibAuxEq 0 1 n)
| ^
unexpected ’W’
expecting tactic
我应该怎么做?
它接受 the old theorem prover 语言的证明策略,该语言已被弃用。