doc-src/Tutorial/Recdef/Sep1.thy
author ballarin
Tue, 30 Sep 2003 15:10:26 +0200
changeset 14213 7bf882b0a51e
parent 6100 40d66bc3e83f
permissions -rw-r--r--
Changed order of prems in finprod_cong. Slight speedup.

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