src/HOL/Nominal/Examples/Lambda_mu.thy
author narboux
Tue, 06 Mar 2007 16:40:32 +0100
changeset 22421 51a18dd1ea86
parent 19501 9afa7183dfc2
child 22829 f1db55c7534d
permissions -rw-r--r--
correct typo in latex output

(* $Id$ *)

theory Lambda_mu 
imports "../Nominal" 
begin

section {* Lambda-Mu according to a paper by Gavin Bierman *}

atom_decl var mvar

nominal_datatype trm = Var   "var" 
                     | Lam  "\<guillemotleft>var\<guillemotright>trm"   ("Lam [_]._" [100,100] 100)
                     | App  "trm" "trm" 
                     | Pss  "mvar" "trm"
                     | Act  "\<guillemotleft>mvar\<guillemotright>trm"  ("Act [_]._" [100,100] 100)

end