]> matita.cs.unibo.it Git - helm.git/commitdiff
the interpretation for Sigma was missing
authorFerruccio Guidi <ferruccio.guidi@unibo.it>
Wed, 9 Mar 2011 11:59:38 +0000 (11:59 +0000)
committerFerruccio Guidi <ferruccio.guidi@unibo.it>
Wed, 9 Mar 2011 11:59:38 +0000 (11:59 +0000)
matita/matita/lib/basics/types.ma

index c14cc60b4bf4f32ef21f34965932982f2fafdc44..08b99a8cb552165d09f203353a95c77625ac45c2 100644 (file)
@@ -56,4 +56,6 @@ inductive option (A:Type[0]) : Type[0] ≝
 
 (* sigma *)
 inductive Sig (A:Type[0]) (f:A→Type[0]) : Type[0] ≝
-  dp: ∀a:A.(f a)→Sig A f.
\ No newline at end of file
+  dp: ∀a:A.(f a)→Sig A f.
+  
+interpretation "Sigma" 'sigma x = (Sig ? x).