author | haftmann |
Thu, 02 Sep 2010 12:30:22 +0200 | |
changeset 39034 | ebeb48fd653b |
parent 35174 | e15040ae75d7 |
permissions | -rw-r--r-- |
6008 | 1 |
(* Title: HOLCF/IOA/ABP/Action.thy |
12218 | 2 |
Author: Olaf Müller |
6008 | 3 |
*) |
4 |
||
17244 | 5 |
header {* The set of all actions of the system *} |
6 |
||
7 |
theory Action |
|
8 |
imports Main |
|
9 |
begin |
|
10 |
||
11 |
datatype action = New | Loc nat | Free nat |
|
12 |
||
13 |
lemma [cong]: "!!x. x = y ==> action_case a b c x = action_case a b c y" |
|
14 |
by simp |
|
15 |
||
6008 | 16 |
end |