Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
(* ========================================================================= *) (* Rewriting. *) (* *) (* Copyright (c) 2003-2007, John Harrison. (See "LICENSE.txt" for details.) *) (* ========================================================================= *) (* ------------------------------------------------------------------------- *) (* Rewriting at the top level with first of list of equations. *) (* ------------------------------------------------------------------------- *) let rec rewrite1 eqs t = match eqs with Atom(R("=",[l;r]))::oeqs -> (try tsubst (term_match undefined [l,t]) r with Failure _ -> rewrite1 oeqs t) | _ -> failwith "rewrite1";; (* ------------------------------------------------------------------------- *) (* Rewriting repeatedly and at depth (top-down). *) (* ------------------------------------------------------------------------- *) let rec rewrite eqs tm = try rewrite eqs (rewrite1 eqs tm) with Failure _ -> match tm with Var x -> tm | Fn(f,args) -> let tm' = Fn(f,map (rewrite eqs) args) in if tm' = tm then tm else rewrite eqs tm';; (* ------------------------------------------------------------------------- *) (* Example: 3 * 2 + 4 in successor notation. *) (* ------------------------------------------------------------------------- *) START_INTERACTIVE;; rewrite [<<0 + x = x>>; <>; <<0 * x = 0>>; <>] <<|S(S(S(0))) * S(S(0)) + S(S(S(S(0))))|>>;; END_INTERACTIVE;; (* ------------------------------------------------------------------------- *) (* Note that ML doesn't accept nonlinear patterns. *) (* ------------------------------------------------------------------------- *) (*********** Point being that CAML doesn't accept nonlinear patterns function (x,x) -> 0;; *********** Actually fun x x -> 0 works, but the xs seem to be *********** considered distinct **********)