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
|
(* $Id$ *)
open Util
open Pp
open Names
open Term
open Typeops
open Libobject
open Library
open Classops
let nbimpl = ref 0
let nbpathc = ref 0
let nbcoer = ref 0
let nbstruc = ref 0
let nbimplstruc = ref 0
let compter = ref false
(*** table des structures: section_path du struc donne l'id du constructeur,
le nombre de parame`tres et ses projection valides ***)
type struc_typ = {
s_CONST : identifier;
s_PARAM : int;
s_PROJ : section_path option list }
let sTRUCS = (ref [] : (inductive_path * struc_typ) list ref)
let add_new_struc1 x = sTRUCS:=x::(!sTRUCS)
let (inStruc,outStruc) =
declare_object ("STRUCTURE",
{ load_function = (fun _ -> ());
cache_function = (function (_,x) -> add_new_struc1 x);
open_function = (fun _ -> ());
specification_function = (function x -> x) })
let add_new_struc (s,c,n,l) =
Lib.add_anonymous_leaf (inStruc (s,{s_CONST=c;s_PARAM=n;s_PROJ=l}))
(*** table des definitions "object" : pour chaque object c,
c := [x1:B1]...[xk:Bk](R_Cons a1...am t1...t_n)
avec ti=(ci ui1...uir)
Pour tout ci, et Li correspondant (du record)
o_DEF = c
o_TABS = B1...Bk
o_PARAMS = a1...am
o_TCOMP = ui1...uir
***)
type obj_typ = {
o_DEF : constr;
o_TABS : constr list; (* dans l'ordre *)
o_TPARAMS : constr list; (* dans l'ordre *)
o_TCOMPS : constr list } (* dans l'ordre *)
let oBJDEFS = (ref [] : ((cte_typ * cte_typ) * obj_typ) list ref)
let add_new_objdef1 x = oBJDEFS:=x::(!oBJDEFS)
let (inObjDef,outObjDef) =
declare_object ("OBJDEF",
{ load_function = (fun _ -> ());
open_function = (fun _ -> ());
cache_function = (function (_,x) -> add_new_objdef1 x);
specification_function = (function x -> x)})
let add_new_objdef (o,c,la,lp,l) =
try
let _ = List.assoc o !oBJDEFS in ()
with Not_found ->
Lib.add_anonymous_leaf
(inObjDef (o,{o_DEF=c;o_TABS=la;o_TPARAMS=lp;o_TCOMPS=l}))
let ((inObjDef1 : section_path -> obj),(outObjDef1 : obj -> section_path)) =
declare_object ("OBJDEF1",
{ load_function = (fun _ -> ());
open_function = (fun _ -> ());
cache_function = (function (_,sp) -> ());
specification_function = (function x -> x)})
let objdef_info o = List.assoc o !oBJDEFS
let freeze () = !sTRUCS,!oBJDEFS
let unfreeze (s,o) = sTRUCS := s; oBJDEFS := o
let init () = sTRUCS:=[];oBJDEFS:=[]
let _ = init()
let _ =
Summary.declare_summary "objdefs"
{ Summary.freeze_function = freeze;
Summary.unfreeze_function = unfreeze;
Summary.init_function = init }
|