966
|
1 |
(* Title: HOL/IOA/meta_theory/Solve.thy
|
|
2 |
ID: $Id$
|
|
3 |
Author: Tobias Nipkow & Konrad Slind
|
|
4 |
Copyright 1994 TU Muenchen
|
|
5 |
|
|
6 |
Weak possibilities mapping (abstraction)
|
|
7 |
*)
|
|
8 |
|
|
9 |
Solve = IOA +
|
|
10 |
|
1570
|
11 |
constdefs
|
966
|
12 |
|
|
13 |
is_weak_pmap :: "['c => 'a, ('action,'c)ioa,('action,'a)ioa] => bool"
|
1151
|
14 |
"is_weak_pmap f C A ==
|
|
15 |
(!s:starts_of(C). f(s):starts_of(A)) &
|
|
16 |
(!s t a. reachable C s &
|
|
17 |
(s,a,t):trans_of(C)
|
|
18 |
--> (if a:externals(asig_of(C)) then
|
|
19 |
(f(s),a,f(t)):trans_of(A)
|
|
20 |
else f(s)=f(t)))"
|
966
|
21 |
|
|
22 |
end
|