src/HOL/HOLCF/IOA/Storage/Action.thy
author wenzelm
Mon, 18 Aug 2014 12:17:31 +0200
changeset 57978 8f4a332500e4
parent 55416 dd7992d4a61a
child 58249 180f1b3508ed
permissions -rw-r--r--
Added tag Isabelle2014-RC4 for changeset 113b43b84412

(*  Title:      HOL/HOLCF/IOA/Storage/Action.thy
    Author:     Olaf Müller
*)

header {* The set of all actions of the system *}

theory Action
imports Main
begin

datatype action = New | Loc nat | Free nat

lemma [cong]: "!!x. x = y ==> case_action a b c x = case_action a b c y"
  by simp

end