Skip to content
Snippets Groups Projects
Commit 968a2267 authored by Ralf Jung's avatar Ralf Jung
Browse files

reorder induction principle

parent 2bc4656d
No related branches found
No related tags found
No related merge requests found
......@@ -40,8 +40,8 @@ Section least.
Qed.
Lemma uPred_least_fixpoint_ind (P : A uPred M) (x : A) :
uPred_least_fixpoint F x -∗ ( y, F P y -∗ P y) -∗ P x.
Proof. iIntros "HF #HP". iApply "HF". done. Qed.
( y, F P y -∗ P y) -∗ uPred_least_fixpoint F x -∗ P x.
Proof. iIntros "#HP HF". iApply "HF". done. Qed.
End least.
Section greatest.
......
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