File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
.nix/rocq-overlays/stdlib-subcomponents Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 33
33
"classical-logic" = [ "arith" ] ;
34
34
"sets" = [ "classical-logic" ] ;
35
35
"vectors" = [ "lists" ] ;
36
- "sorting" = [ "lia" "sets" " vectors" ] ;
36
+ "sorting" = [ "lia" "vectors" ] ;
37
37
"orders-ex" = [ "strings" "sorting" ] ;
38
38
"unicode" = [ ] ;
39
39
"primitive-int" = [ "unicode" "zarith" ] ;
Original file line number Diff line number Diff line change @@ -39,7 +39,6 @@ digraph stdlib_deps {
39
39
" orders-ex" -> sorting;
40
40
sets -> " classical-logic" ;
41
41
sorting -> lia;
42
- sorting -> sets;
43
42
sorting -> vectors;
44
43
" primitive-floats" -> " primitive-int" ;
45
44
wellfounded -> lists;
Original file line number Diff line number Diff line change 20
20
The two notions are equivalent if the order is transitive.
21
21
*)
22
22
23
- From Stdlib Require Import List Relations Relations_1 .
23
+ From Stdlib Require Import List Relations RelationClasses .
24
24
25
25
(* Set Universe Polymorphism. *)
26
26
@@ -29,7 +29,7 @@ From Stdlib Require Import List Relations Relations_1.
29
29
Set Implicit Arguments .
30
30
Local Notation "[ ]" := nil (at level 0).
31
31
Local Notation "[ a ; .. ; b ]" := (a :: .. (b :: []) ..) (at level 0).
32
- Arguments Transitive [U ] R.
32
+ Local Arguments Transitive [_ ] R.
33
33
34
34
Section defs.
35
35
You can’t perform that action at this time.
0 commit comments