File tree Expand file tree Collapse file tree 4 files changed +29
-4
lines changed
.nix/rocq-overlays/stdlib-subcomponents Expand file tree Collapse file tree 4 files changed +29
-4
lines changed Original file line number Diff line number Diff line change 11
11
"logic" = [ ] ;
12
12
"relations" = [ "corelib-wrapper" ] ;
13
13
"program" = [ "corelib-wrapper" "logic" ] ;
14
- "classes" = [ "program" "relations" ] ;
14
+ "classes" = [ "program" ] ;
15
15
"bool" = [ "classes" ] ;
16
16
"structures" = [ "bool" ] ;
17
17
"arith-base" = [ "structures" ] ;
34
34
"classical-logic" = [ "arith" ] ;
35
35
"sets" = [ "classical-logic" ] ;
36
36
"vectors" = [ "lists" ] ;
37
- "sorting" = [ "lia" "sets" "vectors" ] ;
37
+ "sorting" = [ "lia" "sets" "vectors" "relations" ] ] ;
38
38
"orders-ex" = [ "strings" "sorting" ] ;
39
39
"unicode" = [ ] ;
40
40
"primitive-int" = [ "unicode" "zarith" ] ;
45
45
"fmaps-fsets-msets" = [ "orders-ex" "zarith" ] ;
46
46
"extraction" = [ "primitive-string" "primitive-array" "primitive-floats" ] ;
47
47
"funind" = [ "arith-base" ] ;
48
- "wellfounded" = [ "lists" ] ;
48
+ "wellfounded" = [ "relations" " lists" ] ;
49
49
"streams" = [ "logic" ] ;
50
50
"rtauto" = [ "positive" "lists" ] ;
51
51
"compat" = [ "rtauto" "fmaps-fsets-msets" "funind" "extraction" "reals" "zmod" "wellfounded" "streams" ] ;
Original file line number Diff line number Diff line change
1
+ - in `Wellfounded `
2
+
3
+ + Changed definitions to use `RelationClasses ` instead of `Relations `
4
+ (`#162 <https://github.com/coq/stdlib/pull/162 >`_,
5
+ by Andres Erbsen).
6
+
Original file line number Diff line number Diff line change
1
+ - in `Relation_Definitions `
2
+
3
+ + Everything except `relation `, in favor of `RelationClasses `
4
+ (`#162 <https://github.com/coq/stdlib/pull/162 >`_,
5
+ by Andres Erbsen).
6
+
7
+ - in `Relations `
8
+
9
+ + All uses of `Relations `, adding `RelationClasses ` versions
10
+ (`#162 <https://github.com/coq/stdlib/pull/162 >`_,
11
+ by Andres Erbsen).
12
+
13
+ - in `Operators_Properties `
14
+
15
+ + All uses of `Relation_Definitions `, adding `RelationClasses ` versions
16
+ (`#162 <https://github.com/coq/stdlib/pull/162 >`_,
17
+ by Andres Erbsen).
18
+
Original file line number Diff line number Diff line change @@ -9,7 +9,8 @@ digraph stdlib_deps {
9
9
];
10
10
bool -> classes;
11
11
classes -> program;
12
- classes -> relations;
12
+ wellfounded -> relations;
13
+ sorting -> relations;
13
14
program -> " corelib-wrapper" ;
14
15
program -> logic;
15
16
strings -> arith;
You can’t perform that action at this time.
0 commit comments