src/HOLCF/IOA/Storage/Action.thy
author huffman
Wed, 17 Feb 2010 10:00:22 -0800
changeset 35174 e15040ae75d7
parent 19740 6b38551d0798
permissions -rw-r--r--
remove $ from all HOLCF files

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