src/HOL/Nominal/Examples/Lambda_mu.thy
author wenzelm
Thu, 03 Jan 2008 22:25:15 +0100
changeset 25819 e6feb08b7f4b
parent 22829 f1db55c7534d
child 25867 c24395ea4e71
permissions -rw-r--r--
replaced thread_properties by simplified version in position.ML;

(* $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