]> matita.cs.unibo.it Git - helm.git/blob - helm/software/lambda-delta/automath/autOutput.ml
ffbdfdb2096eeac175e3e86ee1af854c60fe100a
[helm.git] / helm / software / lambda-delta / automath / autOutput.ml
1 (*
2     ||M||  This file is part of HELM, an Hypertextual, Electronic        
3     ||A||  Library of Mathematics, developed at the Computer Science     
4     ||T||  Department, University of Bologna, Italy.                     
5     ||I||                                                                
6     ||T||  HELM is free software; you can redistribute it and/or         
7     ||A||  modify it under the terms of the GNU General Public License   
8     \   /  version 2 or (at your option) any later version.              
9      \ /   This software is distributed as is, NO WARRANTY.              
10       V_______________________________________________________________ *)
11
12 module P = Printf
13 module L = Log
14 module A = Aut
15
16 type counters = {
17    sections: int;
18    contexts: int;
19    blocks:   int;
20    decls:    int;
21    defs:     int;
22    sorts:    int;
23    grefs:    int;
24    appls:    int;
25    absts:    int;
26    pars:     int;
27    xnodes:   int
28 }
29
30 let initial_counters = {
31    sections = 0; contexts = 0; blocks = 0; decls = 0; defs = 0;
32    sorts = 0; grefs = 0; appls = 0; absts = 0; pars = 0; xnodes = 0
33 }
34
35 let rec count_term f c = function
36    | A.Sort _         -> 
37       f {c with sorts = succ c.sorts; xnodes = succ c.xnodes}
38    | A.GRef (_, ts)   -> 
39       let c = {c with grefs = succ c.grefs} in
40       let c = {c with pars = c.pars + List.length ts} in
41       let c = {c with xnodes = succ c.xnodes + List.length ts} in
42       Cps.list_fold_left f count_term c ts
43    | A.Appl (v, t)    -> 
44       let c = {c with appls = succ c.appls; xnodes = succ c.xnodes} in
45       let f c = count_term f c t in
46       count_term f c v
47    | A.Abst (_, w, t) -> 
48       let c = {c with absts = succ c.absts; xnodes = succ c.xnodes} in
49       let f c = count_term f c t in
50       count_term f c w
51
52 let count_item f c = function
53    | A.Section _        ->
54       f {c with sections = succ c.sections}
55    | A.Context _        ->
56       f {c with contexts = succ c.contexts}
57    | A.Block (_, w)     -> 
58       let c = {c with blocks = succ c.blocks; xnodes = succ c.xnodes} in
59       count_term f c w
60    | A.Decl (_, w)      -> 
61       let c = {c with decls = succ c.decls; xnodes = succ c.xnodes} in
62       count_term f c w
63    | A.Def (_, w, _, t) -> 
64       let c = {c with defs = succ c.defs; xnodes = succ c.xnodes} in
65       let f c = count_term f c t in
66       count_term f c w
67
68 let print_counters f c =
69    let terms = c.sorts + c.grefs + c.appls + c.absts in
70    let items = c.sections + c.contexts + c.blocks + c.decls + c.defs in
71    L.warn (P.sprintf "  Automath representation summary");
72    L.warn (P.sprintf "    Total book items:         %7u" items);
73    L.warn (P.sprintf "      Section items:          %7u" c.sections);
74    L.warn (P.sprintf "      Context items:          %7u" c.contexts);
75    L.warn (P.sprintf "      Block items:            %7u" c.blocks);
76    L.warn (P.sprintf "      Declaration items:      %7u" c.decls);
77    L.warn (P.sprintf "      Definition items:       %7u" c.defs);
78    L.warn (P.sprintf "    Total Parameter items:    %7u" c.pars);
79    L.warn (P.sprintf "      Application items:      %7u" c.pars);
80    L.warn (P.sprintf "    Total term items:         %7u" terms);
81    L.warn (P.sprintf "      Sort items:             %7u" c.sorts);
82    L.warn (P.sprintf "      Reference items:        %7u" c.grefs);
83    L.warn (P.sprintf "      Application items:      %7u" c.appls);
84    L.warn (P.sprintf "      Abstraction items:      %7u" c.absts);
85    L.warn (P.sprintf "    Global Int. Complexity:   unknown");
86    L.warn (P.sprintf "      + Abbreviation nodes:   %7u" c.xnodes);
87    f ()