doc-src/Tutorial/Ifexpr/normal
author wenzelm
Sun, 11 Nov 2001 21:35:21 +0100
changeset 12145 c38a7efa3afb
parent 5377 efb799c5ed3c
permissions -rw-r--r--
Proof.have_i: multiple statements;

consts normal :: ifex => bool
primrec
"normal(CIF b) = True"
"normal(VIF x) = True"
"normal(IF b t e) = (normal t & normal e &
      (case b of CIF b => True | VIF x => True | IF x y z => False))"