src/HOL/IOA/Solve.thy
author berghofe
Fri, 16 Jul 1999 14:06:13 +0200
changeset 7020 75ff179df7b7
parent 4530 ac1821645636
child 17288 aa3833fb7bee
permissions -rw-r--r--
Exported function unify_consts (workaround to avoid inconsistently typed recursive constants in inductive and primrec definitions).

(*  Title:      HOL/IOA/Solve.thy
    ID:         $Id$
    Author:     Tobias Nipkow & Konrad Slind
    Copyright   1994  TU Muenchen

Weak possibilities mapping (abstraction)
*)

Solve = IOA +

constdefs

  is_weak_pmap :: "['c => 'a, ('action,'c)ioa,('action,'a)ioa] => bool"
  "is_weak_pmap f C A ==                          
   (!s:starts_of(C). f(s):starts_of(A)) &        
   (!s t a. reachable C s &                      
            (s,a,t):trans_of(C)                  
            --> (if a:externals(asig_of(C)) then 
                   (f(s),a,f(t)):trans_of(A)     
                 else f(s)=f(t)))"

end