diff options
| author | letouzey | 2011-02-11 16:54:18 +0000 |
|---|---|---|
| committer | letouzey | 2011-02-11 16:54:18 +0000 |
| commit | 483e36a76c4a31a1711a4602be45f66e7f46760f (patch) | |
| tree | 6a490563e2a55d14e91da600f3843b8fc0b09552 /theories/Numbers/Integer/Binary | |
| parent | 1e1bc1952499bf3528810f2b3e6efad76ab843d0 (diff) | |
Annotations at functor applications:
- The experimental syntax "<30>F M" is transformed into "F M [inline at level 30]"
- The earlier syntax !F X should now be written "F X [no inline]"
(note that using ! is still possible for compatibility)
- A new annotation "F M [scope foo_scope to bar_scope]" allow to substitute
foo_scope by bar_scope in all arguments scope of objects in F.
BigN and BigZ are cleaned from the zillions of Arguments Scope used earlier.
Arguments scope for lemmas are fixed for instances of Numbers.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@13839 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Numbers/Integer/Binary')
| -rw-r--r-- | theories/Numbers/Integer/Binary/ZBinary.v | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/theories/Numbers/Integer/Binary/ZBinary.v b/theories/Numbers/Integer/Binary/ZBinary.v index 3664180357..fbb91ef7f2 100644 --- a/theories/Numbers/Integer/Binary/ZBinary.v +++ b/theories/Numbers/Integer/Binary/ZBinary.v @@ -223,8 +223,9 @@ Definition eq := (@eq Z). (** Now the generic properties. *) -Include ZProp - <+ UsualMinMaxLogicalProperties <+ UsualMinMaxDecProperties. +Include ZProp [scope abstract_scope to Z_scope] + <+ UsualMinMaxLogicalProperties [scope abstract_scope to Z_scope] + <+ UsualMinMaxDecProperties [scope abstract_scope to Z_scope]. End Z. |
