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 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" ] ;
Original file line number Diff line number Diff 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;
Original file line number Diff line number Diff line change 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.
2929Set Implicit Arguments .
3030Local Notation "[ ]" := nil (at level 0).
3131Local Notation "[ a ; .. ; b ]" := (a :: .. (b :: []) ..) (at level 0).
32- Arguments Transitive [U ] R.
32+ Local Arguments Transitive [_ ] R.
3333
3434Section defs.
3535
You can’t perform that action at this time.
0 commit comments