package rocq-runtime
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
The Rocq Prover -- Core Binaries and Tools
Install
dune-project
Dependency
Authors
Maintainers
Sources
rocq-9.2.0.tar.gz
sha256=a45280ab4fbaac7540b136a6b073b4a6db15739ec1e149bded43fa6f4fc25f20
doc/src/rocq-runtime.tactics/ind_tables.ml.html
Source file ind_tables.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 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327(************************************************************************) (* * The Rocq Prover / The Rocq 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) *) (************************************************************************) (* File created by Vincent Siles, Oct 2007, extended into a generic support for generation of inductive schemes by Hugo Herbelin, Nov 2009 *) (* This file provides support for registering inductive scheme builders, declaring schemes and generating schemes on demand *) open Names open Nameops open Declarations open Constr open Util (**********************************************************************) (* Registering schemes in the environment *) type handle = Evd.side_effects let push_handle eff = let open Proofview.Notations in Proofview.tclEVARMAP >>= fun sigma -> let sigma = Evd.emit_side_effects eff sigma in Proofview.Unsafe.tclEVARS sigma type mutual_scheme_object_function = Environ.env -> handle -> MutInd.t -> constr array Evd.in_ustate type individual_scheme_object_function = Environ.env -> handle -> inductive -> constr Evd.in_ustate type 'a scheme_kind = string let pr_scheme_kind = Pp.str (**********************************************************************) (* The table of scheme building functions *) type individual type mutual type scheme_dependency = | SchemeMutualDep of MutInd.t * mutual scheme_kind | SchemeIndividualDep of inductive * individual scheme_kind type scheme_object_function = | MutualSchemeFunction of mutual_scheme_object_function * (Environ.env -> MutInd.t -> scheme_dependency list) option | IndividualSchemeFunction of individual_scheme_object_function * (Environ.env -> inductive -> scheme_dependency list) option let scheme_object_table = (Hashtbl.create 17 : (string, string * scheme_object_function) Hashtbl.t) let declare_scheme_object key ?(suff=key) f = let () = if not (Id.is_valid ("ind_" ^ suff)) then CErrors.user_err Pp.(str ("Illegal induction scheme suffix: " ^ suff)) in if Hashtbl.mem scheme_object_table key then CErrors.user_err Pp.(str "Scheme object " ++ str key ++ str " already declared.") else begin Hashtbl.add scheme_object_table key (suff,f); key end let declare_mutual_scheme_object key ?suff ?deps f = declare_scheme_object key ?suff (MutualSchemeFunction (f, deps)) let declare_individual_scheme_object key ?suff ?deps f = declare_scheme_object key ?suff (IndividualSchemeFunction (f, deps)) let is_declared_scheme_object key = Hashtbl.mem scheme_object_table key let scheme_kind_name (key : _ scheme_kind) : string = key (**********************************************************************) (* Defining/retrieving schemes *) let is_visible_name id = try ignore (Nametab.locate (Libnames.qualid_of_ident id)); true with Not_found -> (* FIXME: due to private constant declaration being imperative, we have to also check in the global env *) Global.exists_objlabel id let compute_name internal id avoid = if internal then let visible id = is_visible_name id || Id.Set.mem id avoid in Namegen.next_ident_away_from (add_prefix "internal_" id) visible else id let declare_definition_scheme = ref (fun ~univs ~role ~name ~effs c -> CErrors.anomaly (Pp.str "scheme declaration not registered")) let register_definition_scheme = ref (fun ~internal ~name ~const ~univs ?loc () -> CErrors.anomaly (Pp.str "scheme registering not registered")) let lookup_scheme kind ind = try Some (DeclareScheme.lookup_scheme kind ind) with Not_found -> None type schemes = { sch_eff : Evd.side_effects; sch_reg : (Id.t * Constant.t * Loc.t option * UState.named_universes_entry) list; } let empty_schemes eff = { sch_eff = eff; sch_reg = []; } let redeclare_schemes { sch_eff = eff } = let fold c role accu = match role with | Evd.Schema (ind, kind) -> try let _ = DeclareScheme.lookup_scheme kind ind in accu with Not_found -> let old = try String.Map.find kind accu with Not_found -> [] in String.Map.add kind ((ind, GlobRef.ConstRef c) :: old) accu in let schemes = Cmap_env.fold fold (Evd.seff_roles eff) String.Map.empty in let iter kind defs = List.iter (DeclareScheme.declare_scheme SuperGlobal kind) defs in String.Map.iter iter schemes let local_lookup_scheme eff kind ind = match lookup_scheme kind ind with | Some _ as ans -> ans | None -> let exception Found of Constant.t in let iter c role = match role with | Evd.Schema (i, k) -> if String.equal k kind && Ind.UserOrd.equal i ind then raise (Found c) in (* Inefficient O(n), but the number of locally declared schemes is small and this is very rarely called *) try let _ = Cmap_env.iter iter (Evd.seff_roles eff) in None with Found c -> Some (GlobRef.ConstRef c) let local_check_scheme kind ind { sch_eff = eff } = Option.has_some (local_lookup_scheme eff kind ind) let define ?loc internal role id c poly uctx sch = let avoid = Safe_typing.constants_of_private (Evd.seff_private sch.sch_eff) in let avoid = Id.Set.of_list @@ List.map (fun cst -> Constant.label cst) avoid in let id = compute_name internal id avoid in let uctx = UState.collapse_above_prop_sort_variables ~to_prop:true uctx in let uctx = UState.normalize_variables uctx in let uctx = UState.minimize uctx in let c = UState.nf_universes uctx c in let uctx = UState.restrict uctx (Vars.universes_of_constr c) in let univs = UState.univ_entry ~poly uctx in let effs = sch.sch_eff in let cst, effs = !declare_definition_scheme ~univs ~role ~name:id ~effs c in let reg = (id, cst, loc, univs) :: sch.sch_reg in cst, { sch_eff = effs; sch_reg = reg } module Locmap : sig type t val default : Loc.t option -> t val make : ?default:Loc.t -> MutInd.t -> Loc.t option list -> t val lookup : locmap:t -> Names.inductive -> Loc.t option end = struct type t = { default : Loc.t option; mind : MutInd.t option; ind_to_loc : Loc.t Int.Map.t; } let lookup ~locmap:{ ind_to_loc; default; mind } (m, i) = let () = match mind with | None -> () | Some mind -> assert (MutInd.UserOrd.equal mind m) in Int.Map.find_opt i ind_to_loc |> fun loc -> Option.append loc default let default default = { default; ind_to_loc = Int.Map.empty; mind = None } let make ?default mind locs = let default, ind_to_loc = CList.fold_left_i (fun i (default,m) loc -> let m = match loc with | None -> m | Some loc -> Int.Map.add i loc m in let default = if Option.has_some default then default else loc in default, m) 0 (default, Int.Map.empty) locs in { default; ind_to_loc; mind = Some mind } end let get_env sch = Safe_typing.env_of_safe_env (Evd.get_senv_side_effects sch.sch_eff) let globally_declare_schemes sch = Global.Internal.reset_safe_env (Evd.get_senv_side_effects sch.sch_eff) (* Assumes that dependencies are already defined *) let rec define_individual_scheme_base ?loc kind suff f ~internal idopt (mind,i as ind) eff = let env = get_env eff in let (c, ctx) = f env eff.sch_eff ind in let mib = Environ.lookup_mind mind env in let id = match idopt with | Some id -> id | None -> add_suffix mib.mind_packets.(i).mind_typename ("_"^suff) in let role = Evd.Schema (ind, kind) in let poly, cumulative = Declareops.inductive_is_polymorphic mib, Declareops.inductive_is_cumulative mib in let poly = PolyFlags.make ~univ_poly:poly ~cumulative ~collapse_sort_variables:true in let const, eff = define ?loc internal role id c poly ctx eff in const, eff and define_individual_scheme ?loc kind ~internal names (mind,i as ind) eff = match Hashtbl.find scheme_object_table kind with | _,MutualSchemeFunction _ -> assert false | s,IndividualSchemeFunction (f, deps) -> let env = get_env eff in let deps = match deps with None -> [] | Some deps -> deps env ind in let eff = List.fold_left (fun eff dep -> declare_scheme_dependence eff dep) eff deps in let _, eff = define_individual_scheme_base ?loc kind s f ~internal names ind eff in eff (* Assumes that dependencies are already defined *) and define_mutual_scheme_base ?(locmap=Locmap.default None) kind suff f ~internal names mind eff = let env = get_env eff in let (cl, ctx) = f env eff.sch_eff mind in let mib = Environ.lookup_mind mind env in let ids = Array.init (Array.length mib.mind_packets) (fun i -> try Int.List.assoc i names with Not_found -> add_suffix mib.mind_packets.(i).mind_typename ("_"^suff)) in let fold i effs id cl = let role = Evd.Schema ((mind, i), kind)in let loc = Locmap.lookup ~locmap (mind,i) in (* FIXME cumulativity not supported? *) let poly = PolyFlags.of_univ_poly (Declareops.inductive_is_polymorphic mib) in let cst, effs = define ?loc internal role id cl poly ctx effs in (effs, cst) in let (eff, consts) = Array.fold_left2_map_i fold eff ids cl in consts, eff and define_mutual_scheme ?locmap kind ~internal names mind eff = match Hashtbl.find scheme_object_table kind with | _,IndividualSchemeFunction _ -> assert false | s,MutualSchemeFunction (f, deps) -> let env = get_env eff in let deps = match deps with None -> [] | Some deps -> deps env mind in let eff = List.fold_left (fun eff dep -> declare_scheme_dependence eff dep) eff deps in let _, eff = define_mutual_scheme_base ?locmap kind s f ~internal names mind eff in eff and declare_scheme_dependence eff sd = match sd with | SchemeIndividualDep (ind, kind) -> if local_check_scheme kind ind eff then eff else define_individual_scheme kind ~internal:true None ind eff | SchemeMutualDep (mind, kind) -> if local_check_scheme kind (mind, 0) eff then eff else define_mutual_scheme kind ~internal:true [] mind eff let find_scheme kind (mind,i as ind) = let open Proofview.Notations in Proofview.tclEVARMAP >>= fun sigma -> let s = local_lookup_scheme (Evd.eval_side_effects sigma) kind ind in Proofview.tclUNIT s let force_find_scheme kind (mind,i as ind) = let open Proofview.Notations in Proofview.tclEVARMAP >>= fun sigma -> let eff = Evd.eval_side_effects sigma in match local_lookup_scheme eff kind ind with | Some s -> Proofview.tclUNIT s | None -> let senv = Evd.get_senv_side_effects eff in try let eff, ans = match Hashtbl.find scheme_object_table kind with | s,IndividualSchemeFunction (f, deps) -> let env = Safe_typing.env_of_safe_env senv in let deps = match deps with None -> [] | Some deps -> deps env ind in let sch = empty_schemes eff in let eff = List.fold_left (fun eff dep -> declare_scheme_dependence eff dep) sch deps in let c, eff = define_individual_scheme_base kind s f ~internal:true None ind eff in eff, c | s,MutualSchemeFunction (f, deps) -> let env = Safe_typing.env_of_safe_env senv in let deps = match deps with None -> [] | Some deps -> deps env mind in let sch = empty_schemes eff in let eff = List.fold_left (fun eff dep -> declare_scheme_dependence eff dep) sch deps in let ca, eff = define_mutual_scheme_base kind s f ~internal:true [] mind eff in eff, ca.(i) in let sigma = Evd.emit_side_effects eff.sch_eff sigma in Proofview.Unsafe.tclEVARS sigma <*> Proofview.tclUNIT (GlobRef.ConstRef ans) with Rocqlib.NotFoundRef _ as e -> let e, info = Exninfo.capture e in Proofview.tclZERO ~info e let register_schemes sch = let iter (id, kn, loc, univs) = !register_definition_scheme ~internal:false ~name:id ~const:kn ~univs ?loc () in List.iter iter (List.rev sch.sch_reg) let define_individual_scheme ?loc kind names ind = let sch = empty_schemes Evd.empty_side_effects in let eff = define_individual_scheme ?loc kind ~internal:false names ind sch in let () = globally_declare_schemes eff in let () = register_schemes eff in redeclare_schemes eff let define_mutual_scheme ?locmap kind names mind = let sch = empty_schemes Evd.empty_side_effects in let eff = define_mutual_scheme ?locmap kind ~internal:false names mind sch in let () = globally_declare_schemes eff in let () = register_schemes eff in redeclare_schemes eff
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>