]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/matita/matitaEngine.ml
added records
[helm.git] / helm / matita / matitaEngine.ml
index f16b0226678d9ea525c63e5c2bbc6f93e3a36303..2c946199b6c7b4488aba9b9fc496cd6f0be70e38 100644 (file)
@@ -79,7 +79,9 @@ let tactic_of_ast = function
                    | _ -> false) 
                  context
                with 
-                 Not_found -> raise (ProofEngineTypes.Fail (ident ^ " is not an hypothesis"))  
+                 Not_found -> 
+                   raise (ProofEngineTypes.Fail 
+                            (ident ^ " is not an hypothesis"))  
              in 
              (match hyp with
              | Some (_, Cic.Decl term) -> term
@@ -160,31 +162,6 @@ let eval_tactical status tac =
   in
   apply_tactic (tactical_of_ast tac)
 
-(** given a uri and a type list (the contructors types) builds a list of pairs
- *  (name,uri) that is used to generate authomatic aliases **)
-let extract_alias types uri = 
-  fst(List.fold_left (
-    fun (acc,i) (name, _, _, cl) -> 
-      ((name, UriManager.string_of_uriref (uri,[i]))
-      ::
-      (fst(List.fold_left (
-        fun (acc,j) (name,_) ->
-          (((name,UriManager.string_of_uriref (uri,[i;j])) :: acc) , j+1)
-        ) (acc,1) cl))),i+1
-  ) ([],0) types)
-
-(** adds a (name,uri) list l to a disambiguation environment e **)
-let env_of_list l e = 
-  let module DT = DisambiguateTypes in
-  let module DTE = DisambiguateTypes.Environment in
-  List.fold_left (
-    fun e (name,uri) -> 
-      DTE.add 
-       (DT.Id name) 
-       (uri,fun _ _ _ -> CicUtil.term_of_uri uri)
-       e
-  ) e l
-
 let eval_coercion status coercion = 
   let coer_uri,coer_ty =
     match coercion with 
@@ -279,16 +256,16 @@ let eval_command status cmd =
           "type you've declared!");
       MatitaLog.message (sprintf "%s defined" suri);
       let status = MatitaSync.add_constant ~uri ~body:bo ~ty ~ugraph status in
-      let status = 
-        let name = UriManager.name_of_uri uri in
-        let new_env = env_of_list [(name,suri)] status.aliases in
-        {status with aliases = new_env }
-      in
+      {status with proof_status = No_proof }
+  | TacticAst.Record (loc, params, name, ty, fields) ->
+      let suri = MatitaMisc.qualify status name ^ ".ind" in
+      let record_spec = (suri, params, ty, fields) in 
+      let status = MatitaSync.add_record_def record_spec status in
       {status with proof_status = No_proof }
   | TacticAst.Inductive (loc, dummy_params, types) ->
       (* dummy_params are not real params, it is a list of nothing, and the only
-       * semantic content is the len, that is leftno (note: leftno and pamaters
-       * have nothing in common).
+       * semantic content is the len, that is leftno (note: leftno and
+       * paramaters have nothing in common).
        *)
       let suri =
         match types with
@@ -303,28 +280,9 @@ let eval_command status cmd =
           (types, [], leftno) CicUniv.empty_ugraph
       in
       let status = 
-        MatitaSync.add_inductive_def
-          ~uri ~types ~params:[] ~leftno ~ugraph status
+        MatitaSync.add_inductive_def ~uri ~types ~leftno ~ugraph status
       in
-      (* aliases for the constructors and types *)
-      let aliases = env_of_list (extract_alias types uri) status.aliases in
-      (* aliases for the eliminations principles *)
-      let aliases = 
-        let base = String.sub suri 0 (String.length suri - 4)  in
-        env_of_list
-        (List.fold_left (
-          fun acc suffix -> 
-            if List.exists (
-              fun (uri,_) -> UriManager.string_of_uri uri = base ^ suffix
-            ) status.objects then
-              let u = base ^ suffix in
-              (UriManager.name_of_uri (UriManager.uri_of_string u),u)::acc
-            else
-              acc
-        ) [] ["_ind.con";"_rec.con";"_rec_t.con"]) aliases
-      in
-      let status = {status with proof_status = No_proof } in
-      { status with aliases = aliases}
+      {status with proof_status = No_proof }
   | TacticAst.Theorem (loc, thm_flavour, Some name, ty, None) ->
       let uri = 
         UriManager.uri_of_string (MatitaMisc.qualify status name ^ ".con") 
@@ -356,11 +314,6 @@ let eval_command status cmd =
       let body = CicMetaSubst.apply_subst subst body in
       let ty = CicMetaSubst.apply_subst subst ty in
       let status = MatitaSync.add_constant ~uri ~body ~ty ~ugraph status in
-      let status = 
-        let suri = UriManager.string_of_uri uri in
-        let new_env = env_of_list [(name,suri)] status.aliases in
-        {status with aliases = new_env }
-      in
       {status with proof_status = No_proof}
   | TacticAst.Theorem (_, _, None, _, _) ->
       command_error "The grammar should avoid having unnamed theorems!"
@@ -426,7 +379,7 @@ let disambiguate_term status term =
   in
   status, cic
   
-let disambiguate_terms status terms =
+let disambiguate_closedtypes status terms =
   let term = CicAst.pack terms in
   let status, term = disambiguate_term status term in
   status, CicUtil.unpack term
@@ -575,7 +528,7 @@ let disambiguate_inddef status params indTypes =
       add_ast (add_pi params typ);
       List.iter (fun (_, ast) -> add_ast (add_pi binders ast)) constructors)
     indTypes;
-  let status, terms = disambiguate_terms status !asts in
+  let status, terms = disambiguate_closedtypes status !asts in
   let terms = ref (List.rev terms) in
   let get_term () =
     match !terms with [] -> assert false | hd :: tl -> terms := tl; hd
@@ -613,7 +566,41 @@ let disambiguate_inddef status params indTypes =
   let cicIndTypes = List.rev cicIndTypes in
   status, (UriManager.uri_of_string uri, (cicIndTypes, [], paramsno))
 
+let disambiguate_record status params ty fields =
+  let packed = 
+    List.fold_right
+      (fun (name,ast) acc -> 
+        CicAst.Binder (`Forall, (Cic.Name name, Some ast), acc))
+    (params @ ["",ty] @ fields) (CicAst.Sort `Type)
+  in
+  prerr_endline (CicAstPp.pp_term packed);
+  let status, packed = disambiguate_term status packed in
+  let rec split t = function
+    | [] -> [],t
+    | (n,_)::tl -> 
+        match t with 
+        | Cic.Prod (_, src, tgt) ->
+            let l, t = split tgt tl in 
+            (n, src) :: l, t 
+        | _-> assert false 
+  in
+  let params, t = split packed params in
+  let ty, t = 
+    match t with 
+    | Cic.Prod (_ , ty, t) -> ty, t
+    | _ -> assert false 
+  in
+  let fields, _ = 
+    split (let t,_,_ = CicMetaSubst.delift_rels [] [] 1 t in t) fields 
+  in
+  params, ty, fields
+  
 let disambiguate_command status = function
+  | TacticAst.Record(loc, params,name,ty,fields) ->
+      let params, ty, fields = 
+        disambiguate_record status params ty fields 
+      in
+      status, TacticAst.Record(loc, params, name, ty, fields)
   | TacticAst.Inductive (loc, params, types) ->
       let (status, (uri, (ind_types, vars, paramsno))) =
         disambiguate_inddef status params types
@@ -709,3 +696,4 @@ let initial_status =
     objects = [];
   }
 
+