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

Missing `IntoForall` instance for later.

parent 2af5dfe1
No related branches found
No related tags found
No related merge requests found
......@@ -720,6 +720,9 @@ Proof. done. Qed.
Global Instance into_forall_always {A} P (Φ : A uPred M) :
IntoForall P Φ IntoForall ( P) (λ a, (Φ a))%I.
Proof. rewrite /IntoForall=> HP. by rewrite HP always_forall. Qed.
Global Instance into_forall_later {A} P (Φ : A uPred M) :
IntoForall P Φ IntoForall ( P) (λ a, (Φ a))%I.
Proof. rewrite /IntoForall=> HP. by rewrite HP later_forall. Qed.
(* FromForall *)
Global Instance from_forall_forall {A} (Φ : A uPred M) :
......
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