src/HOL/HOLCF/IOA/Storage/Action.thy
author hoelzl
Fri, 22 Mar 2013 10:41:43 +0100
changeset 51482 80efd8c49f52
parent 42151 4da4fc77664b
child 55416 dd7992d4a61a
permissions -rw-r--r--
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)

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

header {* 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 ==> action_case a b c x = action_case a b c y"
  by simp

end