]> matita.cs.unibo.it Git - helm.git/commitdiff
The type substitution has been moved into Cic.
authorAndrea Asperti <andrea.asperti@unibo.it>
Tue, 20 Jul 2004 13:26:56 +0000 (13:26 +0000)
committerAndrea Asperti <andrea.asperti@unibo.it>
Tue, 20 Jul 2004 13:26:56 +0000 (13:26 +0000)
helm/ocaml/cic/cic.ml
helm/ocaml/cic/cicUtil.ml
helm/ocaml/cic/cicUtil.mli

index e310b6a9f07900d8e360da2c4309014088a216b7..7dc86114d7e72d82eff94fbde167a9576deaeca2 100644 (file)
@@ -110,6 +110,9 @@ and coInductiveFun =
 (* depend on new ones.                                           *)
 and conjecture = int * context * term
 and metasenv = conjecture list
+and substitution = (int * (context * term)) list
+
+
 
 (* a metasenv is a list of declarations of metas in declarations *)
 (* order (i.e. [oldest ; ... ; newest]). Older variables can not *)
index 55a70822ed6a95a9c04a95daebcfa3a4a105487c..ad01110c403f8b178ab91ddb7cdea3953d9b067e 100644 (file)
  *)
 
 exception Meta_not_found of int
+exception Subst_not_found of int
+
 
 let lookup_meta index metasenv =
   try
     List.find (fun (index', _, _) -> index = index') metasenv
   with Not_found -> raise (Meta_not_found index)
 
+let lookup_subst n subst =
+  try
+    List.assoc n subst
+  with Not_found -> raise (Subst_not_found n)
+
 let exists_meta index = List.exists (fun (index', _, _) -> (index = index'))
 
+(* clean_up_meta take a substitution, a metasenv a meta_inex and a local
+context l and clean up l with respect to the hidden hipothesis in the 
+canonical context *)
+
+let clean_up_local_context subst metasenv n l =
+  let cc =
+    (try
+       let (cc,_) = lookup_subst n subst in cc
+     with Subst_not_found _ ->
+       try
+        let (_,cc,_) = lookup_meta n metasenv in cc
+       with Meta_not_found _ -> assert false) in
+  (try 
+     List.map2
+       (fun t1 t2 ->
+         match t1,t2 with 
+             None , _ -> None
+           | _ , t -> t) cc l
+   with 
+       Invalid_argument _ -> assert false)
+
 let is_closed =
  let module C = Cic in
  let rec is_closed k =
index 9069c24fb40194132f87b13da0cff04fc6ae0e5e..c03783b86419eeed18ff52f6a2333641df4ff874 100644 (file)
  *)
 
 exception Meta_not_found of int
+exception Subst_not_found of int
 
 val lookup_meta: int -> Cic.metasenv -> Cic.conjecture
+val lookup_subst: int -> Cic.substitution -> Cic.context * Cic.term
 val exists_meta: int -> Cic.metasenv -> bool
+val clean_up_local_context :
+  Cic.substitution -> Cic.metasenv -> int -> (Cic.term option) list 
+  -> (Cic.term option) list
 
 val is_closed : Cic.term -> bool