src/LCF/ex/Ex3.thy
author wenzelm
Wed, 13 Jul 2005 16:07:35 +0200
changeset 16813 67140ae50e77
parent 4905 be73ddff6c5a
child 17248 81bf91654e73
permissions -rw-r--r--
removed ad-hoc atp_hook, cal_atp; removed depth_of; tuned;


(*** Addition with fixpoint of successor ***)

Ex3 = LCF +

consts
  s	:: "'a => 'a"
  p	:: "'a => 'a => 'a"

rules
  p_strict	"p(UU) = UU"
  p_s		"p(s(x),y) = s(p(x,y))"

end