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

Remove spurious type class argument in sort protocol.

parent 8e80459a
No related branches found
No related tags found
No related merge requests found
......@@ -45,8 +45,7 @@ Definition sort_client_func : val := λ: "cmp" "xs",
Section sort.
Context `{!heapG Σ, !proto_chanG Σ}.
Definition sort_protocol {A} (I : A val iProp Σ) (R : A A Prop)
`{!RelDecision R, !Total R} : iProto Σ :=
Definition sort_protocol {A} (I : A val iProp Σ) (R : A A Prop) : iProto Σ :=
(<!> (xs : list A) (l : loc), MSG #l {{ llist I l xs }};
<?> (xs' : list A), MSG #() {{ Sorted R xs' xs' xs llist I l xs' }};
END)%proto.
......
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