1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
|
(************************************************************************)
(* v * The Coq Proof Assistant / The Coq Development Team *)
(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2014 *)
(* \VV/ **************************************************************)
(* // * This file is distributed under the terms of the *)
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
(*i camlp4deps: "parsing/grammar.cma" i*)
open Quote
open Ring
open Tacticals
TACTIC EXTEND ring
| [ "legacy" "ring" constr_list(l) ] -> [ polynom l ]
END
(* The vernac commands "Add Ring" and co *)
let cset_of_constrarg_list l =
List.fold_right ConstrSet.add (List.map constr_of l) ConstrSet.empty
VERNAC COMMAND EXTEND AddRing
[ "Add" "Legacy" "Ring"
constr(a) constr(aplus) constr(amult) constr(aone) constr(azero)
constr(aopp) constr(aeq) constr(t) "[" ne_constr_list(l) "]" ]
-> [ add_theory true false false
(constr_of a)
None
None
None
(constr_of aplus)
(constr_of amult)
(constr_of aone)
(constr_of azero)
(Some (constr_of aopp))
(constr_of aeq)
(constr_of t)
(cset_of_constrarg_list l) ]
| [ "Add" "Legacy" "Semi" "Ring"
constr(a) constr(aplus) constr(amult) constr(aone) constr(azero)
constr(aeq) constr(t) "[" ne_constr_list(l) "]" ]
-> [ add_theory false false false
(constr_of a)
None
None
None
(constr_of aplus)
(constr_of amult)
(constr_of aone)
(constr_of azero)
None
(constr_of aeq)
(constr_of t)
(cset_of_constrarg_list l) ]
| [ "Add" "Legacy" "Abstract" "Ring"
constr(a) constr(aplus) constr(amult) constr(aone)
constr(azero) constr(aopp) constr(aeq) constr(t) ]
-> [ add_theory true true false
(constr_of a)
None
None
None
(constr_of aplus)
(constr_of amult)
(constr_of aone)
(constr_of azero)
(Some (constr_of aopp))
(constr_of aeq)
(constr_of t)
ConstrSet.empty ]
| [ "Add" "Legacy" "Abstract" "Semi" "Ring"
constr(a) constr(aplus) constr(amult) constr(aone)
constr(azero) constr(aeq) constr(t) ]
-> [ add_theory false true false
(constr_of a)
None
None
None
(constr_of aplus)
(constr_of amult)
(constr_of aone)
(constr_of azero)
None
(constr_of aeq)
(constr_of t)
ConstrSet.empty ]
| [ "Add" "Legacy" "Setoid" "Ring"
constr(a) constr(aequiv) constr(asetth) constr(aplus) constr(amult)
constr(aone) constr(azero) constr(aopp) constr(aeq) constr(pm)
constr(mm) constr(om) constr(t) "[" ne_constr_list(l) "]" ]
-> [ add_theory true false true
(constr_of a)
(Some (constr_of aequiv))
(Some (constr_of asetth))
(Some {
plusm = (constr_of pm);
multm = (constr_of mm);
oppm = Some (constr_of om) })
(constr_of aplus)
(constr_of amult)
(constr_of aone)
(constr_of azero)
(Some (constr_of aopp))
(constr_of aeq)
(constr_of t)
(cset_of_constrarg_list l) ]
| [ "Add" "Legacy" "Semi" "Setoid" "Ring"
constr(a) constr(aequiv) constr(asetth) constr(aplus)
constr(amult) constr(aone) constr(azero) constr(aeq)
constr(pm) constr(mm) constr(t) "[" ne_constr_list(l) "]" ]
-> [ add_theory false false true
(constr_of a)
(Some (constr_of aequiv))
(Some (constr_of asetth))
(Some {
plusm = (constr_of pm);
multm = (constr_of mm);
oppm = None })
(constr_of aplus)
(constr_of amult)
(constr_of aone)
(constr_of azero)
None
(constr_of aeq)
(constr_of t)
(cset_of_constrarg_list l) ]
END
|