]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/matita/contribs/ng_assembly/common/option.ma
Release 0.5.9.
[helm.git] / helm / software / matita / contribs / ng_assembly / common / option.ma
index 62da6590013f8edc1d5c9518904ccb96a8ae4ac0..0b71c17e4223c7ef6d1cb768922ec042e336c119 100644 (file)
@@ -16,7 +16,7 @@
 (*                          Progetto FreeScale                            *)
 (*                                                                        *)
 (*   Sviluppato da: Ing. Cosimo Oliboni, oliboni@cs.unibo.it              *)
-(*   Sviluppo: 2008-2010                                                  *)
+(*   Ultima modifica: 05/08/2009                                          *)
 (*                                                                        *)
 (* ********************************************************************** *)
 
@@ -31,7 +31,7 @@ ninductive option (A:Type) : Type ≝
 | Some : A → option A.
 
 ndefinition eq_option ≝
-λT.λf:T → T → bool.λop1,op2:option T.
+λT.λop1,op2:option T.λf:T → T → bool.
  match op1 with
   [ None ⇒ match op2 with [ None ⇒ true | Some _ ⇒ false ]
   | Some x1 ⇒ match op2 with [ None ⇒ false | Some x2 ⇒ f x1 x2 ]