我试图弄清楚 LF 测试脚本在从终端运行时如何输出手动评分的作业。例如,如果您查看Induction.v
一个名为“plus_comm_informal
我正在尝试获取测试脚本”的练习,以获取InductionTest.v
我编写的评论或内容。所以我做了以下尝试猴子调试。
(** **** Exercise: 2 stars, advanced, especially useful (plus_comm_informal)
Translate your solution for [plus_comm] into an informal proof:
Theorem: Addition is commutative.
Proof: (* Let's see how this works! 1*)
Let's see how this works! 2
*)
(** Let's see how this works! 3 *)
(* Let's see how this works! 4 *)
(* Do not modify the following line: *)
Definition manual_grade_for_plus_comm_informal : option (nat*string) := None.
(** [] *)
我保存了文件。然后我编译文件,coqc -Q . LF .\Induction.v
然后运行测试文件coqc -Q . LF .\InductionTest.v
它的输出并没有给我在手动评分练习中传递的任何评论。终端输出的相关部分如下。
------------------- plus_comm_informal --------------------
#> Manually graded: plus_comm_informal
Advanced
Possible points: 2
Score: Ungraded
Comment: None
我错过了什么?