(* Title: Doc/Corec/Corec.thy Author: Jasmin Blanchette, Inria, LORIA, MPII Author: Aymeric Bouzy, Ecole polytechnique Author: Andreas Lochbihler, ETH Zuerich Author: Andrei Popescu, Middlesex University Author: Dmitriy Traytel, ETH Zuerich Tutorial for nonprimitively corecursive definitions. *)
theory Corec imports Main Datatypes.Setup"HOL-Library.BNF_Corec" "HOL-Library.FSet" begin
section‹Introduction \label{sec:introduction}›
text‹ Isabelle's (co)datatype package 🍋‹"isabelle-datatypes"›offers a convenient syntax for introducing codatatypes. For example, the type of (infinite) streams can be defined as follows (cf. 🍋‹~~/src/HOL/Library/Stream.thy›): ›
codatatype 'a stream =
SCons (shd: 'a) (stl: "'a stream")
text‹ \noindent The (co)datatype package also provides two commands, \keyw{primcorec} and \keyw{prim\-corec\-ur\-sive}, for defining primitively corecursive functions. This tutorial presents a definitional package for functions beyond
java.lang.NullPointerException @{command corecursive}, @{command friend_of_corec}, and @{command coinduction_upto}. It also covers the @{method corec_unique} proof method. The package is not part of 🍋‹Main›; it is located in 🍋‹~~/src/HOL/Library/BNF_Corec.thy›. The @{command corec} command generalizes \keyw{primcorec} in three main respects. First, it allows multiple constructors around corecursive calls, where \keyw{primcorec} expects exactly one. For example: ›
text‹ Second, @{command corec} allows other functions than constructors to appear in the corecursive call context (i.e., around any self-calls on the right-hand side of the equation). The requirement on these functions is that they must be \emph{friendly}. Intuitively, a function is friendly if it needs to destruct at most one constructor of input to produce one constructor of output. We can register functions as friendly using the @{command friend_of_corec} command, or by passing the ‹friend›option to @{command corec}. The friendliness check relies on an internal syntactic check in combination with a parametricity subgoal, which must be discharged manually (typically using @{method transfer_prover} or @{method transfer_prover_eq}). Third, @{command corec} allows self-calls that are not guarded by a constructor, as long as these calls occur in a friendly context (a context consisting exclusively of friendly functions) and can be shown to be terminating (well founded). The mixture of recursive and corecursive calls in a single function can be quite useful in practice. Internally, the package synthesizes corecursors that take into account the possible call contexts. The corecursor is accompanined by a corresponding, equally general coinduction principle. The corecursor and the coinduction principle grow in expressiveness as we interact with it. In process algebra terminology, corecursion and coinduction take place \emph{up to} friendly contexts. The package fully adheres to the LCF philosophy 🍋‹mgordon79›: The characteristic theorems associated with the specified corecursive functions are derived rather than introduced axiomatically. (Exceptionally, most of the internal proof obligations are omitted if the ‹quick_and_dirty›option is enabled.) The package is described in a pair of scientific papers 🍋‹"blanchette-et-al-2015-fouco" and "blanchette-et-al-201x-amico"›. Some of the text and examples below originate from there. This tutorial is organized as follows: \begin{itemize} \setlength{\itemsep}{0pt} \item Section \ref{sec:introductory-examples}, ``Introductory Examples,'' describes how to specify corecursive functions and to reason about them. \item Section \ref{sec:command-syntax}, ``Command Syntax,'' describes the syntax of the commands offered by the package. \item Section \ref{sec:generated-theorems}, ``Generated Theorems,'' lists the theorems produced by the package's commands. \item Section \ref{sec:proof-methods}, ``Proof Methods,'' briefly describes the @{method corec_unique} and @{method transfer_prover_eq} proof methods. \item Section \ref{sec:attribute}, ``Attribute,'' briefly describes the @{attribute friend_of_corec_simps} attribute, which can be used to strengthen the tactics underlying the @{command friend_of_corec} and @{command corec} ‹(friend)›commands. \item Section \ref{sec:known-bugs-and-limitations}, ``Known Bugs and Limitations,'' concludes with known open issues. \end{itemize} Although it is more powerful than \keyw{primcorec} in many respects, @{command corec} suffers from a number of limitations. Most notably, it does not support mutually corecursive codatatypes, and it is less efficient than \keyw{primcorec} because it needs to dynamically synthesize corecursors and corresponding coinduction principles to accommodate the friends. \newbox\boxA \setbox\boxA=\hbox{\texttt{NOSPAM}} \newcommand\authoremaili{\texttt{jasmin.blan{\color{white}NOSPAM}\kern-\wd\boxA{}chette@\allowbreak gmail.\allowbreak com}} Comments and bug reports concerning either the package or this tutorial should be directed to the first author at \authoremaili{} or to the \texttt{cl-isabelle-users} mailing list. ›
text‹ The package is illustrated through concrete examples featuring different flavors of corecursion. More examples can be found in the directory 🍋‹~~/src/HOL/Corec_Examples›. ›
text‹ The case studies by Rutten~🍋‹rutten05›and Hinze~🍋‹hinze10› on stream calculi serve as our starting point. The following definition of pointwise sum can be performed with either \keyw{primcorec} or @{command corec}: ›
text‹ \noindent Pointwise sum meets the friendliness criterion. We register it as a friend using the @{command friend_of_corec} command. The command requires us to give a specification of 🍋‹ssum›where a constructor (🍋‹SCons›) occurs at the outermost position on the right-hand side. Here, we can simply reuse the \keyw{primcorec} specification above: ›
text‹ \noindent The command emits two subgoals. The first subgoal corresponds to the equation we specified and is trivial to discharge. The second subgoal is a parametricity property that captures the the requirement that the function may destruct at most one constructor of input to produce one constructor of output. This subgoal can usually be discharged using the ‹transfer_prover›or @{method transfer_prover_eq} proof method (Section~\ref{ssec:transfer-prover-eq}). The latter replaces equality relations by their relator terms according to the @{thm [source] relator_eq} theorem collection before it invokes @{method transfer_prover}. After registering 🍋‹ssum›as a friend, we can use it in the corecursive call context, either inside or outside the constructor guard: ›
text‹ \noindent The parametricity subgoal is given to ‹transfer_prover_eq› (Section~\ref{ssec:transfer-prover-eq}). The 🍋‹sprod›and 🍋‹sexp› functions provide shuffle product and exponentiation on streams. We can use them to define the stream of factorial numbers in two different ways: ›
corec factA :: "nat stream"where "factA = (let zs = SCons 1 factA in sprod zs zs)"
text‹ The arguments of friendly functions can be of complex types involving the target codatatype. The following example defines the supremum of a finite set of streams by primitive corecursion and registers it as friendly: ›
text‹ \noindent In general, the arguments may be any bounded natural functor (BNF) 🍋‹"isabelle-datatypes"›, with the restriction that the target codatatype (🍋‹nat stream›) may occur only in a \emph{live} position of the BNF. For this reason, the following function, on unbounded sets, cannot be registered as a friend: ›
text‹ The package generally supports arbitrary codatatypes with multiple constructors and nesting through other type constructors (BNFs). Consider the following type of finitely branching Rose trees of potentially infinite depth: ›
codatatype 'a tree =
Node (lab: 'a) (sub: "'a tree list")
text‹ We first define the pointwise sum of two trees analogously to 🍋‹ssum›: ›
corec (friend) tsum :: "('a :: plus) tree ==> 'a tree ==> 'a tree"where "tsum t u = Node (lab t + lab u) (map (λ(t', u'). tsum t' u') (zip (sub t) (sub u)))"
text‹ \noindent Here, 🍋‹map›is the standard map function on lists, and 🍋‹zip› converts two parallel lists into a list of pairs. The 🍋‹tsum›function is primitively corecursive. Instead of @{command corec} ‹(friend)›, we could also have used \keyw{primcorec} and @{command friend_of_corec}, as we did for 🍋‹ssum›. Once 🍋‹tsum›is registered as friendly, we can use it in the corecursive call context of another function: ›
corec (friend) ttimes :: "('a :: {plus,times}) tree ==> 'a tree ==> 'a tree"where "ttimes t u = Node (lab t * lab u) (map (λ(t', u'). tsum (ttimes t u') (ttimes t' u)) (zip (sub t) (sub u)))"
text‹ All the syntactic convenience provided by \keyw{primcorec} is also supported by @{command corec}, @{command corecursive}, and @{command friend_of_corec}. In particular, nesting through the function type can be expressed using ‹λ›-abstractions and function applications rather than through composition (🍋‹(∘)›, the map function for ‹==>›). For example: ›
codatatype 'a language =
Lang (o: bool) (d: "'a ==> 'a language")
text‹\blankline›
corec (friend) Plus :: "'a language ==> 'a language ==> 'a language"where "Plus r s = Lang (o r ∨o s) (λa. Plus (d r a) (d s a))"
text‹\blankline›
corec (friend) Times :: "'a language ==> 'a language ==> 'a language"where "Times r s = Lang (o r ∧o s) (λa. if o r then Plus (Times (d r a) s) (d s a) else Times (d r a) s)"
text‹\blankline›
corec (friend) Star :: "'a language ==> 'a language"where "Star r = Lang True (λa. Times (d r a) (Star r))"
text‹\blankline›
corec (friend) Inter :: "'a language ==> 'a language ==> 'a language"where "Inter r s = Lang (o r ∧o s) (λa. Inter (d r a) (d s a))"
text‹\blankline›
corec (friend) PLUS :: "'a language list ==> 'a language"where "PLUS xs = Lang (∃x ∈ set xs. o x) (λa. PLUS (map (λr. d r a) xs))"
text‹ It is often convenient to let a corecursive function perform some finite computation before producing a constructor. With mixed recursion--corecursion, a finite number of unguarded recursive calls perform this calculation before reaching a guarded corecursive call. Intuitively, the unguarded recursive call can be unfolded to arbitrary finite depth, ultimately yielding a purely corecursive definition. An example is the 🍋‹primes›function from Di Gianantonio and Miculan 🍋‹"di-gianantonio-miculan-2003"›: ›
corecursive primes :: "nat ==> nat ==> nat stream"where "primes m n = (if (m = 0 ∧ n > 1) ∨ coprime m n then SCons n (primes (m * n) (n + 1)) else primes m (n + 1))" apply (relation "measure (λ(m, n). if n = 0 then 1 else if coprime m n then 0 else m - n mod m)") apply (auto simp: mod_Suc diff_less_mono2 intro: Suc_lessI elim!: not_coprimeE) apply (metis dvd_1_iff_1 dvd_eq_mod_eq_0 mod_0 mod_Suc mod_Suc_eq mod_mod_cancel) done
text‹ \noindent The @{command corecursive} command is a variant of @{command corec} that allows us to specify a termination argument for any unguarded self-call. When called with ‹m = 1›and ‹n = 2›, the 🍋‹primes› function computes the stream of prime numbers. The unguarded call in the ‹else›branch increments 🍋‹n› until it is coprime to the first argument 🍋‹m›(i.e., the greatest common divisor of 🍋‹m› and 🍋‹n›is ‹1›). For any positive integers 🍋‹m›and 🍋‹n›, the numbers 🍋‹m› and ‹m * n + 1›are coprime, yielding an upper bound on the number of times 🍋‹n›is increased. Hence, the function will take the ‹else› branch at most finitely often before taking the then branch and producing one constructor. There is a slight complication when ‹m = 0 ∧ n > 1›: Without the first disjunct in the ‹if›condition, the function could stall. (This corner case was overlooked in the original example 🍋‹"di-gianantonio-miculan-2003"›.) In the following examples, termination is discharged automatically by @{command corec} by invoking @{method lexicographic_order}: ›
text‹ The package allows us to simultaneously define a function and use it as its own friend, as in the following definition of a ``skewed product'': ›
text‹ \noindent Such definitions, with nested self-calls on the right-hand side, cannot be separated into a @{command corec} part and a @{command friend_of_corec} part. ›
subsection‹Coinduction \label{ssec:coinduction}›
text‹ Once a corecursive specification has been accepted, we normally want to reason about it. The ‹codatatype›command generates a structural coinduction principle that matches primitively corecursive functions. For nonprimitive specifications, our package provides the more advanced proof principle of \emph{coinduction up to congruence}---or simply \emph{coinduction up-to}. The structural coinduction principle for 🍋‹'a stream›, called @{thm [source] stream.coinduct}, is as follows: % \begin{indentblock} @{thm stream.coinduct[no_vars]} \end{indentblock} % Coinduction allows us to prove an equality ‹l = r›on streams by providing a relation ‹R›that relates ‹l› and ‹r› (first premise) and that constitutes a bisimulation (second premise). Streams that are related by a bisimulation cannot be distinguished by taking observations (via the selectors 🍋‹shd›and 🍋‹stl›); hence they must be equal. The coinduction up-to principle after registering 🍋‹sskew›as friendly is available as @{thm [source] sskew.coinduct} and as one of the components of the theorem collection @{thm [source] stream.coinduct_upto}: % \begin{indentblock} @{thm sskew.coinduct[no_vars]} \end{indentblock} % This rule is almost identical to structural coinduction, except that the corecursive application of 🍋‹R›is generalized to 🍋‹stream.v5.congclp R›. The 🍋‹stream.v5.congclp›predicate is equipped with the following introduction rules: \begin{indentblock} \begin{description} \item[@{thm [source] sskew.cong_base}\rm:] ~ \\ @{thm sskew.cong_base[no_vars]} \item[@{thm [source] sskew.cong_refl}\rm:] ~ \\ @{thm sskew.cong_refl[no_vars]} \item[@{thm [source] sskew.cong_sym}\rm:] ~ \\ @{thm sskew.cong_sym[no_vars]} \item[@{thm [source] sskew.cong_trans}\rm:] ~ \\ @{thm sskew.cong_trans[no_vars]} \item[@{thm [source] sskew.cong_SCons}\rm:] ~ \\ @{thm sskew.cong_SCons[no_vars]} \item[@{thm [source] sskew.cong_ssum}\rm:] ~ \\ @{thm sskew.cong_ssum[no_vars]} \item[@{thm [source] sskew.cong_sprod}\rm:] ~ \\ @{thm sskew.cong_sprod[no_vars]} \item[@{thm [source] sskew.cong_sskew}\rm:] ~ \\ @{thm sskew.cong_sskew[no_vars]} \end{description} \end{indentblock} % The introduction rules are also available as @{thm [source] sskew.cong_intros}. Notice that there is no introduction rule corresponding to 🍋‹sexp›, because 🍋‹sexp›has a more restrictive result type than 🍋‹sskew› (🍋‹nat stream›vs. 🍋‹('a :: {plus,times}) stream›. The version numbers, here ‹v5›, distinguish the different congruence closures generated for a given codatatype as more friends are registered. As much as possible, it is recommended to avoid referring to them in proof documents. Since the package maintains a set of incomparable corecursors, there is also a set of associated coinduction principles and a set of sets of introduction rules. A technically subtle point is to make Isabelle choose the right rules in most situations. For this purpose, the package maintains the collection @{thm [source] stream.coinduct_upto} of coinduction principles ordered by increasing generality, which works well with Isabelle's philosophy of applying the first rule that matches. For example, after registering 🍋‹ssum›as a friend, proving the equality 🍋‹l = r›on 🍋‹nat stream› might require coinduction principle for 🍋‹nat stream›, which is up to 🍋‹ssum›. The collection @{thm [source] stream.coinduct_upto} is guaranteed to be complete and up to date with respect to the type instances of definitions considered so far, but occasionally it may be necessary to take the union of two incomparable coinduction principles. This can be done using the @{command coinduction_upto} command. Consider the following definitions: ›
corec (friend) square_elems :: "(nat, 'b) tllist ==> (nat, 'b) tllist"where "square_elems xs = (case xs of TNil z ==> TNil z | TCons y ys ==> TCons (y ^^ 2) (square_elems ys))"
text‹\blankline›
corec (friend) square_terminal :: "('a, int) tllist ==> ('a, int) tllist"where "square_terminal xs = (case xs of TNil z ==> TNil (z ^^ 2) | TCons y ys ==> TCons y (square_terminal ys))"
text‹ At this point, @{thm [source] tllist.coinduct_upto} contains three variants of the coinduction principles: % \begin{itemize} \item🍋‹('a, int) tllist›up to 🍋‹TNil›, 🍋‹TCons›, and 🍋‹square_terminal›; \item🍋‹(nat, 'b) tllist›up to 🍋‹TNil›, 🍋‹TCons›, and 🍋‹square_elems›; \item🍋‹('a, 'b) tllist›up to 🍋‹TNil› and 🍋‹TCons›. \end{itemize} % The following variant is missing: % \begin{itemize} \item🍋‹(nat, int) tllist›up to 🍋‹TNil›, 🍋‹TCons›, 🍋‹square_elems›, and 🍋‹square_terminal›. \end{itemize} % To generate it without having to define a new function with @{command corec}, we can use the following command: ›
text‹ \noindent This produces the theorems % \begin{indentblock} @{thm [source] nat_int_tllist.coinduct_upto} \\ @{thm [source] nat_int_tllist.cong_intros} \end{indentblock} % (as well as the individually named introduction rules) and extends the dynamic collections @{thm [source] tllist.coinduct_upto} and @{thm [source] tllist.cong_intros}. ›
text‹ It is sometimes possible to achieve better automation by using a more specialized proof method than coinduction. Uniqueness principles maintain a good balance between expressiveness and automation. They exploit the property that a corecursive definition is the unique solution to a fixpoint equation. The @{command corec}, @{command corecursive}, and @{command friend_of_corec} commands generate a property ‹f.unique›about the function of interest 🍋‹f›that can be used to prove that any function that satisfies 🍋‹f›'s corecursive specification must be equal to~🍋‹f›. For example: \[@{thm ssum.unique[no_vars]}\] The uniqueness principles are not restricted to functions defined using @{command corec} or @{command corecursive} or registered with @{command friend_of_corec}. Suppose 🍋‹t x›is an arbitrary term depending on 🍋‹x›. The @{method corec_unique} proof method, provided by our tool, transforms subgoals of the form \[🍋‹(∀x. f x = H x f) ==> f x = t x›\] into \[🍋‹∀x. t x = H x t›\] The higher-order functional 🍋‹H›must be such that 🍋‹f x = H x f› would be a valid @{command corec} specification, but without nested self-calls or unguarded (recursive) calls. Thus, @{method corec_unique} proves uniqueness of 🍋‹t›with respect to the given corecursive equation regardless of how 🍋‹t›was defined. For example: ›
text‹ The proof method relies on some theorems generated by the package. If no function over a given codatatype has been defined using @{command corec} or @{command corecursive} or registered as friendly using @{command friend_of_corec}, the theorems will not be available yet. In such cases, the theorems can be explicitly generated using the command ›
subsection‹\keyw{corec} and \keyw{corecursive} \label{ssec:corec-and-corecursive-syntax}›
text‹ \begin{matharray}{rcl} @{command_def "corec"} & : & ‹local_theory → local_theory›\\ @{command_def "corecursive"} & : & ‹local_theory → proof(prove)› \end{matharray} 🪙‹ (@@{command corec} | @@{command corecursive}) target? 🍋 @{syntax cr_options}? fix @'where' prop ; @{syntax_def cr_options}: '(' ((@{syntax plugins} | 'friend' | 'transfer') + ',') ')' › \medskip \noindent The @{command corec} and @{command corecursive} commands introduce a corecursive function over a codatatype. The syntactic entity \synt{target} can be used to specify a local context, \synt{fix} denotes name with an optional type signature, and \synt{prop} denotes a HOL proposition 🍋‹"isabelle-isar-ref"›. The optional target is optionally followed by a combination of the following options: \begin{itemize} \setlength{\itemsep}{0pt} \item The ‹plugins›option indicates which plugins should be enabled (‹only›) or disabled (‹del›). By default, all plugins are enabled. \item The ‹friend›option indicates that the defined function should be registered as a friend. This gives rise to additional proof obligations. \item The ‹transfer›option indicates that an unconditional transfer rule should be generated and proved ‹by transfer_prover›. The ‹[transfer_rule]›attribute is set on the generated theorem. \end{itemize} The @{command corec} command is an abbreviation for @{command corecursive} with appropriate applications of @{method transfer_prover_eq} (Section~\ref{ssec:transfer-prover-eq}) and @{method lexicographic_order} to discharge any emerging proof obligations. ›
text‹ \begin{matharray}{rcl} @{command_def "friend_of_corec"} & : & ‹local_theory → proof(prove)› \end{matharray} 🪙‹ @@{command friend_of_corec} target? 🍋 @{syntax foc_options}? fix @'where' prop ; @{syntax_def foc_options}: '(' ((@{syntax plugins} | 'transfer') + ',') ')' › \medskip \noindent The @{command friend_of_corec} command registers a corecursive function as friendly. The syntactic entity \synt{target} can be used to specify a local context, \synt{fix} denotes name with an optional type signature, and \synt{prop} denotes a HOL proposition 🍋‹"isabelle-isar-ref"›. The optional target is optionally followed by a combination of the following options: \begin{itemize} \setlength{\itemsep}{0pt} \item The ‹plugins›option indicates which plugins should be enabled (‹only›) or disabled (‹del›). By default, all plugins are enabled. \item The ‹transfer›option indicates that an unconditional transfer rule should be generated and proved ‹by transfer_prover›. The ‹[transfer_rule]›attribute is set on the generated theorem. \end{itemize} ›
text‹ \begin{matharray}{rcl} @{command_def "coinduction_upto"} & : & ‹local_theory → local_theory› \end{matharray} 🪙‹ @@{command coinduction_upto} target? name ':' type › \medskip \noindent The @{command coinduction_upto} generates a coinduction up-to rule for a given instance of a (possibly polymorphic) codatatype and notes the result with the specified prefix. The syntactic entity \synt{name} denotes an identifier and \synt{type} denotes a type 🍋‹"isabelle-isar-ref"›. ›
text‹ The full list of named theorems generated by the package can be obtained by issuing the command \keyw{print_theorems} immediately after the datatype definition. This list excludes low-level theorems that reveal internal constructions. To make these accessible, add the line ›
text‹ In addition to the theorem listed below for each command provided by the package, all commands update the dynamic theorem collections \begin{indentblock} \begin{description} \item[‹t.›\h
\item[‹t.›\hthm{cong_intros}]
\end{description} \end{indentblock}
% for the corresponding codatatype ‹t› so that they always contain the most
powerful coinduction up-to principles derived so far. ›
subsection‹\keyw{corec} and \keyw{corecursive} \label{ssec:corec-and-corecursive-theorems}›
text‹ For a function 🍋‹f› o
@{command corecursive} commands generate the following properties (listed for 🍋‹sexp›, cf. Section~\ref{ssec:simple-corecursion}):
\begin{indentblock} \begin{description}
\item[‹f.›\hthm{code} ‹[code]›\rm:] ~ java.lang.NullPointerException
@{thm sexp.code[no_vars]} java.lang.NullPointerException
The ‹[code]› attribute is set by the ‹code› plugin 🍋‹"isabelle-datatypes"›.
\item[‹f.›\hthm{unique}\rm:] ~ java.lang.NullPointerException
@{thm sexp.unique[no_vars]} java.lang.NullPointerException
This property is not generated for mixed recursive--corecursive definitions.
\item[‹f.›\hthm{inner_induct}\rm:] ~ java.lang.NullPointerException
This property is only generated for mixed recursive--corecursive definitions. For🍋‹primes› (Section~\ref{ssec:mixed-recursion-corecursion}, it reads as
follows: \[\jot]
@{thm primes.inner_induct[no_vars]}
\end{description} \end{indentblock}
\noindent
The individual rules making up ‹f.cong_intros› are available as
text‹ The @{command friend_of_corec} command generates the same theorems as @{command corec} and @{command corecursive}, except that it adds an optional ‹friend.› c ‹f.friend.code›). ›
\noindent
The individual rules making up ‹t.cong_intros› are available
separately as ‹t.cong_base›, ‹t.cong_refl›, etc.java.lang.NullPointerException
(Section~\ref{ssec:corec-and-corecursive-theorems}). ›
text‹ The @{method corec_unique} proof method can be used to prove the uniqueness of a corecursive specification. See Section~\ref{ssec:uniqueness-reasoning} for details. ›
text‹ The @{method transfer_prover_eq} proof method replaces the equality relation 🍋‹(=)› w
@{thm [source] relator_eq} before calling @{method transfer_prover} on the
current subgoal. It tends to work better than plain @{method transfer_prover} on
the parametricity proof obligations of @{command corecursive} and
@{command friend_of_corec}, because they often contain equality relations on
complex types, which @{method transfer_prover} cannot reason about. ›
text‹ The @{attribute friend_of_corec_simps} attribute declares naturality theorems to be used by @{command friend_of_corec} and @{command corec} ‹(friend)› i
deriving the user specificationfrom reduction to primitive corecursion.
Internally, these commands derive naturality theoremsfrom the parametricity proof
obligations dischared by the user or the @{method transfer_prover_eq} method, but
this derivation fails ifin the arguments of a higher-order constant a type variable
occurs on both sides of the function type constructor. The required naturality theorem can then be declared with @{attribute friend_of_corec_simps}. See 🍋‹~~/src/HOL/Corec_Examples/Tests/Iterate_GPV.thy›for an example. ›
section‹Known Bugs and Limitations \label{sec:known-bugs-and-limitations}›
text‹ This section lists the known bugs and limitations of the corecursion package at the time of this writing. \begin{enumerate} \setlength{\itemsep}{0pt} \item \emph{Mutually corecursive codatatypes are not supported.} \item \emph{The signature of friend functions may not depend on type variables beyond those that appear in the codatatype.} \item \emph{The internal tactics may fail on legal inputs.} In some cases, this limitation can be circumvented using the @{attribute friend_of_corec_simps} attribute (Section~\ref{ssec:friend-of-corec-simps}). \item \emph{The ‹transfer› o
\item \emph{The constructor and destructor views offered by {\upshape\keyw{primcorec}}
are not supported by @{command corec} and @{command corecursive}.}
\item \emph{There is no mechanism for registering custom plugins.}
\item \emph{The package does not interact well with locales.}
\item \emph{The undocumented ‹corecUU_transfer›theoremis not as polymorphic as
it could be.}
\item \emph{All type variables occurring in the arguments of a friendly function must occur
as direct arguments of the type constructor of the resulting type.}
\end{enumerate} ›
end
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.20 Sekunden
(vorverarbeitet am 2026-04-28)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.