src/HOLCF/Ssum1.thy
author slotosch
Sun, 25 May 1997 16:17:09 +0200
changeset 3324 6b26b886ff69
parent 3323 194ae2e0c193
child 3842 b55686a7b22c
permissions -rw-r--r--
Eliminated the prediates flat,chfin Changed theorems with flat(x::'a) to (x::'a::flat) Since flat<chfin theorems adm_flat,adm_flatdom are eliminated. Use adm_chain_finite and adm_chfindom instead! Examples do not use flat_flat any more

(*  Title:      HOLCF/Ssum1.thy
    ID:         $Id$
    Author:     Franz Regensburger
    Copyright   1993  Technische Universitaet Muenchen

Partial ordering for the strict sum ++
*)

Ssum1 = Ssum0 +

instance "++"::(pcpo,pcpo)sq_ord

defs
  less_ssum_def "(op <<) == (%s1 s2.@z.
         (! u x.s1=Isinl u & s2=Isinl x --> z = u << x)
        &(! v y.s1=Isinr v & s2=Isinr y --> z = v << y)
        &(! u y.s1=Isinl u & s2=Isinr y --> z = (u = UU))
        &(! v x.s1=Isinr v & s2=Isinl x --> z = (v = UU)))"

end