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

Move → forward.

parent 4ee81b49
No related branches found
No related tags found
No related merge requests found
...@@ -14,7 +14,7 @@ Definition sort_service_fg_split : val := ...@@ -14,7 +14,7 @@ Definition sort_service_fg_split : val :=
send "c1" #cont;; send "c1" "x";; send "c1" #cont;; send "c1" "x";;
"go" "c" "c2" "c1". "go" "c" "c2" "c1".
Definition sort_service_fg_move : val := Definition sort_service_fg_forward : val :=
rec: "go" "c" "cin" := rec: "go" "c" "cin" :=
if: ~(recv "cin") then send "c" #stop else if: ~(recv "cin") then send "c" #stop else
let: "x" := recv "cin" in let: "x" := recv "cin" in
...@@ -25,7 +25,7 @@ Definition sort_service_fg_merge : val := ...@@ -25,7 +25,7 @@ Definition sort_service_fg_merge : val :=
rec: "go" "cmp" "c" "x1" "c1" "c2" := rec: "go" "cmp" "c" "x1" "c1" "c2" :=
if: ~recv "c2" then if: ~recv "c2" then
send "c" #cont;; send "c" "x1";; send "c" #cont;; send "c" "x1";;
sort_service_fg_move "c" "c1" sort_service_fg_forward "c" "c1"
else else
let: "x2" := recv "c2" in let: "x2" := recv "c2" in
if: "cmp" "x1" "x2" then if: "cmp" "x1" "x2" then
...@@ -114,7 +114,7 @@ Section sort_fg. ...@@ -114,7 +114,7 @@ Section sort_fg.
iApply ("HΨ" $! [] [] []). rewrite !right_id_L. by iFrame. iApply ("HΨ" $! [] [] []). rewrite !right_id_L. by iFrame.
Qed. Qed.
Lemma sort_service_fg_move_spec c p cin xs ys zs xs' ys' : Lemma sort_service_fg_forward_spec c p cin xs ys zs xs' ys' :
xs xs' ++ zs xs xs' ++ zs
ys ys' ++ zs ys ys' ++ zs
Sorted R ys Sorted R ys
...@@ -123,7 +123,7 @@ Section sort_fg. ...@@ -123,7 +123,7 @@ Section sort_fg.
c iProto_dual (sort_fg_tail_protocol xs ys) <++> p @ N c iProto_dual (sort_fg_tail_protocol xs ys) <++> p @ N
cin sort_fg_tail_protocol xs' ys' @ N cin sort_fg_tail_protocol xs' ys' @ N
}}} }}}
sort_service_fg_move c cin sort_service_fg_forward c cin
{{{ RET #(); c p @ N cin END @ N }}}. {{{ RET #(); c p @ N cin END @ N }}}.
Proof. Proof.
iIntros (Hxs Hys Hsorted Hrel Ψ) "[Hc Hcin] HΨ". iIntros (Hxs Hys Hsorted Hrel Ψ) "[Hc Hcin] HΨ".
...@@ -182,7 +182,7 @@ Section sort_fg. ...@@ -182,7 +182,7 @@ Section sort_fg.
* intros x'. * intros x'.
inversion 1; discriminate_list || simplify_list_eq. by constructor. inversion 1; discriminate_list || simplify_list_eq. by constructor.
- wp_select. wp_send with "[$HIy1 //]". - wp_select. wp_send with "[$HIy1 //]".
wp_apply (sort_service_fg_move_spec with "[$Hc $Hc1]"). wp_apply (sort_service_fg_forward_spec with "[$Hc $Hc1]").
* done. * done.
* by rewrite Hys Hys2 -!assoc_L (comm _ xs2). * by rewrite Hys Hys2 -!assoc_L (comm _ xs2).
* by apply Sorted_snoc. * by apply Sorted_snoc.
......
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