doc-src/Tutorial/Datatype/mutnested
author paulson
Wed, 11 Sep 2002 16:55:37 +0200
changeset 13566 52a419210d5c
parent 9255 2ceb11a2e190
permissions -rw-r--r--
Streamlined proofs of instances of Separation

datatype
    'a aexp = IF ('a bexp) ('a aexp) ('a aexp)
            | Sum ('a aexp list)
            | Diff ('a aexp) ('a aexp)
            | Var 'a
            | Num nat
and 'a bexp = Less ('a aexp) ('a aexp)
            | And ('a bexp) ('a bexp)
            | Neg ('a bexp)