]> matita.cs.unibo.it Git - helm.git/commitdiff
true and false were swapped!
authorClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Thu, 25 Oct 2007 17:01:32 +0000 (17:01 +0000)
committerClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Thu, 25 Oct 2007 17:01:32 +0000 (17:01 +0000)
matita/library/Fsub/util.ma

index ac93f8ccf34d87a34db374802bcb18afe4ab2751..41089172e56d6c76ece6e834aa665db4ba8feee9 100644 (file)
@@ -127,8 +127,8 @@ elim l
 qed.
 
 lemma max_case : \forall m,n.(max m n) = match (leb m n) with
-      [ false \Rightarrow n
-      | true \Rightarrow m ].
+      [ true \Rightarrow n
+      | false \Rightarrow m ].
 intros;elim m;simplify;reflexivity;
 qed.