From 829475ce8d982256b539e2b9d2c53957f27505ba Mon Sep 17 00:00:00 2001 From: Michael Sammler <noreply@sammler.me> Date: Tue, 31 Mar 2020 14:45:05 +0200 Subject: [PATCH] drop_insert -> drop_insert_gt --- opam | 2 +- theories/heap_lang/array.v | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/opam b/opam index 9537be476..6a54e9fba 100644 --- a/opam +++ b/opam @@ -11,7 +11,7 @@ synopsis: "This is the Coq development of the Iris Project" depends: [ "coq" { (>= "8.9.1" & < "8.12~") | (= "dev") } - "coq-stdpp" { (= "dev.2020-03-18.1.846deb08") | (= "dev") } + "coq-stdpp" { (= "dev.2020-03-31.1.46844f29") | (= "dev") } ] build: [make "-j%{jobs}%"] diff --git a/theories/heap_lang/array.v b/theories/heap_lang/array.v index 3a3990a95..43879b05b 100644 --- a/theories/heap_lang/array.v +++ b/theories/heap_lang/array.v @@ -81,7 +81,7 @@ Proof. rewrite -[in (l ↦∗{_} <[off:=w]> vs)%I](take_drop_middle (<[off:=w]> vs) off w Hlookup). iApply array_app. rewrite take_insert; last by lia. iFrame. iApply array_cons. rewrite take_length min_l; last by lia. iFrame. - rewrite drop_insert; last by lia. done. + rewrite drop_insert_gt; last by lia. done. Qed. (** * Rules for allocation *) -- GitLab