Nominal/Ex/Sigma.thy
author webertj
Tue, 26 Mar 2013 16:41:31 +0100
changeset 3213 a8724924a62e
parent 3084 faeac3ae43e5
permissions -rw-r--r--
Manual merge of d121bd2a5a47 from Isabelle/AFP.

theory Sigma
imports Nominal2
begin

atom_decl name

nominal_datatype obj =
  Var name
| Obj smlst
| Inv obj string
| Upd obj string method
and smlst =
  SMNil
| SMCons string method smlst
and method =
  Sig n::name o::obj binds n in o


end