| author | paulson <lp15@cam.ac.uk> |
| Thu, 05 Jan 2017 15:03:37 +0000 | |
| changeset 64789 | 6440577e34ee |
| 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 |