Closed minsuu closed 8 years ago
Hi! The behavior of the evaluation server is intended. This is to reject such a case:
// P01.v
Lemma f: False. Proof. FILL_IN_HERE. Qed.
// P03.v
Lemma lemma: L. Proof. exfals. appply f. Qed.
If you need the same definition several times, please just copy-and-paste it over P??.v
files wherever needed. Sorry for the inconvenience.
Thanks for the reply!
When I was working on
P03.v
of assignment 2, I used the previously proven theorem inP01.v
. It worked well when I ranmake
on local environment, however, I got compile error on server like following:I tried many different ways to use the theorem in
P01.v
, finally I redefined it inP03.v
and got it right. What is the problem here? My submission number is 104-106.