src/HOL/Update.ML
author nipkow
Mon, 20 Jul 1998 16:04:53 +0200
changeset 5162 53e505c6019c
parent 5154 40fd46f3d3a1
child 5195 277831ae7eac
permissions -rw-r--r--
Added simproc list_eq.

(*  Title:      HOL/Update.thy
    ID:         $Id$
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
    Copyright   1998  University of Cambridge

Function updates: like theory Map, but for ordinary functions
*)

open Update;

Goalw [update_def] "(f(x:=y) = f) = (f x = y)";
by Safe_tac;
by (etac subst 1);
by (rtac ext 2);
by Auto_tac;
qed "update_idem_iff";

(* f x = y ==> f(x:=y) = f *)
bind_thm("update_idem", update_idem_iff RS iffD2);

(* f(x := f x) = f *)
AddIffs [refl RS update_idem];

Goal "(f(x:=y))z = (if z=x then y else f z)";
by (simp_tac (simpset() addsimps [update_def]) 1);
qed "update_apply";
Addsimps [update_apply];