Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ clean: Makefile.coq
@rm -f Makefile.coq Makefile.coq.conf

Makefile.coq: _CoqProject
$(COQBIN)coq_makefile -f _CoqProject -o Makefile.coq
$(COQBIN)rocq makefile -f _CoqProject -o Makefile.coq

force _CoqProject Makefile: ;

Expand Down
4 changes: 2 additions & 2 deletions theories/Tutorial.v
Original file line number Diff line number Diff line change
Expand Up @@ -403,10 +403,10 @@ Section Examples.
(** *** Reverse triangle inequality *)

Lemma Z_abs_triangle : forall x y, Z.abs (x + y) <= Z.abs x + Z.abs y.
Proof Z.abs_triangle.
Proof. exact Z.abs_triangle. Qed.

Lemma Z_add_opp_diag_r : forall x, x + -x = 0.
Proof Z.add_opp_diag_r.
Proof. exact Z.add_opp_diag_r. Qed.

(** The following morphisms are required to perform the required rewrites: *)
#[local] Instance Z_opp_ge_le_compat : Proper (Z.ge ==> Z.le) Z.opp.
Expand Down
Loading