Theory FTPrioUniqueImpl
section ‹\isaheader{Implementation of Unique Priority Queues by Finger Trees}›
theory FTPrioUniqueImpl
imports 
  FTAnnotatedListImpl 
  "../gen_algo/PrioUniqueByAnnotatedList"
begin
subsection "Definitions"
type_synonym ('a,'b) aluprioi = "(unit, ('a, 'b) LP) FingerTree"
setup Locale_Code.open_block
interpretation aluprio_ga: aluprio ft_ops by unfold_locales
setup Locale_Code.close_block
definition [icf_rec_def]: "aluprioi_ops ≡ aluprio_ga.aluprio_ops"
setup Locale_Code.open_block
interpretation aluprioi: StdUprio aluprioi_ops
  unfolding aluprioi_ops_def
  by (rule aluprio_ga.aluprio_ops_impl)
setup Locale_Code.close_block
setup ‹ICF_Tools.revert_abbrevs "aluprioi"›
definition test_codegen where "test_codegen ≡ (
  aluprioi.empty,
  aluprioi.isEmpty,
  aluprioi.insert,
  aluprioi.pop,
  aluprioi.prio
)"
export_code test_codegen checking SML
end