]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/gTopLevel/gTopLevel.ml
Added universes handling. Tag PRE_UNIVERSES may help ;)
[helm.git] / helm / gTopLevel / gTopLevel.ml
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 =