src/HOL/HOLCF/IOA/Storage/Action.thy
author blanchet
Thu, 13 Mar 2014 13:18:14 +0100
changeset 56092 1ba075db8fe4
parent 55416 dd7992d4a61a
child 58249 180f1b3508ed
permissions -rw-r--r--
renamed (hardly used) 'prod_pred' and 'option_pred' to 'pred_prod' and 'pred_option'

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