]> matita.cs.unibo.it Git - helm.git/commitdiff
Generator updated for new MathQL.ml
authorFerruccio Guidi <ferruccio.guidi@unibo.it>
Tue, 26 Nov 2002 11:40:14 +0000 (11:40 +0000)
committerFerruccio Guidi <ferruccio.guidi@unibo.it>
Tue, 26 Nov 2002 11:40:14 +0000 (11:40 +0000)
Level functions decoupled from Generator

helm/gTopLevel/.depend
helm/gTopLevel/Makefile
helm/gTopLevel/gTopLevel.ml
helm/gTopLevel/mQueryGenerator.ml
helm/gTopLevel/mQueryGenerator.mli
helm/gTopLevel/topLevel/Makefile
helm/gTopLevel/topLevel/topLevel.ml

index 88a318793e6543d5c983d9f71b8ceae0743979f1..7dce2d61fc542e07f05ea9151214926acbf082f8 100644 (file)
@@ -41,11 +41,11 @@ fourierR.cmx: fourier.cmx primitiveTactics.cmx proofEngineHelpers.cmx \
 fourierR.cmi: proofEngineTypes.cmo 
 proofEngine.cmo: fourierR.cmi primitiveTactics.cmi proofEngineHelpers.cmi \
     proofEngineReduction.cmi proofEngineStructuralRules.cmi \
-    proofEngineTypes.cmo ring.cmi tacticals.cmi variousTactics.cmi \
+    proofEngineTypes.cmo reductionTactics.cmi ring.cmi variousTactics.cmi \
     proofEngine.cmi 
 proofEngine.cmx: fourierR.cmx primitiveTactics.cmx proofEngineHelpers.cmx \
     proofEngineReduction.cmx proofEngineStructuralRules.cmx \
-    proofEngineTypes.cmx ring.cmx tacticals.cmx variousTactics.cmx \
+    proofEngineTypes.cmx reductionTactics.cmx ring.cmx variousTactics.cmx \
     proofEngine.cmi 
 proofEngine.cmi: proofEngineTypes.cmo 
 doubleTypeInference.cmo: doubleTypeInference.cmi 
@@ -59,6 +59,8 @@ logicalOperations.cmo: proofEngine.cmi logicalOperations.cmi
 logicalOperations.cmx: proofEngine.cmx logicalOperations.cmi 
 sequentPp.cmo: cic2Xml.cmi cic2acic.cmi proofEngine.cmi sequentPp.cmi 
 sequentPp.cmx: cic2Xml.cmx cic2acic.cmx proofEngine.cmx sequentPp.cmi 
+mQueryLevels.cmo: mQueryLevels.cmi 
+mQueryLevels.cmx: mQueryLevels.cmi 
 mQueryGenerator.cmo: mQueryGenerator.cmi 
 mQueryGenerator.cmx: mQueryGenerator.cmi 
 gTopLevel.cmo: cic2Xml.cmi cic2acic.cmi logicalOperations.cmi \
index 200305cbe415ef5326a865f4c3bfe6989a92ab8f..7109f291a8d3ec6dcd934fec0ab46a608a2c51a4 100644 (file)
@@ -24,7 +24,7 @@ DEPOBJS = xml2Gdome.ml xml2Gdome.mli proofEngineTypes.ml proofEngineHelpers.ml \
           doubleTypeInference.ml doubleTypeInference.mli cic2acic.ml \
           cic2acic.mli cic2Xml.ml cic2Xml.mli logicalOperations.ml \
           logicalOperations.mli sequentPp.ml sequentPp.mli mQueryGenerator.mli \
-          mQueryGenerator.ml gTopLevel.ml
+          mQueryLevels.ml mQueryGenerator.ml gTopLevel.ml
 
 TOPLEVELOBJS = xml2Gdome.cmo proofEngineTypes.cmo proofEngineHelpers.cmo \
               proofEngineReduction.cmo proofEngineStructuralRules.cmo \
@@ -32,8 +32,8 @@ TOPLEVELOBJS = xml2Gdome.cmo proofEngineTypes.cmo proofEngineHelpers.cmo \
                variousTactics.cmo \
                ring.cmo fourier.cmo fourierR.cmo proofEngine.cmo \
                doubleTypeInference.cmo cic2acic.cmo cic2Xml.cmo \
-               logicalOperations.cmo sequentPp.cmo mQueryGenerator.cmo \
-                  gTopLevel.cmo
+               logicalOperations.cmo sequentPp.cmo \
+              mQueryLevels.cmo mQueryGenerator.cmo gTopLevel.cmo
 
 depend:
        $(OCAMLDEP) $(DEPOBJS) > .depend
index 4a2fdc561428f8924689839f0128e859f5d556cf..8aa9e828875c13a969005edbdcc30ab4976b704d 100644 (file)
@@ -2016,8 +2016,8 @@ let searchPattern () =
           let html =
            " <h1>Backward Query: </h1>" ^
            " <h2>Levels: </h2> " ^
-           MQueryGenerator.string_of_levels
-            (MQueryGenerator.levels_of_term metasenv ey ty) "<br>" ^
+           MQueryLevels.string_of_levels
+            (MQueryLevels.levels_of_term metasenv ey ty) "<br>" ^
           " <pre>" ^ get_last_query result ^ "</pre>"
           in
            output_html outputhtml html ;
index b91261c07769a32d09de650dfa460bb87f6ec518..b12f19bace500030c256e89d0090dab59a267090 100644 (file)
 (*                                                                            *)
 (******************************************************************************)
 
-(* level managing functions *************************************************)
-
-type levels_spec = (string * bool * int) list
-
-let levels_of_term metasenv context term =
-   let module TC = CicTypeChecker in
-   let module Red = CicReduction in
-   let module Util = MQueryUtil in
-   let degree t =
-      let rec degree_aux = function
-         | Cic.Sort _         -> 1 
-         | Cic.Cast (u, _)    -> degree_aux u
-         | Cic.Prod (_, _, t) -> degree_aux t
-         | _                  -> 2
-      in 
-      let u = TC.type_of_aux' metasenv context t in
-      degree_aux (Red.whd context u)
-   in
-   let entry_eq (s1, b1, v1) (s2, b2, v2) =
-      s1 = s2 && b1 = b2 
-   in
-   let rec entry_in e = function
-      | []           -> [e]
-      | head :: tail -> 
-         head :: if entry_eq head e then tail else entry_in e tail
-   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 
-   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.Var (u,exp_named_subst)      ->
-         let l' = inspect_uri main l u [] v term in
-          inspect_exp_named_subst l' (v+1) exp_named_subst
-      | Cic.Const (u,exp_named_subst)    ->
-         let l' = inspect_uri main l u [] v term in
-          inspect_exp_named_subst l' (v+1) exp_named_subst
-      | Cic.MutInd (u, t, exp_named_subst) ->
-         let l' = inspect_uri main l u [t] v term in
-          inspect_exp_named_subst l' (v+1) exp_named_subst
-      | Cic.MutConstruct (u, t, c, exp_named_subst)    ->
-         let l' = inspect_uri main l u [t; c] v term in
-          inspect_exp_named_subst l' (v+1) exp_named_subst
-      | Cic.Cast (uu, _)                 -> 
-         inspect_term main l v uu
-      | Cic.Prod (_, uu, tt)             ->
-         let luu = inspect_term false l (v + 1) uu in
-         inspect_term main luu (v + 1) tt         
-      | Cic.Lambda (_, uu, tt)           ->
-         let luu = inspect_term false l (v + 1) uu in
-         inspect_term false luu (v + 1) tt 
-      | Cic.LetIn (_, uu, tt)            ->
-         let luu = inspect_term false l (v + 1) uu in
-         inspect_term false luu (v + 1) tt
-      | Cic.Appl m                       -> inspect_list main l true v m 
-      | Cic.MutCase (u, t, tt, uu, m) -> 
-         let lu = inspect_uri main l u [t] (v + 1) term in
-         let ltt = inspect_term false lu (v + 1) tt in
-         let luu = inspect_term false ltt (v + 1) uu in
-         inspect_list main luu false (v + 1) m
-      | Cic.Fix (_, m)                   -> inspect_ind l (v + 1) m 
-      | Cic.CoFix (_, m)                 -> inspect_coind l (v + 1) m 
-   and inspect_list main l head v = function
-      | []      -> l
-      | tt :: m -> 
-         let ltt = inspect_term main l (if head then v else v + 1) tt in
-         inspect_list false ltt false v m
-   and inspect_exp_named_subst l v = function
-        []      -> l
-      | (_,t) :: tl -> 
-         let l' = inspect_term false l v t in
-          inspect_exp_named_subst l' v tl
-   and inspect_ind l v = function
-      | []                  -> l
-      | (_, _, tt, uu) :: m ->  
-         let ltt = inspect_term false l v tt in
-         let luu = inspect_term false ltt v uu in
-         inspect_ind luu v m
-   and inspect_coind l v = function
-      | []               -> l
-      | (_, tt, uu) :: m ->
-         let ltt = inspect_term false l v tt in
-         let luu = inspect_term false ltt v uu in
-         inspect_coind luu v m
-   in
-   let rec inspect_backbone = function
-      | Cic.Cast (uu, _)      -> inspect_backbone uu
-      | Cic.Prod (_, _, tt)   -> inspect_backbone tt                
-      | Cic.LetIn (_, uu, tt) -> inspect_backbone tt
-      | t                     -> inspect_term true [] 0 t
-   in 
-   inspect_backbone term  
-
-let string_of_levels l sep =
-   let entry_out (s, b, v) =
-      let pos = if b then " HEAD: " else " TAIL: " in
-      string_of_int v ^ pos ^ s ^ sep 
-   in
-   let rec levels_out = function
-      | []           -> ""
-      | head :: tail -> entry_out head ^ levels_out tail
-   in
-   levels_out l
-
 (* Query issuing functions **************************************************)
 
 exception Discard  
@@ -200,12 +92,15 @@ let execute_query query =
 let locate s =
    let module M = MathQL in
    let q =
-    M.Ref (M.Attribute true M.RefineExact ("objectName", []) (M.Const [s]))
+    M.Ref (M.Property true M.RefineExact ("objectName", []) (M.Const [s]))
    in
     execute_query q
 
 let searchPattern e c t level =
    let module M = MathQL in
+   let module L = MQueryLevels in
+   let in_path s = (s, []) in
+   let assign v p = (in_path v, in_path p) in 
    let v_pos = M.Const ["MainConclusion"; "InConclusion"] in
    let q_where =
     M.Sub
@@ -213,9 +108,10 @@ let searchPattern e c t level =
        (M.Select
          ("uri", 
            M.Relation
-            (false, M.RefineExact, ("refObj", []), M.RVar "uri0", ["pos"]),
+            (false, M.RefineExact, in_path "refObj", M.RVar "uri0", 
+            [assign "pos" "position"]),
            M.Ex ["uri"]
-            (M.Meet (M.VVar "positions", M.Record ("uri", ("pos", []))))
+            (M.Meet (M.VVar "positions", M.Record ("uri", in_path "pos")))
          )
        ),
        M.VVar "universe"
@@ -231,19 +127,15 @@ let searchPattern e c t level =
     let pos = if b then "MainConclusion" else "InConclusion" in
       M.Select
        ("uri", 
-        M.Relation
-         (false,
-          M.RefineExact,
-          ("backPointer", []),
-          M.Ref (M.Const [r]),
-          ["pos"]),
-        M.Ex ["uri"] (M.Sub (M.Const [pos], M.Record ("uri", ("pos", []))))) in 
+        M.Relation (false, M.RefineExact, ("backPointer", []),
+                   M.Ref (M.Const [r]), [assign "pos" "position"]),
+        M.Ex ["uri"] (M.Sub (M.Const [pos], M.Record ("uri", in_path "pos")))) in 
    let rec build_intersect = function
-      | []       -> M.Pattern (M.Const [".*"])
+      | []       -> M.Pattern (M.Const ["[.]*"])
       | [hd]     -> build_select hd
       | hd :: tl -> M.Intersect (build_select hd, build_intersect tl)
    in
-   let levels = levels_of_term e c t in
+   let levels = L.levels_of_term e c t in
    let rest = restrict level levels in
    info := [string_of_int (List.length rest)];
    let q_in = build_intersect rest in
index 2e4e59d5c0fc0f26b8b142c69fe537b6e43f3d51..68c2ea2570859d7600719949b161d04fc3e2e729 100644 (file)
 
 exception Discard  
 
-type levels_spec = (string * bool * int) list
-
-val levels_of_term    : Cic.metasenv -> Cic.context -> Cic.term -> levels_spec
-
-val string_of_levels  : levels_spec -> string -> string
-
 val set_log_file      : string -> unit
 
 (* the callback function must return false iff the query must be skipped *)
index 01dd0e1735154710d0ba4e477faff058249951cf..24c631a1059413381ba9d132da87f71db548cd79 100644 (file)
@@ -14,7 +14,7 @@ opt: topLevel.opt
 
 DEPOBJS = topLevel.ml
 
-TOPLEVELOBJS = ../mQueryGenerator.cmo topLevel.cmo
+TOPLEVELOBJS = ../mQueryLevels.cmo ../mQueryGenerator.cmo topLevel.cmo
 
 depend:
        $(OCAMLDEP) $(DEPOBJS) > .depend
index d4af37c23e38cd3b16e9791329e5c665d359a558..4825c5b36c28a7f7ab47e2b679117797f674b560 100644 (file)
@@ -74,13 +74,13 @@ let rec display = function
       flush stdout
 
 let levels l =
-   let module Gen = MQueryGenerator in
+   let module Lev = MQueryLevels in
    let rec levels_aux = function
       | []           -> ()
       | term :: tail -> 
          levels_aux tail;
          print_string ("? " ^ CicPp.ppterm term ^ nl);
-         print_string (Gen.string_of_levels (Gen.levels_of_term [] [] term) nl);
+         print_string (Lev.string_of_levels (Lev.levels_of_term [] [] term) nl);
          flush stdout
    in
    levels_aux l