Nominal/Ex/Sigma.thy
author Cezary Kaliszyk <cezarykaliszyk@gmail.com>
Tue, 03 Apr 2012 16:38:56 +0200
changeset 3150 7ad3b1421b82
parent 3084 faeac3ae43e5
permissions -rw-r--r--
A recursive function over let-recs with eqvt problems

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