src/HOL/Quickcheck_Examples/Quickcheck_Nesting.thy
author nipkow
Thu, 23 Feb 2023 22:04:32 +0100
changeset 77356 1f5428d66591
parent 69597 ff784d5a5bfb
child 80634 a90ab1ea6458
permissions -rw-r--r--
Map.empty no longer output abbreviation; %_. None is shorter and requires no explanation

theory Quickcheck_Nesting
imports Main
begin

ML \<open>
let
  open BNF_FP_Def_Sugar
  open BNF_LFP_Compat

  val compat_plugin = Plugin_Name.declare_setup \<^binding>\<open>compat\<close>;

  fun compat fp_sugars =
    perhaps (try (datatype_compat (map (fst o dest_Type o #T) fp_sugars)));
in
  Theory.setup (fp_sugars_interpretation compat_plugin compat)
end
\<close>

end