author | huffman |
Thu, 21 Oct 2010 12:51:36 -0700 | |
changeset 40084 | 23a1cfdb5acb |
parent 35174 | e15040ae75d7 |
permissions | -rw-r--r-- |
3072
a31419014be5
Old ABP files now running under the IOA meta theory based on HOLCF;
mueller
parents:
diff
changeset
|
1 |
(* Title: HOLCF/IOA/ABP/Action.thy |
12218 | 2 |
Author: Olaf Müller |
3072
a31419014be5
Old ABP files now running under the IOA meta theory based on HOLCF;
mueller
parents:
diff
changeset
|
3 |
*) |
a31419014be5
Old ABP files now running under the IOA meta theory based on HOLCF;
mueller
parents:
diff
changeset
|
4 |
|
17244 | 5 |
header {* The set of all actions of the system *} |
6 |
||
7 |
theory Action |
|
8 |
imports Packet |
|
9 |
begin |
|
10 |
||
11 |
datatype 'm action = |
|
12 |
Next | S_msg 'm | R_msg 'm |
|
13 |
| S_pkt "'m packet" | R_pkt "'m packet" |
|
14 |
| S_ack bool | R_ack bool |
|
15 |
||
3072
a31419014be5
Old ABP files now running under the IOA meta theory based on HOLCF;
mueller
parents:
diff
changeset
|
16 |
end |