Built with Alectryon, running Coq+SerAPI. 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.
(** * MinificationThis file ensures that minification works with plain Coq files (the``minification.rst`` recipe uses the Docutils pipeline.To run it:: alectryon --frontend coq --html-minification minification.v # Plain Coq → HTML (minified); produces ‘minification.v.html’ **)Require Import Arith.SectionRedundant.Context (non_negative := le_0_n).Fixpointtree (n: nat) :=
match n with
| 0 => forallm: nat, m >= 0
| S n => tree n /\ tree n
end.