I agree Our site saves small pieces of text information (cookies) on your device in order to deliver better content and for statistical purposes. You can disable the usage of cookies by changing the settings of your browser. By browsing our website without changing the browser settings you grant us permission to store that information on your device.
theory Defs imports Main begin end
theory Submission imports Defs begin (* fun norm :: "'a list \<times> 'a list \<Rightarrow> 'a list \<times> 'a list" where "norm (fs,rs) = (if fs = [] then (itrev rs [],[]) else (fs,rs))" fun enq :: "'a \<Rightarrow> 'a list \<times> 'a list \<Rightarrow> 'a list \<times> 'a list" where "enq a (fs, rs) = norm (fs, a # rs)" fun deq :: "'a list \<times> 'a list \<Rightarrow> 'a list \<times> 'a list" where "deq (fs,rs) = (if fs = [] then (fs,rs) else norm (tl fs,rs))" fun first :: "'a list \<times> 'a list \<Rightarrow> 'a" where "first (a#_,_) = a" *) type_synonym 'a stack = \<comment>\<open>TODO\<close> fun enq :: "'a::linorder \<Rightarrow> 'a stack \<times> 'a stack \<Rightarrow> 'a stack \<times> 'a stack" where "enq _ _ = undefined" fun deq :: "'a::linorder stack \<times> 'a stack \<Rightarrow> 'a stack \<times> 'a stack" where "deq _ = undefined" fun first :: "'a stack \<times> 'a stack \<Rightarrow> 'a" where "first _ = undefined" fun get_min :: "'a::linorder stack \<times> 'a stack \<Rightarrow> 'a" where "get_min _ = undefined" end
theory Check imports Submission begin end