]> matita.cs.unibo.it Git - helm.git/commitdiff
Added universes handling. Tag PRE_UNIVERSES may help ;)
authorEnrico Tassi <enrico.tassi@inria.fr>
Wed, 1 Dec 2004 09:43:44 +0000 (09:43 +0000)
committerEnrico Tassi <enrico.tassi@inria.fr>
Wed, 1 Dec 2004 09:43:44 +0000 (09:43 +0000)
14 files changed:
helm/gTopLevel/batchParser.ml
helm/gTopLevel/batchParser.mli
helm/gTopLevel/chosenTermEditor.mli
helm/gTopLevel/disambiguatingParser.mli
helm/gTopLevel/gTopLevel.ml
helm/gTopLevel/invokeTactics.ml
helm/gTopLevel/logicalOperations.ml
helm/gTopLevel/oldDisambiguate.ml
helm/gTopLevel/regtest.ml
helm/gTopLevel/termEditor.ml
helm/gTopLevel/termEditor.mli
helm/gTopLevel/testlibrary.ml
helm/gTopLevel/texTermEditor.ml
helm/gTopLevel/texTermEditor.mli

index b19797df8bd3a3341e708533052dd9cf88db5101..8eb800b84795f39be0b05a6f930ab132032db8d0 100644 (file)
@@ -79,11 +79,12 @@ let parse dbd ?(uri_pred = constants_only ~prefix:"") =
   in
   let empty_context = [] in
   let empty_metasenv = [] in
-  fun input ->
+  fun input ugraph ->
    (Disambiguate'.disambiguate_term
-     dbd empty_context empty_metasenv input empty_environment)
+     ~dbd empty_context empty_metasenv input empty_environment 
+      ~initial_ugraph:ugraph)
 
-let parse_pp dbd ?uri_pred input = 
- List.map (fun (_,_,t) -> CicPp.ppterm t)
-  (parse dbd ?uri_pred input)
+let parse_pp dbd ?uri_pred input ugraph 
+ List.map (fun (_,_,t,_) -> CicPp.ppterm t)
+  (parse dbd ?uri_pred input ugraph )
 
index edfaa69272d3b032fa1da3604e86db93fde7a7bf..6d2900304a228708270a8268e1f947c367c13b74 100644 (file)
@@ -39,11 +39,16 @@ val uri_pred_of_conf:
    * uri_pred is the predicate used to select which uris are tried. Per default
    * only constant URIs are accepted *)
 val parse:
- Mysql.dbd -> ?uri_pred:(string -> bool) -> string ->
-  (DisambiguatingParser.EnvironmentP3.t * Cic.metasenv * Cic.term) list
+ Mysql.dbd -> ?uri_pred:(string -> bool) -> string ->  
+  CicUniv.universe_graph ->
+  (DisambiguatingParser.EnvironmentP3.t * 
+   Cic.metasenv * 
+   Cic.term * 
+   CicUniv.universe_graph) list
 
   (** as above, but instead of returning the parsed cic term, pretty prints it
    * (ignoring returned metasenv)
    *)
-val parse_pp: Mysql.dbd -> ?uri_pred:(string -> bool) -> string -> string list
+val parse_pp: Mysql.dbd -> ?uri_pred:(string -> bool) -> 
+  string -> CicUniv.universe_graph -> string list
 
index d88932c70d51b3a511fe62bd57dd07370fd0f810..8a54024490c3e49ff394346a8f4cd04147383fd2 100644 (file)
@@ -4,7 +4,7 @@ class type term_editor =
     method get_as_string : string
     method get_metasenv_and_term :
       context:Cic.context ->
-      metasenv:Cic.metasenv -> Cic.metasenv * Cic.term
+      metasenv:Cic.metasenv -> Cic.metasenv * Cic.term * CicUniv.universe_graph
     method environment : DisambiguatingParser.EnvironmentP3.t ref
     method reset : unit
     method set_term : string -> unit
index a8afd0e65c3a0e23d6846e4b79e75984aacc207b..3d2c91f25bca396d84a84a09c202b8be2d4dd401 100644 (file)
@@ -41,8 +41,10 @@ module Make (C : DisambiguateTypes.Callbacks) :
       Cic.metasenv ->
       string ->
       EnvironmentP3.t ->  (* previous interpretation status *)
-        (EnvironmentP3.t *               (* new interpretation status *)
-         Cic.metasenv *                  (* new metasenv *)
-         Cic.term) list                  (* disambiguated term *)
+      ?initial_ugraph:CicUniv.universe_graph ->
+      (EnvironmentP3.t *               (* new interpretation status *)
+       Cic.metasenv *                  (* new metasenv *)
+       Cic.term *
+       CicUniv.universe_graph) list    (* disambiguated term *)
   end
 
index 7ba0650ce3c424345c42e036c8fac7686e9bf55b..2276fdac4055c33d612a0a95fc3376a347f55c4a 100644 (file)
  * http://helm.cs.unibo.it/
  *)
 
-(******************************************************************************)
-(*                                                                            *)
-(*                               PROJECT HELM                                 *)
-(*                                                                            *)
-(*                Claudio Sacerdoti Coen <sacerdot@cs.unibo.it>               *)
-(*                                 06/01/2002                                 *)
-(*                                                                            *)
-(*                                                                            *)
-(******************************************************************************)
+(*****************************************************************************)
+(*                                                                           *)
+(*                              PROJECT HELM                                 *)
+(*                                                                           *)
+(*               Claudio Sacerdoti Coen <sacerdot@cs.unibo.it>               *)
+(*                                06/01/2002                                 *)
+(*                                                                           *)
+(*                                                                           *)
+(*****************************************************************************)
 
 let debug_level = ref 1
 let debug_print ?(level = 1) s = if !debug_level >= level then prerr_endline s
@@ -150,7 +150,8 @@ let check_window uris =
           ~packing:scrolled_window#add ~width:400 ~height:280 () in
         let expr =
          let term = CicUtil.term_of_uri uri in
-          (Cic.Cast (term, CicTypeChecker.type_of_aux' [] [] term))
+           (Cic.Cast (term, fst(CicTypeChecker.type_of_aux' [] [] term 
+                                 CicUniv.empty_ugraph )))
         in
          try
           mmlwidget#load_sequent [] (111,[],expr)
@@ -436,42 +437,52 @@ let save_obj uri obj =
 ;;
 
 let qed () =
- match ProofEngine.get_proof () with
-    None -> assert false
-  | Some (uri,[],bo,ty) ->
-     let uri = match uri with Some uri -> uri | _ -> assert false in
-     (* we want to typecheck in the ENV *)
-     (*let old_working = CicUniv.get_working () in
-     CicUniv.set_working (CicUniv.get_global ());*)
-     CicUniv.directly_to_env_begin () ;
-     if
-      CicReduction.are_convertible []
-       (CicTypeChecker.type_of_aux' [] [] bo) ty
-     then
-      begin
-       (*CSC: Wrong: [] is just plainly wrong *)
-       let proof = Cic.Constant (UriManager.name_of_uri uri,Some bo,ty,[]) in
-       let (acic,ids_to_inner_types,ids_to_inner_sorts) =
-        (rendering_window ())#output#load_proof uri proof
-       in
-        !qed_set_sensitive false ;
-        (* let's save the theorem and register it to the getter *) 
-        let pathname = pathname_of_annuri (UriManager.buri_of_uri uri) in
-         make_dirs pathname ;
-         save_object_to_disk uri acic ids_to_inner_sorts ids_to_inner_types
-          pathname;
-       (* add the object to the env *)
-       CicEnvironment.add_type_checked_term uri (
-        Cic.Constant ((UriManager.name_of_uri uri),(Some bo),ty,[]));
-       (* FIXME: the variable list!! *)
-       (*
-       CicUniv.qed (); (* now the env has the right constraints *)*)
-       CicUniv.directly_to_env_end();
-       CicUniv.reset_working ();
-      end
-     else
-      raise WrongProof
-  | _ -> raise OpenConjecturesStillThere
+  match ProofEngine.get_proof () with
+      None -> assert false
+    | Some (uri,[],bo,ty) ->
+       let uri = match uri with Some uri -> uri | _ -> assert false in
+         (* we want to typecheck in the ENV *)
+         prerr_endline "-------------> QED";
+         let ty_bo,u = 
+           CicTypeChecker.type_of_aux' [] [] bo CicUniv.empty_ugraph in
+         let b,u1 = CicReduction.are_convertible [] ty_bo ty u in
+           if b then
+             begin
+               (*CSC: Wrong: [] is just plainly wrong *)
+               let proof = 
+                 Cic.Constant (UriManager.name_of_uri uri,Some bo,ty,[]) in
+               let (acic,ids_to_inner_types,ids_to_inner_sorts) =
+                 (rendering_window ())#output#load_proof uri proof
+               in
+                 !qed_set_sensitive false ;
+                 (* let's save the theorem and register it to the getter *) 
+                 let pathname = 
+                   pathname_of_annuri (UriManager.buri_of_uri uri) 
+                 in
+                 let list_of_universes = 
+                   CicUnivUtils.universes_of_obj (Cic.Constant ("",None,ty,[]))
+                 in
+                 let u1_clean = CicUniv.clean_ugraph u1 list_of_universes in
+                 let u2 = CicUniv.fill_empty_nodes_with_uri u1_clean uri in
+                    (**********************************************
+                      TASSI: to uncomment whe universes will be ON
+                    ***********************************************)
+                    (*
+                   make_dirs pathname ;
+                   save_object_to_disk uri acic ids_to_inner_sorts 
+                     ids_to_inner_types pathname;
+                    *)
+                   (* save the universe graph u2 *)
+                   (* add the object to the env *)
+                   CicEnvironment.add_type_checked_term uri ((
+                     Cic.Constant ((UriManager.name_of_uri uri),
+                                   (Some bo),ty,[])),u2);
+                   (* FIXME: the variable list!! *)
+                   prerr_endline "-------------> FINE";
+             end
+           else
+             raise WrongProof
+    | _ -> raise OpenConjecturesStillThere
 ;;
 
   (** save an unfinished proof on the filesystem *)
@@ -493,11 +504,11 @@ let typecheck_loaded_proof metasenv bo ty =
   ignore (
    List.fold_left
     (fun metasenv ((_,context,ty) as conj) ->
-      ignore (T.type_of_aux' metasenv context ty) ;
+      ignore (T.type_of_aux' metasenv context ty CicUniv.empty_ugraph) ;
       metasenv @ [conj]
     ) [] metasenv) ;
-  ignore (T.type_of_aux' metasenv [] ty) ;
-  ignore (T.type_of_aux' metasenv [] bo)
+  ignore (T.type_of_aux' metasenv [] ty CicUniv.empty_ugraph) ;
+  ignore (T.type_of_aux' metasenv [] bo CicUniv.empty_ugraph)
 ;;
 
 let decompose_uris_choice_callback uris = 
@@ -869,7 +880,7 @@ let
        (`Error (`T (Printexc.to_string e)))
   in
   let show_in_show_window_uri uri =
-   let obj = CicEnvironment.get_obj uri in
+   let obj,_ = CicEnvironment.get_obj uri CicUniv.empty_ugraph in
     show_in_show_window_obj uri obj
   in
    let show_in_show_window_callback mmlwidget ((n : Gdome.element option),_,_,_) =
@@ -1222,7 +1233,7 @@ let new_inductive () =
            (fun name (newinputt,cons_names_entry) ->
              let consnamesstr = cons_names_entry#text in
              let cons_names = Str.split (Str.regexp " +") consnamesstr in
-             let metasenv,expr =
+             let metasenv,expr,ugraph =
               newinputt#get_metasenv_and_term ~context:[] ~metasenv:[]
              in
               match metasenv with
@@ -1324,7 +1335,7 @@ let new_inductive () =
         let cons_types =
          List.map2
           (fun name inputt ->
-            let metasenv,expr =
+            let metasenv,expr,ugraph =
              inputt#get_metasenv_and_term ~context ~metasenv:[]
             in
              match metasenv with
@@ -1368,22 +1379,29 @@ let new_inductive () =
     let params = [] in
     let tys = !get_types_and_cons () in
      let obj = Cic.InductiveDefinition(tys,params,!paramsno) in
-      begin
-       try
-        debug_print (CicPp.ppobj obj);
-        CicTypeChecker.typecheck_mutual_inductive_defs uri
-         (tys,params,!paramsno) ;
-        with
-         e ->
-          debug_print "Offending mutual (co)inductive type declaration:" ;
-          debug_print (CicPp.ppobj obj) ;
-      end ;
+     let u = 
+       begin
+        try
+           debug_print (CicPp.ppobj obj);
+           CicTypeChecker.typecheck_mutual_inductive_defs uri
+            (tys,params,!paramsno) CicUniv.empty_ugraph 
+        with
+             e ->
+               debug_print "Offending mutual (co)inductive type declaration:" ;
+               debug_print (CicPp.ppobj obj) ;
+              (* I think we should fail here! *)
+              CicUniv.empty_ugraph
+       end 
+     in
       (* We already know that obj is well-typed. We need to add it to the  *)
       (* environment in order to compute the inner-types without having to *)
       (* debrujin it or having to modify lots of other functions to avoid  *)
       (* asking the environment for the MUTINDs we are defining now.       *)
-      CicEnvironment.put_inductive_definition uri obj ;
+
+      (* u should be cleaned before adding it to the env *)
+      CicEnvironment.put_inductive_definition uri (obj,u) ;
       save_obj uri obj ;
+      (* TASSI: FIXME we should save the cleaned u here *)
       show_in_show_window_obj uri obj
    with
     e ->
@@ -1462,7 +1480,7 @@ let new_proof () =
     (function () ->
       chosen := true ;
       try
-       let metasenv,parsed = newinputt#get_metasenv_and_term [] [] in
+       let metasenv,parsed,ugraph = newinputt#get_metasenv_and_term [] [] in
        let uristr = "cic:" ^ uri_entry#text in
        let uri = UriManager.uri_of_string uristr in
         if String.sub uristr (String.length uristr - 4) 4 <> ".con" then
@@ -1514,7 +1532,9 @@ let new_proof () =
 
 let check_term_in_scratch scratch_window metasenv context expr = 
  try
-  let ty = CicTypeChecker.type_of_aux' metasenv context expr in
+  let ty,ugraph = 
+    CicTypeChecker.type_of_aux' metasenv context expr CicUniv.empty_ugraph
+  in
   let expr = Cic.Cast (expr,ty) in
    scratch_window#show () ;
    scratch_window#set_term expr ;
@@ -1544,8 +1564,10 @@ let check scratch_window () =
         canonical_context
   in
    try
-    let metasenv',expr = inputt#get_metasenv_and_term context metasenv in
-     check_term_in_scratch scratch_window metasenv' context expr
+    let metasenv',expr,ugraph = 
+      inputt#get_metasenv_and_term context metasenv 
+    in
+      check_term_in_scratch scratch_window metasenv' context expr
    with
     e ->
      HelmLogger.log
@@ -1568,10 +1590,10 @@ let open_ () =
  let notebook = (rendering_window ())#notebook in
    try
     let uri = input_or_locate_uri ~title:"Open" in
-     ignore(CicTypeChecker.typecheck uri);
+     ignore(CicTypeChecker.typecheck uri CicUniv.empty_ugraph);
      (* TASSI: typecheck mette la uri nell'env... cosa fa la open_ ?*)
      let metasenv,bo,ty =
-      match CicEnvironment.get_cooked_obj uri with
+      match fst(CicEnvironment.get_cooked_obj uri CicUniv.empty_ugraph) with
          Cic.Constant (_,Some bo,ty,_) -> [],bo,ty
        | Cic.CurrentProof (_,metasenv,bo,ty,_) -> metasenv,bo,ty
        | Cic.Constant _
@@ -1833,7 +1855,8 @@ let refine_constraints (must_obj,must_rel,must_sort) =
 let completeSearchPattern () =
  let inputt = ((rendering_window ())#inputt : TermEditor.term_editor) in
   try
-   let metasenv,expr = inputt#get_metasenv_and_term ~context:[] ~metasenv:[] in
+   let metasenv,expr,ugraph = 
+     inputt#get_metasenv_and_term ~context:[] ~metasenv:[] in
    let must = CGSearchPattern.get_constraints expr in
    let must',only = refine_constraints must in
    let query =
index cbe25219ce724b58c807c2aeae72cf2e62e0d9cc..13dc83f1d02dbba6531d18db4e70d5f0fdbc3321 100644 (file)
@@ -169,7 +169,7 @@ module Make (C: Callbacks) : Tactics =
       in
        handle_refresh_exception
         (fun () ->
-          let metasenv',expr =
+          let metasenv',expr,ugraph = (*TASSI:  FIX THIS*)
            (match term with
            | None -> ()
            | Some t -> (C.term_editor ())#set_term t);
@@ -235,7 +235,7 @@ module Make (C: Callbacks) : Tactics =
                     List.find (function (m,_,_) -> m=metano) metasenv
                    in
                     canonical_context in
-              let (metasenv',expr) =
+              let (metasenv',expr,ugraph) =(* FIX THIS AND *)
                (C.term_editor ())#get_metasenv_and_term
                 canonical_context metasenv
               in
index 93c511f138336469b9bb5b3e9cc046effc9dd69f..3fab938a058360d73f93c9d9dcf4ec6b2892af72 100644 (file)
@@ -94,8 +94,10 @@ let to_sequent id ids_to_terms ids_to_father_ids =
        None -> assert false
      | Some (_,metasenv,_,_) -> metasenv
    in
-    let ty = CicTypeChecker.type_of_aux' metasenv context term in
-     P.perforate context term ty (* P.perforate also sets the goal *)
+    let ty,_ = (* TASSI: FIXME ehhmmmm *)
+      CicTypeChecker.type_of_aux' metasenv context term CicUniv.empty_ugraph 
+    in
+      P.perforate context term ty (* P.perforate also sets the goal *)
 ;;
 
 exception FocusOnlyOnMeta;;
@@ -110,8 +112,10 @@ let focus id ids_to_terms ids_to_father_ids =
        None -> assert false
      | Some (_,metasenv,_,_) -> metasenv
    in
-    let ty = CicTypeChecker.type_of_aux' metasenv context term in
-     match term with
-        Cic.Meta (n,_) -> P.goal := Some n
-      | _ -> raise FocusOnlyOnMeta
+    let ty,_ = 
+      CicTypeChecker.type_of_aux' metasenv context term CicUniv.empty_ugraph 
+    in
+      match term with
+          Cic.Meta (n,_) -> P.goal := Some n
+       | _ -> raise FocusOnlyOnMeta
 ;;
index b760b3b8ce86d4c6e3ee3dd19fe934b7cd741195..24dd30f91077f48c7daf21a87a130e988cb83553 100644 (file)
@@ -160,10 +160,10 @@ module Make(C:Callbacks) =
         let metasenv',expr = mk_metasenv_and_expr resolve_id' in
 (*CSC: Bug here: we do not try to typecheck also the metasenv' *)
          try
-          let term,_,metasenv'' =
-           CicRefine.type_of_aux' metasenv' context expr
+          let term,_,metasenv'',_ = (* TASSI: FIXME what are we doning here?*)
+           CicRefine.type_of_aux' metasenv' context expr CicUniv.empty_ugraph
           in
-           Ok (term,metasenv'')
+           Ok (term,metasenv'') (* TASSI: whould we pass back the ugraph? *)
          with
             CicRefine.Uncertain _ ->
 prerr_endline ("%%% UNCERTAIN!!! " ^ CicPp.ppterm expr) ;
index 7836fae472848fa423dd923e2437f7ab8f96aac6..bee1c28166a54f555ee0448253b4f32b08a6b774 100644 (file)
@@ -227,11 +227,13 @@ let as_expected report_fname expected found =
 let test_this mqi_handle uri_pred raw_term =
   let empty_context = [] in
   List.map
-   (function (env, metasenv, cic_term) ->
+   (function (env, metasenv, cic_term,ugraph ) ->
      let etype =
       try
-       CicPp.ppterm
-        (CicTypeChecker.type_of_aux' metasenv empty_context cic_term)
+       let ty, _ = 
+          (CicTypeChecker.type_of_aux' metasenv empty_context cic_term ugraph)
+       in
+         CicPp.ppterm ty
       with _ -> "MALFORMED"
      in
      let ereduced =
@@ -246,7 +248,7 @@ let test_this mqi_handle uri_pred raw_term =
        etype = etype ^ "\n";
        ereduced = ereduced ^ "\n";
      }
-   ) (BatchParser.parse mqi_handle ~uri_pred raw_term)
+   ) (BatchParser.parse mqi_handle ~uri_pred raw_term CicUniv.empty_ugraph)
 
 let dump_environment filename =
   try
index f74e45077827dd176d9e676decf506346a317e15..4cca702219db51e0a4e9abdba72cb1cd5a4c348b 100644 (file)
  * http://cs.unibo.it/helm/.
  *)
 
-(******************************************************************************)
-(*                                                                            *)
-(*                               PROJECT HELM                                 *)
-(*                                                                            *)
-(*                Claudio Sacerdoti Coen <sacerdot@cs.unibo.it>               *)
-(*                                 06/01/2002                                 *)
-(*                                                                            *)
-(*                                                                            *)
-(******************************************************************************)
+(*****************************************************************************)
+(*                                                                           *)
+(*                              PROJECT HELM                                 *)
+(*                                                                           *)
+(*               Claudio Sacerdoti Coen <sacerdot@cs.unibo.it>               *)
+(*                                06/01/2002                                 *)
+(*                                                                           *)
+(*                                                                           *)
+(*****************************************************************************)
 
 open Printf
 
@@ -44,7 +44,8 @@ class type term_editor =
    method get_as_string : string
    method get_metasenv_and_term :
      context:Cic.context ->
-     metasenv:Cic.metasenv -> Cic.metasenv * Cic.term
+     metasenv:Cic.metasenv -> 
+     Cic.metasenv * Cic.term * CicUniv.universe_graph
    method reset : unit
    (* The input of set_term is unquoted *)
    method set_term : string -> unit
@@ -61,7 +62,7 @@ module Make(C:DisambiguateTypes.Callbacks) =
    =
     let environment =
      match share_environment_with with
-        None -> ref
+        None -> ref (*DisambiguateTypes.empty_environment*)
           (DisambiguatingParser.EnvironmentP3.of_string
             DisambiguatingParser.EnvironmentP3.empty)
       | Some obj -> obj#environment
@@ -98,16 +99,18 @@ module Make(C:DisambiguateTypes.Callbacks) =
            | None -> None
          ) context
        in
-        let environment',metasenv,expr =
+        let environment',metasenv,expr,ugraph =
          match
           Disambiguate'.disambiguate_term ~dbd context metasenv
-           (input#buffer#get_text ()) !environment
+           (input#buffer#get_text ()) ~initial_ugraph:CicUniv.empty_ugraph
+           !environment
          with
-            [environment',metasenv,expr] -> environment',metasenv,expr
+            [environment',metasenv,expr,u] -> environment',metasenv,expr,u
           | _ -> assert false
         in
         environment := environment';
-        (metasenv, expr)
+        (metasenv, expr,ugraph) 
+         (* TASSI: FIXME ?are we sure we have to keep this?  *)
 
       method environment = environment
    end
index 9ae451e4b57fb1e1418e79e77ed82f50c7e23e86..2817f812a7b9e44c4cd5fb26343550fb250795dc 100644 (file)
@@ -30,7 +30,8 @@ class type term_editor =
    method get_as_string : string
    method get_metasenv_and_term :
      context:Cic.context ->
-     metasenv:Cic.metasenv -> Cic.metasenv * Cic.term
+     metasenv:Cic.metasenv -> 
+     Cic.metasenv * Cic.term * CicUniv.universe_graph
    method reset : unit
    method set_term : string -> unit
    method environment : DisambiguatingParser.EnvironmentP3.t ref
index fccdc19c619530b67093437c77a00254b2534869..f35ee096a23f5fa63b0abf1efc06ff33ba1d7d60 100644 (file)
@@ -38,7 +38,12 @@ module Disambiguate' = Disambiguate.Make (DisambiguateCallbacks)
 
 let debug_print s = prerr_endline ("^^^^^^ " ^ s)
 
-let test_uri uri =
+let test_uri typecheck uri =
+  if typecheck then
+    try ignore(CicTypeChecker.typecheck uri);1
+    with CicTypeChecker.TypeCheckerFailure s | 
+         CicTypeChecker.AssertFailure s -> 0
+  else
   let obj = CicEnvironment.get_obj uri in
   let (annobj, _, _, ids_to_inner_sorts, _, _, _) =
     Cic2acic.acic_object_of_cic_object ~eta_fix:false obj
@@ -103,10 +108,10 @@ ignore
 ;;
 
 
-let test_uri uri =
+let test_uri typecheck uri =
   try
    ignore (Unix.alarm !time_out) ;
-   if test_uri uri = 1 then `Ok else `Maybe
+   if test_uri typecheck uri = 1 then `Ok else `Maybe
   with
   | TimeOut ->
      (* We do this to clear the alarm set by the signal handler *)
@@ -133,10 +138,10 @@ let report (ok,nok,maybe,timeout) =
   List.iter (fun s -> print_endline ("\t" ^ s)) (List.rev !timeout);
   print_newline ()
 
-let do_uri (ok, nok, maybe, timeout) uri =
+let do_uri typecheck (ok, nok, maybe, timeout) uri =
   let uri_str = UriManager.string_of_uri uri in
   printf "Testing URI: %-55s %!" (uri_str ^ " ...");
-  match test_uri uri with
+  (match test_uri typecheck uri with
   | `Ok ->
       print_endline "\e[01;32m[   OK   ]\e[00m";
       ok := uri_str :: !ok
@@ -148,9 +153,12 @@ let do_uri (ok, nok, maybe, timeout) uri =
       maybe := uri_str :: !maybe
   | `TimeOut ->
       print_endline "\e[01;34m[TIMEOUT!]\e[00m";
-      timeout := uri_str :: !timeout
+      timeout := uri_str :: !timeout);
+  print_endline "--";
+  print_endline (CicUniv.print_stats ());
+  print_endline "--"
 
-let do_file status fname =
+let do_file typecheck status fname =
   try
     let ic = open_in fname in
     (try
@@ -158,7 +166,7 @@ let do_file status fname =
         let line = input_line ic in
         try
           let uri = UriManager.uri_of_string line in
-          do_uri status uri
+          do_uri typecheck status uri
         with UriManager.IllFormedUri _ ->
           printf "Error parsing URI '%s', ignoring it" line
       done
@@ -175,6 +183,7 @@ let _ =
        (HelmLogger.string_of_html_msg msg));
   let names = ref [] in
   let tryvars = ref false in
+  let typecheck = ref false in
   let prefix = ref "" in
   let varsprefix = ref "####" in
   let usage = "testlibrary [OPTION] ... (uri1 | file1) (uri2 | file2) ..." in
@@ -186,7 +195,8 @@ let _ =
       "-varsprefix", Arg.Set_string varsprefix,
         "limit variable choices to URIs beginning with prefix; overrides -prefix" ;
       "-timeout", Arg.Set_int time_out,
-       "number of seconds before a timeout; 0 means no timeout"
+       "number of seconds before a timeout; 0 means no timeout";
+       "-typecheck", Arg.Set typecheck, "simply typechek the uri"
     ]
   in
   Arg.parse spec (fun name -> names := name :: !names) usage;
@@ -199,10 +209,10 @@ let _ =
     (fun name ->
       try
         let uri = UriManager.uri_of_string name in
-        do_uri status uri
+        do_uri !typecheck status uri
       with UriManager.IllFormedUri _ ->
         if Sys.file_exists name then
-          do_file status name
+          do_file !typecheck status name
         else
           printf "Don't know what to do with '%s', ignoring it\n%!" name)
     names ;
index d0fefdee3c271750735ceb061ea95a352902704f..a59fb3489b2ca0679cac61073c2b6723cfbd0902 100644 (file)
@@ -45,7 +45,8 @@ class type term_editor =
    method get_as_string : string
    method get_metasenv_and_term :
      context:Cic.context ->
-     metasenv:Cic.metasenv -> Cic.metasenv * Cic.term
+     metasenv:Cic.metasenv -> 
+     Cic.metasenv * Cic.term * CicUniv.universe_graph
    method reset : unit
    (* The input of set_term is unquoted *)
    method set_term : string -> unit
@@ -217,16 +218,17 @@ module Make(C:DisambiguateTypes.Callbacks) =
          ) context
        in
         debug_print ("TexTermEditor: Raw Tex: " ^ (Mathml_editor.get_tex tex_editor)) ;
-        let environment',metasenv,expr =
+        let environment',metasenv,expr,ugraph =
          match
           Disambiguate'.disambiguate_term ~dbd
-           context metasenv (Mathml_editor.get_tex tex_editor) !environment
+           context metasenv (Mathml_editor.get_tex tex_editor) 
+           ~initial_ugraph:CicUniv.empty_ugraph !environment
          with
-            [environment',metasenv,expr] -> environment',metasenv,expr
+            [environment',metasenv,expr,u] -> environment',metasenv,expr,u
           | _ -> assert false
         in
          environment := environment' ;
-         metasenv,expr
+         metasenv,expr,ugraph
 
       method environment = environment
    end
index fa2dbb95bb43dc174d300395b783d95514553135..ece0bd8d99dbb84cee6ffe8a65ea1d7590a67998 100644 (file)
@@ -30,7 +30,8 @@ class type term_editor =
    method get_as_string : string
    method get_metasenv_and_term :
      context:Cic.context ->
-     metasenv:Cic.metasenv -> Cic.metasenv * Cic.term
+     metasenv:Cic.metasenv -> 
+     Cic.metasenv * Cic.term * CicUniv.universe_graph
    method reset : unit
    (* The input of set_term is unquoted *)
    method set_term : string -> unit