doc-src/Tutorial/Misc/Sep.thy
author wenzelm
Sat, 25 Sep 1999 13:08:08 +0200
changeset 7600 73f91da46230
parent 5377 efb799c5ed3c
permissions -rw-r--r--
Proof.reset_thms calculationN;

Sep = List +
consts sep :: "'a * 'a list => 'a list"
recdef sep "measure (%(a,xs). length xs)"
    "sep(a, [])     = []"
    "sep(a, [x])    = [x]"
    "sep(a, x#y#zs) = x # a # sep(a,y#zs)"
end