| author | wenzelm |
| Thu, 11 Nov 2021 22:35:23 +0100 | |
| changeset 74757 | 2e3b649111f1 |
| parent 67613 | ce654b0e6d69 |
| permissions | -rw-r--r-- |
| 42151 | 1 |
(* Title: HOL/HOLCF/IOA/Storage/Action.thy |
| 40945 | 2 |
Author: Olaf Müller |
| 6008 | 3 |
*) |
4 |
||
| 62002 | 5 |
section \<open>The set of all actions of the system\<close> |
| 17244 | 6 |
|
7 |
theory Action |
|
8 |
imports Main |
|
9 |
begin |
|
10 |
||
| 58310 | 11 |
datatype action = New | Loc nat | Free nat |
| 17244 | 12 |
|
| 67613 | 13 |
lemma [cong]: "\<And>x. x = y \<Longrightarrow> case_action a b c x = case_action a b c y" |
| 17244 | 14 |
by simp |
15 |
||
| 6008 | 16 |
end |