src/HOL/Corec_Examples/Tests/Merge_C.thy
author wenzelm
Mon, 20 May 2024 15:43:51 +0200
changeset 80182 29f2b8ff84f3
parent 62858 d72a6f9ee690
permissions -rw-r--r--
proper support for "isabelle update -D DIR": avoid accidental exclusion of select_dirs (amending e5dafe9e120f);

(*  Title:      HOL/Corec_Examples/Tests/Merge_C.thy
    Author:     Aymeric Bouzy, Ecole polytechnique
    Author:     Jasmin Blanchette, Inria, LORIA, MPII
    Copyright   2015, 2016

Tests theory merges.
*)

section \<open>Tests Theory Merges\<close>

theory Merge_C
imports Merge_A
begin

consts fc :: "'a ta \<Rightarrow> 'a ta"
consts gc :: "'a ta \<Rightarrow> 'a ta"

friend_of_corec fc :: "'a ta \<Rightarrow> 'a ta" where
  "fc t = Ca (sa1 t) (sa2 t)"
  sorry

friend_of_corec gb :: "'a ta \<Rightarrow> 'a ta" where
  "gb t = Ca (sa1 t) (sa2 t)"
  sorry

friend_of_corec gc :: "'a ta \<Rightarrow> 'a ta" where
  "gc t = Ca (sa1 t) (sa2 t)"
  sorry

end