Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove deprecated files in Coq.Arith #33

Merged
merged 1 commit into from
Oct 15, 2023
Merged
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
4 changes: 2 additions & 2 deletions theories/Autosubst_Basics.v
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*)

Require Import Coq.Program.Tactics.
Require Import Coq.Arith.Plus List FunctionalExtensionality.
Require Import Coq.Arith.PeanoNat List FunctionalExtensionality.

(** Annotate "a" with additional information. *)
Definition annot {A B} (a : A) (b : B) : A := a.
Expand Down Expand Up @@ -240,7 +240,7 @@ Lemma plusSn n m : S n + m = S (n + m). reflexivity. Qed.
Lemma plusnS n m : n + S m = S (n + m). symmetry. apply plus_n_Sm. Qed.
Lemma plusOn n : O + n = n. reflexivity. Qed.
Lemma plusnO n : n + O = n. symmetry. apply plus_n_O. Qed.
Lemma plusA n m k : n + (m + k) = (n + m) + k. apply plus_assoc. Qed.
Lemma plusA n m k : n + (m + k) = (n + m) + k. apply Nat.add_assoc. Qed.

Lemma scons_eta f n : f n .: (+S n) >>> f = (+n) >>> f.
Proof.
Expand Down