| author | wenzelm |
| Mon, 20 Jun 2016 22:30:23 +0200 | |
| changeset 63326 | 9d2470571719 |
| parent 62002 | f1599e98c4d0 |
| child 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 |
|
| 55416 | 13 |
lemma [cong]: "!!x. x = y ==> case_action a b c x = case_action a b c y" |
| 17244 | 14 |
by simp |
15 |
||
| 6008 | 16 |
end |