src/HOLCF/IOA/Storage/Action.thy
author wenzelm
Mon, 21 Jun 2010 11:24:19 +0200
changeset 37380 35815ce9218a
parent 35174 e15040ae75d7
permissions -rw-r--r--
final tuning;

(*  Title:      HOLCF/IOA/ABP/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 ==> action_case a b c x = action_case a b c y"
  by simp

end