Skip to content
Snippets Groups Projects
Commit b48d40e9 authored by Robbert Krebbers's avatar Robbert Krebbers
Browse files

Use `!` instead of `+`.

parent 5e3d8b90
No related branches found
No related tags found
No related merge requests found
......@@ -465,13 +465,13 @@ Class PartialOrder {A} (R : relation A) : Prop := {
partial_order_pre :> PreOrder R;
partial_order_anti_symm :> AntiSymm (=) R
}.
Global Hint Mode PartialOrder ! + : typeclass_instances.
Global Hint Mode PartialOrder ! ! : typeclass_instances.
Class TotalOrder {A} (R : relation A) : Prop := {
total_order_partial :> PartialOrder R;
total_order_trichotomy :> Trichotomy (strict R)
}.
Global Hint Mode TotalOrder ! + : typeclass_instances.
Global Hint Mode TotalOrder ! ! : typeclass_instances.
(** * Logic *)
Global Instance prop_inhabited : Inhabited Prop := populate True.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment