package coq-core
The Coq Proof Assistant -- Core Binaries and Tools
Install
Dune Dependency
Authors
Maintainers
Sources
coq-8.18.0.tar.gz
md5=8d852367b54f095d9fbabd000304d450
sha512=46922d5f2eb6802a148a52fd3e7f0be8370c93e7bc33cee05cf4a2044290845b10ccddbaa306f29c808e7c5019700763e37e45ff6deb507b874a4348010fed50
doc/src/coq-core.interp/notationextern.ml.html
Source file notationextern.ml
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 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
(************************************************************************) (* * The Coq Proof Assistant / The Coq Development Team *) (* v * Copyright INRIA, CNRS and contributors *) (* <O___,, * (see version control and CREDITS file for authors & dates) *) (* \VV/ **************************************************************) (* // * This file is distributed under the terms of the *) (* * GNU Lesser General Public License Version 2.1 *) (* * (see LICENSE file for the text of the license) *) (************************************************************************) (** Declaration of uninterpretation functions (i.e. printing rules) for notations *) (*i*) open Util open Names open Globnames open Constrexpr open Notation_term open Glob_term (*i*) let notation_with_optional_scope_eq inscope1 inscope2 = match (inscope1,inscope2) with | LastLonelyNotation, LastLonelyNotation -> true | NotationInScope s1, NotationInScope s2 -> String.equal s1 s2 | (LastLonelyNotation | NotationInScope _), _ -> false let entry_relative_level_eq t1 t2 = match t1, t2 with | LevelLt n1, LevelLt n2 -> Int.equal n1 n2 | LevelLe n1, LevelLe n2 -> Int.equal n1 n2 | LevelSome, LevelSome -> true | (LevelLt _ | LevelLe _ | LevelSome), _ -> false let notation_entry_eq s1 s2 = match (s1,s2) with | InConstrEntry, InConstrEntry -> true | InCustomEntry s1, InCustomEntry s2 -> String.equal s1 s2 | (InConstrEntry | InCustomEntry _), _ -> false let notation_entry_level_eq (e1,n1) (e2,n2) = notation_entry_eq e1 e2 && Int.equal n1 n2 let notation_entry_relative_level_eq (e1,(n1,s1)) (e2,(n2,s2)) = notation_entry_eq e1 e2 && entry_relative_level_eq n1 n2 && s1 = s2 let notation_eq (from1,ntn1) (from2,ntn2) = notation_entry_eq from1 from2 && String.equal ntn1 ntn2 let pair_eq f g (x1, y1) (x2, y2) = f x1 x2 && g y1 y2 let notation_binder_kind_eq k1 k2 = match k1, k2 with | AsIdent, AsIdent -> true | AsName, AsName -> true | AsAnyPattern, AsAnyPattern -> true | AsStrictPattern, AsStrictPattern -> true | (AsIdent | AsName | AsAnyPattern | AsStrictPattern), _ -> false let notation_binder_source_eq s1 s2 = match s1, s2 with | NtnBinderParsedAsSomeBinderKind bk1, NtnBinderParsedAsSomeBinderKind bk2 -> notation_binder_kind_eq bk1 bk2 | NtnBinderParsedAsBinder, NtnBinderParsedAsBinder -> true | NtnBinderParsedAsConstr bk1, NtnBinderParsedAsConstr bk2 -> notation_binder_kind_eq bk1 bk2 | (NtnBinderParsedAsSomeBinderKind _ | NtnBinderParsedAsBinder | NtnBinderParsedAsConstr _), _ -> false let ntpe_eq t1 t2 = match t1, t2 with | NtnTypeConstr, NtnTypeConstr -> true | NtnTypeBinder s1, NtnTypeBinder s2 -> notation_binder_source_eq s1 s2 | NtnTypeConstrList, NtnTypeConstrList -> true | NtnTypeBinderList s1, NtnTypeBinderList s2 -> notation_binder_source_eq s1 s2 | (NtnTypeConstr | NtnTypeBinder _ | NtnTypeConstrList | NtnTypeBinderList _), _ -> false let var_attributes_eq (_, ((entry1, sc1), tp1)) (_, ((entry2, sc2), tp2)) = notation_entry_relative_level_eq entry1 entry2 && pair_eq (List.equal String.equal) (List.equal String.equal) sc1 sc2 && ntpe_eq tp1 tp2 let interpretation_eq (vars1, t1 as x1) (vars2, t2 as x2) = x1 == x2 || List.equal var_attributes_eq vars1 vars2 && Notation_ops.eq_notation_constr (List.map fst vars1, List.map fst vars2) t1 t2 type level = notation_entry * entry_level * entry_relative_level list (* first argument is InCustomEntry s for custom entries *) let level_eq (s1, l1, t1) (s2, l2, t2) = notation_entry_eq s1 s2 && Int.equal l1 l2 && List.equal entry_relative_level_eq t1 t2 (* Uninterpretation tables *) type 'a interp_rule_gen = | NotationRule of Constrexpr.specific_notation | AbbrevRule of 'a type interp_rule = KerName.t interp_rule_gen (* We define keys for glob_constr and aconstr to split the syntax entries according to the key of the pattern (adapted from Chet Murthy by HH) *) type key = | RefKey of GlobRef.t | Oth let key_compare k1 k2 = match k1, k2 with | RefKey gr1, RefKey gr2 -> GlobRef.CanOrd.compare gr1 gr2 | RefKey _, Oth -> -1 | Oth, RefKey _ -> 1 | Oth, Oth -> 0 module KeyOrd = struct type t = key let compare = key_compare end module KeyMap = Map.Make(KeyOrd) type notation_applicative_status = | AppBoundedNotation of int | AppUnboundedNotation | NotAppNotation type notation_rule = interp_rule * interpretation * notation_applicative_status let notation_rule_eq (rule1,pat1,s1 as x1) (rule2,pat2,s2 as x2) = x1 == x2 || (rule1 = rule2 && interpretation_eq pat1 pat2 && s1 = s2) let strictly_finer_interpretation_than (_,(_,interp1,_)) (_,(_,interp2,_)) = Notation_ops.strictly_finer_interpretation_than interp1 interp2 let keymap_add key interp map = let old = try KeyMap.find key map with Not_found -> [] in (* strictly finer interpretation are kept in front *) let strictly_finer, rest = List.partition (fun c -> strictly_finer_interpretation_than c interp) old in KeyMap.add key (strictly_finer @ interp :: rest) map let keymap_remove key interp map = let old = try KeyMap.find key map with Not_found -> [] in KeyMap.add key (List.remove_first (fun (_,rule) -> notation_rule_eq interp rule) old) map let keymap_find key map = try KeyMap.find key map with Not_found -> [] (* Scopes table : interpretation -> scope_name *) (* Boolean = for cases pattern also *) let notations_key_table = ref (KeyMap.empty : (bool * notation_rule) list KeyMap.t) let glob_prim_constr_key c = match DAst.get c with | GRef (ref, _) -> Some (canonical_gr ref) | GApp (c, _) -> begin match DAst.get c with | GRef (ref, _) -> Some (canonical_gr ref) | _ -> None end | GProj ((cst,_), _, _) -> Some (canonical_gr (GlobRef.ConstRef cst)) | _ -> None let glob_constr_keys c = match DAst.get c with | GApp (c, _) -> begin match DAst.get c with | GRef (ref, _) -> [RefKey (canonical_gr ref); Oth] | _ -> [Oth] end | GProj ((cst,_), _, _) -> [RefKey (canonical_gr (GlobRef.ConstRef cst))] | GRef (ref,_) -> [RefKey (canonical_gr ref)] | _ -> [Oth] let cases_pattern_key c = match DAst.get c with | PatCstr (ref,_,_) -> RefKey (canonical_gr (GlobRef.ConstructRef ref)) | _ -> Oth let notation_constr_key = function (* Rem: NApp(NRef ref,[]) stands for @ref *) | NApp (NRef (ref,_),args) -> RefKey(canonical_gr ref), AppBoundedNotation (List.length args) | NProj ((cst,_),args,_) -> RefKey(canonical_gr (GlobRef.ConstRef cst)), AppBoundedNotation (List.length args + 1) | NList (_,_,NApp (NRef (ref,_),args),_,_) | NBinderList (_,_,NApp (NRef (ref,_),args),_,_) -> RefKey (canonical_gr ref), AppBoundedNotation (List.length args) | NRef (ref,_) -> RefKey(canonical_gr ref), NotAppNotation | NApp (NList (_,_,NApp (NRef (ref,_),args),_,_), args') -> RefKey (canonical_gr ref), AppBoundedNotation (List.length args + List.length args') | NApp (NList (_,_,NApp (_,args),_,_), args') -> Oth, AppBoundedNotation (List.length args + List.length args') | NApp (_,args) -> Oth, AppBoundedNotation (List.length args) | NList (_,_,NApp (NVar x,_),_,_) when x = Notation_ops.ldots_var -> Oth, AppUnboundedNotation | _ -> Oth, NotAppNotation let uninterp_notations c = List.map_append (fun key -> List.map snd (keymap_find key !notations_key_table)) (glob_constr_keys c) let filter_also_for_pattern = List.map_filter (function (true,x) -> Some x | _ -> None) let uninterp_cases_pattern_notations c = filter_also_for_pattern (keymap_find (cases_pattern_key c) !notations_key_table) let uninterp_ind_pattern_notations ind = filter_also_for_pattern (keymap_find (RefKey (canonical_gr (GlobRef.IndRef ind))) !notations_key_table) let remove_uninterpretation rule (metas,c as pat) = let (key,n) = notation_constr_key c in notations_key_table := keymap_remove key ((rule,pat,n)) !notations_key_table let declare_uninterpretation ?(also_in_cases_pattern=true) rule (metas,c as pat) = let (key,n) = notation_constr_key c in notations_key_table := keymap_add key (also_in_cases_pattern,(rule,pat,n)) !notations_key_table let freeze () = !notations_key_table let unfreeze fkm = notations_key_table := fkm let init () = notations_key_table := KeyMap.empty let () = Summary.declare_summary "notation_uninterpretation" { stage = Summary.Stage.Interp; Summary.freeze_function = freeze; Summary.unfreeze_function = unfreeze; Summary.init_function = init } let with_notation_uninterpretation_protection f x = let fs = freeze () in try let a = f x in unfreeze fs; a with reraise -> let reraise = Exninfo.capture reraise in let () = unfreeze fs in Exninfo.iraise reraise (** Miscellaneous *) type notation_use = | OnlyPrinting | OnlyParsing | ParsingAndPrinting
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>