More space in template

This commit is contained in:
Adam Chlipala 2021-03-01 14:28:33 -05:00
parent d3c7a85b49
commit 4fdc85ae5c

View file

@ -15,6 +15,27 @@ Proof.
Admitted.
(** * Transitive closure of relations *)
Inductive tc {A} (R : A -> A -> Prop) : A -> A -> Prop :=
@ -46,6 +67,26 @@ Theorem tc2_tc : forall A (R : A -> A -> Prop) x y, tc (tc R) x y -> tc R x y.
Proof.
Admitted.
(** * Permutation *)
@ -78,6 +119,29 @@ Proof.
Admitted.
(** * Simple propositional logic *)
Inductive prop :=
@ -134,6 +198,40 @@ Admitted.
(* Proofs for an extension I hope we'll get to:
Fixpoint interp (vars : var -> Prop) (p : prop) : Prop :=