aboutsummaryrefslogtreecommitdiff
path: root/contrib/subtac/FixSub.v
diff options
context:
space:
mode:
authormsozeau2006-04-07 15:08:12 +0000
committermsozeau2006-04-07 15:08:12 +0000
commit26ca22424b286f5ff22a1fa97c38d15e224b3dc2 (patch)
tree190e12acf505e47d3a81ef0fd625a405ff782c04 /contrib/subtac/FixSub.v
parent5f9b04da0f3c72f4b582cd094edae721b1bc9a9e (diff)
- Documentation of the Program tactics.
- Fixes to the subtac implementation, utility tactic to apply existentials to a function and build a dependent sum out of name, constr lists. Also defined a Utils coq module for tactics related to subsets and the projections for ex in Prop. - Enhancements to inference algorithm added but not used in the default version as there are some remaining bugs. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@8688 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'contrib/subtac/FixSub.v')
-rw-r--r--contrib/subtac/FixSub.v10
1 files changed, 6 insertions, 4 deletions
diff --git a/contrib/subtac/FixSub.v b/contrib/subtac/FixSub.v
index 6face72d11..a9a22ca76e 100644
--- a/contrib/subtac/FixSub.v
+++ b/contrib/subtac/FixSub.v
@@ -21,8 +21,10 @@ End FixPoint.
End Well_founded.
-(*Check Fix_sub.*)
-
Notation "'forall' { x : A | P } , Q" :=
- (forall x:{x:A|P}, (fun x => Q) (proj1_sig x))
- (at level 200, x ident, right associativity). \ No newline at end of file
+ (forall x:{x:A|P}, Q)
+ (at level 200, x ident, right associativity).
+
+Notation "'fun' { x : A | P } => Q" :=
+ (fun x:{x:A|P} => Q)
+ (at level 200, x ident, right associativity).