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.
[Loading ML file number_string_notation_plugin.cmxs (using legacy method) ... done]
(** * Graphs *) (** A [Graph] is a type [graph0] of points together with a type [graph1] of arrows between each points. *) Record Graph := { graph0 : Type; graph1 : graph0 -> graph0 -> Type; }. Coercion graph0 : Graph >-> Sortclass. Coercion graph1 : Graph >-> Funclass.