Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions theories/Sorting/Sorted.v
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
The two notions are equivalent if the order is transitive.
*)

From Stdlib Require Import List Relations Relations_1.
From Stdlib Require Import List Relations RelationClasses.

(* Set Universe Polymorphism. *)

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

Section defs.

Expand Down
Loading