Built with Alectryon, running Coq+SerAPI v8.18.0+0.18.3. Bubbles () indicate interactive fragments: hover for details, tap to reveal contents. Use Ctrl+↑ Ctrl+↓ to navigate, Ctrl+🖱️ to focus. On Mac, use instead of Ctrl.
(** * Natural Transformations *)
(** Since there are only notations in [NaturalTransformation.Notations], we can just export those. *)
[Loading ML file number_string_notation_plugin.cmxs (using legacy method) ... done]
(** ** Definition of natural transformation *) Require NaturalTransformation.Core. (** ** Composition of natural transformations *) Require NaturalTransformation.Composition.Core. (** ** Dual natural transformations *) Require NaturalTransformation.Dual. (** ** Identity natural transformation *) Require NaturalTransformation.Identity. (** ** Natural isomorphisms *) Require NaturalTransformation.Isomorphisms. (** ** Path space of natural transformation type *) Require NaturalTransformation.Paths. (** ** Pointwise natural transformations *) Require NaturalTransformation.Pointwise. (** ** Sums of natural transformations *) Require NaturalTransformation.Sum. (** ** Products of natural transformations *) Require NaturalTransformation.Prod. Include NaturalTransformation.Core. Include NaturalTransformation.Composition.Core. Include NaturalTransformation.Dual. Include NaturalTransformation.Identity. Include NaturalTransformation.Isomorphisms. Include NaturalTransformation.Paths. Include NaturalTransformation.Pointwise. Include NaturalTransformation.Sum. Include NaturalTransformation.Prod. (** We don't want to make utf-8 notations the default, so we don't export them. *) (** Since [Composition] is a separate sub-directory, we need to re-create the module structure *) (** We want to have the following as subdirectories/modules, not at top level. Unfortunately, namespacing in Coq is kind-of broken (see, e.g., https://coq.inria.fr/bugs/show_bug.cgi?id=3676), so we don't get the ability to rename subfolders by [Including] into other modules. *) Require NaturalTransformation.Composition.