X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fmathql_generator%2FcGMatchConclusion.ml;h=42d52a7ac9c6e873fccc950b2b9f28bf6ee93434;hb=d3c72d6856cd185e5b3e9f2e8b928b78c7031ed1;hp=4f739763a6b9b96b58f2332c7eba71600eafdb12;hpb=3ac183ee3dd4eea25d61bd4c5be4f7db9f829a7e;p=helm.git diff --git a/helm/ocaml/mathql_generator/cGMatchConclusion.ml b/helm/ocaml/mathql_generator/cGMatchConclusion.ml index 4f739763a..42d52a7ac 100644 --- a/helm/ocaml/mathql_generator/cGMatchConclusion.ml +++ b/helm/ocaml/mathql_generator/cGMatchConclusion.ml @@ -26,6 +26,8 @@ (* AUTOR: Ferruccio Guidi *) +module T = MQGTypes + let text_of_entries out entries = out "(** MatchConclusion: results of the term inspection **)\n"; let text_of_entry (u, b, v) = @@ -41,7 +43,7 @@ let sort_entries entries = let levels_of_term metasenv context term = let module TC = CicTypeChecker in let module Red = CicReduction in - let module Util = MQueryUtil in + let module Misc = MQueryMisc in let degree t = let rec degree_aux = function | Cic.Sort _ -> 1 @@ -62,13 +64,13 @@ let levels_of_term metasenv context term = in let inspect_uri main l uri tc v term = let d = degree term in - entry_in (Util.string_of_uriref (uri, tc), main, 2 * v + d - 1) l + entry_in (Misc.string_of_uriref (uri, tc), main, 2 * v + d - 1) l in let rec inspect_term main l v term = match term with Cic.Rel _ -> l | Cic.Meta _ -> l | Cic.Sort _ -> l - | Cic.Implicit -> l + | Cic.Implicit _ -> l | Cic.Var (u,exp_named_subst) -> let l' = inspect_uri main l u [] v term in inspect_exp_named_subst l' (succ v) exp_named_subst @@ -151,3 +153,5 @@ let get_constraints e c t = mk_musts (prev @ [acc]) acc next in mk_musts [] [] can + +let universe = [T.MainConclusion; T.InConclusion]