src/HOL/HOLCF/IOA/Storage/Action.thy
author wenzelm
Sat, 23 May 2015 17:19:37 +0200
changeset 60299 5ae2a2e74c93
parent 58880 0baae4311a9f
child 62002 f1599e98c4d0
permissions -rw-r--r--
clarified NEWS: document_files are officially required since Isabelle2014, but the absence was tolerated as legacy feature;

(*  Title:      HOL/HOLCF/IOA/Storage/Action.thy
    Author:     Olaf Müller
*)

section {* The set of all actions of the system *}

theory Action
imports Main
begin

datatype action = New | Loc nat | Free nat

lemma [cong]: "!!x. x = y ==> case_action a b c x = case_action a b c y"
  by simp

end