Skip to content

Commit 3fd48d9

Browse files
committed
use RelationClasses instead of Relations_1 in Sorting
1 parent b6fc310 commit 3fd48d9

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.nix/rocq-overlays/stdlib-subcomponents/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ let
3333
"classical-logic" = [ "arith" ];
3434
"sets" = [ "classical-logic" ];
3535
"vectors" = [ "lists" ];
36-
"sorting" = [ "lia" "sets" "vectors" ];
36+
"sorting" = [ "lia" "vectors" ];
3737
"orders-ex" = [ "strings" "sorting" ];
3838
"unicode" = [ ];
3939
"primitive-int" = [ "unicode" "zarith" ];

doc/stdlib/depends.dot

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ digraph stdlib_deps {
3939
"orders-ex" -> sorting;
4040
sets -> "classical-logic";
4141
sorting -> lia;
42-
sorting -> sets;
4342
sorting -> vectors;
4443
"primitive-floats" -> "primitive-int";
4544
wellfounded -> lists;

theories/Sorting/Sorted.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
The two notions are equivalent if the order is transitive.
2121
*)
2222

23-
From Stdlib Require Import List Relations Relations_1.
23+
From Stdlib Require Import List Relations RelationClasses.
2424

2525
(* Set Universe Polymorphism. *)
2626

@@ -29,7 +29,7 @@ From Stdlib Require Import List Relations Relations_1.
2929
Set Implicit Arguments.
3030
Local Notation "[ ]" := nil (at level 0).
3131
Local Notation "[ a ; .. ; b ]" := (a :: .. (b :: []) ..) (at level 0).
32-
Arguments Transitive [U] R.
32+
Local Arguments Transitive [_] R.
3333

3434
Section defs.
3535

0 commit comments

Comments
 (0)