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

Fix issue #128.

parent f8ef60fe
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,10 @@ Lemma tac_wp_value `{heapG Σ} Δ s E Φ e v :
envs_entails Δ (Φ v) envs_entails Δ (WP e @ s; E {{ Φ }}).
Proof. rewrite /envs_entails=> ? ->. by apply wp_value. Qed.
Ltac wp_value_head := eapply tac_wp_value; [apply _|lazy beta].
Ltac wp_value_head :=
eapply tac_wp_value;
[apply _
|iEval (lazy beta; simpl of_val)].
Tactic Notation "wp_pure" open_constr(efoc) :=
iStartProof;
......
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