X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;ds=sidebyside;f=ocaml%2Fpure.ml;h=be08bb4ae3086086e704824d2636c9d843c38409;hb=47a9f6a73ecea5a2e60932ce324e21f4a90315c2;hp=f1cac843e2349f15c1e5c4cf9c5dd00e3c05e4af;hpb=5cecab147f53f77dcf70a0f1845772d41cff1597;p=fireball-separation.git diff --git a/ocaml/pure.ml b/ocaml/pure.ml index f1cac84..be08bb4 100644 --- a/ocaml/pure.ml +++ b/ocaml/pure.ml @@ -75,7 +75,7 @@ let unwind ?(tbl = Hashtbl.create 317) m = | V n -> (try lift l (cache_unwind (List.nth e (n - l))) - with Failure _ -> V (n - l)) + with Failure _ -> V n) | L t -> L (aux (l+1) t) | B -> B in let t = aux 0 t in @@ -90,10 +90,20 @@ in String.concat "," (List.map print_machine s) ^ "]" ;; *) + let omega = let delta = L(A(V 0, V 0)) in A(delta,delta) + + let rec is_divergent = + function + t when t = omega -> true + | A(t,_) -> is_divergent t + | L(t) -> is_divergent t + | _ -> false + let mwhd m = let rec aux g = function (* mmm -> print_endline (print_machine mmm); match mmm with *) + m when is_divergent (unwind m) -> [], B, [] | (e,A(t1,t2),s) -> let t2' = aux g (e,t2,[]) in let (_,t,_) = t2' in @@ -105,7 +115,7 @@ in (try let e,t,s' = List.nth e n in aux g (e,t,s'@s) - with Invalid_argument "List.nth" | Failure _ -> m + with Invalid_argument _ | Failure _ -> m ) | (e, B, _) -> (e, B, []) | (e, L t, []) -> @@ -131,6 +141,19 @@ let omega should_explode = let diverged = (=) B;; +(* Note: maps only variables <= freshno *) +let env_of_sigma freshno sigma = + let rec aux n = + if n > freshno then + [] + else + let e = aux (n+1) in + (try + e, lift (-n-1) (snd (List.find (fun (i,_) -> i = n) sigma)),[] + with + Not_found -> ([], V n, []) ) :: e + in aux 0 + end module Scott =