Skip to content

Commit 9adb84b

Browse files
committed
deprecate Rtauto
1 parent 62fc738 commit 9adb84b

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
- in `Rtauto and rtauto.Bintree`
2+
3+
+ If you use this plugin and would like to continue using it, please open an
4+
issue to discuss its maintainership
5+
(`#161 <https://github.com/coq/stdlib/pull/161>`_,
6+
by Andres Erbsen).
7+

doc/stdlib/depends.dot

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,6 @@ digraph stdlib_deps {
6060
"primitive-array" -> "primitive-int";
6161
streams -> logic;
6262
funind -> "arith-base";
63-
rtauto -> positive;
64-
rtauto -> lists;
6563
compat -> zmod;
6664
compat -> reals;
6765
compat -> "fmaps-fsets-msets";
@@ -70,6 +68,5 @@ digraph stdlib_deps {
7068
compat -> extraction;
7169
compat -> streams;
7270
compat -> funind;
73-
compat -> rtauto;
7471
all -> compat
7572
}

theories/rtauto/Bintree.v

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
(* * GNU Lesser General Public License Version 2.1 *)
88
(* * (see LICENSE file for the text of the license) *)
99
(************************************************************************)
10+
Attributes deprecated(since="9.1", note="If you would like to take over maintenance of rtauto, please open an issue.").
1011

1112
From Stdlib Require Export List.
1213
From Stdlib Require Export BinPos.

theories/rtauto/Rtauto.v

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
(* * GNU Lesser General Public License Version 2.1 *)
88
(* * (see LICENSE file for the text of the license) *)
99
(************************************************************************)
10-
10+
Attributes deprecated(since="9.1", note="Use lia. If you would like to take over maintenance of rtauto, please open an issue.").
11+
Local Set Warnings "-deprecated".
1112

1213
From Stdlib Require Export List.
1314
From Stdlib Require Export Bintree.

0 commit comments

Comments
 (0)