0

我试图弄清楚 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

我错过了什么?

4

1 回答 1

0

对此没有什么可做的,因为这些练习必须手动评分。如果您将其上交家庭作业,则必须仔细检查您是否自己完成了所有手动练习。如果您正在自学,您可以通过None.Some (1, ""%string).

于 2020-10-28T18:27:56.610 回答