author | wenzelm |
Sat, 23 May 2015 17:19:37 +0200 | |
changeset 60299 | 5ae2a2e74c93 |
parent 58880 | 0baae4311a9f |
child 62002 | f1599e98c4d0 |
permissions | -rw-r--r-- |
42151 | 1 |
(* Title: HOL/HOLCF/IOA/Storage/Action.thy |
40945 | 2 |
Author: Olaf Müller |
6008 | 3 |
*) |
4 |
||
58880 | 5 |
section {* The set of all actions of the system *} |
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 |