1 (**************************************************************************)
4 (* ||A|| A project by Andrea Asperti *)
6 (* ||I|| Developers: *)
7 (* ||T|| The HELM team. *)
8 (* ||A|| http://helm.cs.unibo.it *)
10 (* \ / This file is distributed under the terms of the *)
11 (* v GNU General Public License Version 2 *)
13 (**************************************************************************)
15 (* ********************************************************************** *)
18 (* Cosimo Oliboni, oliboni@cs.unibo.it *)
20 (* ********************************************************************** *)
22 (* coppia dipendente *)
24 inductive sigma (A:Type) (P:A → Type) : Type ≝
25 sigma_intro: ∀x:A.P x → sigma A P.
27 notation < "hvbox(\Sigma ident i opt (: tx) break . p)"
28 right associative with precedence 20
29 for @{ 'Sigma ${default
30 @{\lambda ${ident i} : $tx. $p}
31 @{\lambda ${ident i} . $p}}}.
33 notation > "\Sigma list1 ident x sep , opt (: T). term 19 Px"
36 @{ ${ fold right @{$Px} rec acc @{'Sigma (λ${ident x}:$T.$acc)} } }
37 @{ ${ fold right @{$Px} rec acc @{'Sigma (λ${ident x}.$acc)} } }
40 notation "\ll term 19 a, break term 19 b \gg"
41 with precedence 90 for @{'dependent_pair (λx:?.? x) $a $b}.
42 interpretation "dependent pair" 'dependent_pair \eta.c a b = (sigma_intro ? c a b).
44 interpretation "sigma" 'Sigma \eta.x = (sigma ? x).
47 λT:Type.λf:T → Type.λs:sigma T f.match s with [ sigma_intro x _ ⇒ x ].
49 λT:Type.λf:T → Type.λs:sigma T f.match s return λs.f (sigmaFst ?? s) with [ sigma_intro _ x ⇒ x ].