src/HOL/HOLCF/IOA/Storage/Action.thy
author wenzelm
Fri, 07 Mar 2014 11:48:11 +0100
changeset 55975 9962ca0875c9
parent 55416 dd7992d4a61a
child 58249 180f1b3508ed
permissions -rw-r--r--
no completion of concealed names;

(*  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