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

Fix compilation with new stdpp.

parent bdca4047
Branches
Tags
No related merge requests found
Pipeline #16247 passed
......@@ -42,13 +42,13 @@ Instance binder_dec_eq : EqDecision binder.
Proof. solve_decision. Defined.
Instance set_unfold_cons_binder x mx X P :
SetUnfold (x X) P SetUnfold (x mx :b: X) (BNamed x = mx P).
SetUnfoldElemOf x X P SetUnfoldElemOf x (mx :b: X) (BNamed x = mx P).
Proof.
constructor. rewrite -(set_unfold (x X) P).
destruct mx; rewrite /= ?elem_of_cons; naive_solver.
Qed.
Instance set_unfold_app_binder x mxl X P :
SetUnfold (x X) P SetUnfold (x mxl +b+ X) (BNamed x mxl P).
SetUnfoldElemOf x X P SetUnfoldElemOf x (mxl +b+ X) (BNamed x mxl P).
Proof.
constructor. rewrite -(set_unfold (x X) P).
induction mxl as [|?? IH]; set_solver.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment