]> matita.cs.unibo.it Git - helm.git/commitdiff
new iterator
authorEnrico Tassi <enrico.tassi@inria.fr>
Mon, 22 Sep 2008 15:35:20 +0000 (15:35 +0000)
committerEnrico Tassi <enrico.tassi@inria.fr>
Mon, 22 Sep 2008 15:35:20 +0000 (15:35 +0000)
helm/software/components/ng_kernel/nCicUtils.ml
helm/software/components/ng_kernel/nCicUtils.mli

index f4f77a3679783c3663931f13c6d3832c000463ec..74d1a78344f3a9862000723b014cc19ff80750e6 100644 (file)
@@ -80,3 +80,39 @@ let map g k f = function
      if oty1 == oty && t1 == t && pl1 == pl then orig 
      else C.Match(r,oty1,t1,pl1)
 ;;
+
+let map_term_fold_a g k f a = function
+ | C.Meta _ -> assert false
+ | C.Implicit _
+ | C.Sort _
+ | C.Const _
+ | C.Rel _ as t -> a,t
+ | C.Appl [] | C.Appl [_] -> assert false
+ | C.Appl l as orig ->
+    let a,l = 
+      (* sharing fold? *)
+      List.fold_right (fun t (a,l) -> let a,t = f k a t in a, t :: l) l (a,[])
+    in
+    a, (match l with
+       | C.Appl l :: tl -> C.Appl (l@tl)
+       | l1 when l == l1 -> orig
+       | l1 -> C.Appl l1)
+ | C.Prod (n,s,t) as orig ->
+     let a,s1 = f k a s in let a,t1 = f (g (n,C.Decl s) k) a t in
+     a, if t1 == t && s1 == s then orig else C.Prod (n,s1,t1)
+ | C.Lambda (n,s,t) as orig -> 
+     let a,s1 = f k a s in let a,t1 = f (g (n,C.Decl s) k) a t in
+     a, if t1 == t && s1 == s then orig else C.Lambda (n,s1,t1)
+ | C.LetIn (n,ty,t,b) as orig -> 
+     let a,ty1 = f k a ty in let a,t1 = f k a t in
+     let a,b1 = f (g (n,C.Def (t,ty)) k) a b in
+     a, if ty1 == ty && t1 == t && b1 == b then orig else C.LetIn (n,ty1,t1,b1)
+ | C.Match (r,oty,t,pl) as orig -> 
+     let a,oty1 = f k a oty in let a,t1 = f k a t in 
+     let a,pl1 = 
+       (* sharing fold? *)
+       List.fold_right (fun t (a,l) -> let a,t = f k a t in a,t::l) pl (a,[])
+     in
+     a, if oty1 == oty && t1 == t && pl1 == pl then orig 
+        else C.Match(r,oty1,t1,pl1)
+;;
index c87dd6638b72b4bfa7211fc83a6ec21b6004ee4c..1560094dcfee904df4e13412aae7bbfb841e903c 100644 (file)
@@ -27,3 +27,6 @@ val fold:
 val map:
  (NCic.hypothesis -> 'k -> 'k) -> 'k ->
  ('k -> NCic.term -> NCic.term) -> NCic.term -> NCic.term
+val map_term_fold_a:
+ (NCic.hypothesis -> 'k -> 'k) -> 'k ->
+ ('k -> 'a -> NCic.term -> 'a * NCic.term) -> 'a -> NCic.term -> 'a * NCic.term