diff options
| author | Cyril Cohen | 2018-11-24 17:58:35 +0100 |
|---|---|---|
| committer | GitHub | 2018-11-24 17:58:35 +0100 |
| commit | add6e85884691faef1bf8742e803374815672cc2 (patch) | |
| tree | 2ffb41f5afa11a147989c8efcc1dcb295ae2ed2b /mathcomp/algebra/ssralg.v | |
| parent | 967088a6f87405a93ce21971392c58996df8c99f (diff) | |
| parent | f049e51c39077a025907ea87c08178dad1841801 (diff) | |
Merge pull request #249 from anton-trunov/prenex-implicits
Merge Arguments and Prenex Implicits
Diffstat (limited to 'mathcomp/algebra/ssralg.v')
| -rw-r--r-- | mathcomp/algebra/ssralg.v | 35 |
1 files changed, 17 insertions, 18 deletions
diff --git a/mathcomp/algebra/ssralg.v b/mathcomp/algebra/ssralg.v index 9ccb92f..854335d 100644 --- a/mathcomp/algebra/ssralg.v +++ b/mathcomp/algebra/ssralg.v @@ -3727,24 +3727,23 @@ End TermDef. Bind Scope term_scope with term. Bind Scope term_scope with formula. -Arguments Add _ _%T _%T. -Arguments Opp _ _%T. -Arguments NatMul _ _%T _%N. -Arguments Mul _ _%T _%T. -Arguments Inv _ _%T. -Arguments Exp _ _%T _%N. -Arguments Equal _ _%T _%T. -Arguments Unit _ _%T. -Arguments And _ _%T _%T. -Arguments Or _ _%T _%T. -Arguments Implies _ _%T _%T. -Arguments Not _ _%T. -Arguments Exists _ _%N _%T. -Arguments Forall _ _%N _%T. - -Arguments Bool [R]. -Prenex Implicits Const Add Opp NatMul Mul Exp Bool Unit And Or Implies Not. -Prenex Implicits Exists Forall. +Arguments Add {_} _%T _%T. +Arguments Opp {_} _%T. +Arguments NatMul {_} _%T _%N. +Arguments Mul {_} _%T _%T. +Arguments Inv {_} _%T. +Arguments Exp {_} _%T _%N. +Arguments Equal {_} _%T _%T. +Arguments Unit {_} _%T. +Arguments And {_} _%T _%T. +Arguments Or {_} _%T _%T. +Arguments Implies {_} _%T _%T. +Arguments Not {_} _%T. +Arguments Exists {_} _%N _%T. +Arguments Forall {_} _%N _%T. + +Arguments Bool {R}. +Arguments Const {R}. Notation True := (Bool true). Notation False := (Bool false). |
