(************************************************************************) (* * 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) *) (************************************************************************)
open Names
let scheme_map = Summary.ref Indmap.empty ~name:"Schemes"
let cache_one_scheme kind (ind,const) =
scheme_map := Indmap.update ind (function
| None -> Some (CString.Map.singleton kind const)
| Some map -> Some (CString.Map.add kind constmap))
!scheme_map
let cache_scheme (kind,l) =
cache_one_scheme kind l
let subst_one_scheme subst (ind,const) = (* Remark: const is a def: the result of substitution is a constant *)
(Mod_subst.subst_ind subst ind, Mod_subst.subst_constant subst const)
let subst_scheme (subst,(kind,l)) =
(kind, subst_one_scheme subst l)
let inScheme : Libobject.locality * (string * (inductive * Constant.t)) -> Libobject.obj = letopen Libobject in
declare_object @@ object_with_locality "SCHEME"
~cache:cache_scheme
~subst:(Some subst_scheme)
~discharge:(fun x -> x)
let declare_scheme local kind indcl =
Lib.add_leaf (inScheme (local,(kind,indcl)))
let lookup_scheme kind ind = CString.Map.find kind (Indmap.find ind !scheme_map)
let all_schemes () = !scheme_map
¤ Dauer der Verarbeitung: 0.11 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.