src/HOL/IOA/meta_theory/Solve.thy
author paulson
Tue, 16 Jul 1996 15:49:46 +0200
changeset 1868 836950047d85
parent 1570 fd1b9c721ac7
permissions -rw-r--r--
Put in minimal simpset to avoid excessive simplification, just as in revision 1.9 of HOL/indrule.ML
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
966
3fd66f245ad7 converted IOA with curried function application
clasohm
parents:
diff changeset
     1
(*  Title:      HOL/IOA/meta_theory/Solve.thy
3fd66f245ad7 converted IOA with curried function application
clasohm
parents:
diff changeset
     2
    ID:         $Id$
3fd66f245ad7 converted IOA with curried function application
clasohm
parents:
diff changeset
     3
    Author:     Tobias Nipkow & Konrad Slind
3fd66f245ad7 converted IOA with curried function application
clasohm
parents:
diff changeset
     4
    Copyright   1994  TU Muenchen
3fd66f245ad7 converted IOA with curried function application
clasohm
parents:
diff changeset
     5
3fd66f245ad7 converted IOA with curried function application
clasohm
parents:
diff changeset
     6
Weak possibilities mapping (abstraction)
3fd66f245ad7 converted IOA with curried function application
clasohm
parents:
diff changeset
     7
*)
3fd66f245ad7 converted IOA with curried function application
clasohm
parents:
diff changeset
     8
3fd66f245ad7 converted IOA with curried function application
clasohm
parents:
diff changeset
     9
Solve = IOA +
3fd66f245ad7 converted IOA with curried function application
clasohm
parents:
diff changeset
    10
1570
fd1b9c721ac7 added constdefs section
clasohm
parents: 1151
diff changeset
    11
constdefs
966
3fd66f245ad7 converted IOA with curried function application
clasohm
parents:
diff changeset
    12
3fd66f245ad7 converted IOA with curried function application
clasohm
parents:
diff changeset
    13
  is_weak_pmap :: "['c => 'a, ('action,'c)ioa,('action,'a)ioa] => bool"
1151
c820b3cc3df0 removed \...\ inside strings
clasohm
parents: 972
diff changeset
    14
  "is_weak_pmap f C A ==                          
c820b3cc3df0 removed \...\ inside strings
clasohm
parents: 972
diff changeset
    15
   (!s:starts_of(C). f(s):starts_of(A)) &        
c820b3cc3df0 removed \...\ inside strings
clasohm
parents: 972
diff changeset
    16
   (!s t a. reachable C s &                      
c820b3cc3df0 removed \...\ inside strings
clasohm
parents: 972
diff changeset
    17
            (s,a,t):trans_of(C)                  
c820b3cc3df0 removed \...\ inside strings
clasohm
parents: 972
diff changeset
    18
            --> (if a:externals(asig_of(C)) then 
c820b3cc3df0 removed \...\ inside strings
clasohm
parents: 972
diff changeset
    19
                   (f(s),a,f(t)):trans_of(A)     
c820b3cc3df0 removed \...\ inside strings
clasohm
parents: 972
diff changeset
    20
                 else f(s)=f(t)))"
966
3fd66f245ad7 converted IOA with curried function application
clasohm
parents:
diff changeset
    21
3fd66f245ad7 converted IOA with curried function application
clasohm
parents:
diff changeset
    22
end