make it compatible with Coq 8.7, and test that
Turns out Coq 8.7 is 20% faster. :-) Some of this is lost to parallelism though, it seems.
8.6:
real 11m7.102s
user 25m5.797s
sys 0m17.457s
8.7:
real 9m0.417s
user 19m40.020s
sys 0m16.213s
I reported the fact that I had to change something to make it work again as https://coq.inria.fr/bugs/show_bug.cgi?id=5749.
Edited by Ralf Jung
Merge request reports
Activity
I just pushed another commit here which updates iGPS to the latest Iris, fixing all the breakage that @robbertkrebbers brought upon us. ;)
added 1 commit
- 50c925bc - More updates for EqDecision changes in coqstdpp.
222 221 Proof. by rewrite elem_of_of_list elem_of_rcu_info'. Qed. 223 222 224 223 Lemma rcu_dom'_cons H i b : 225 dom (gset _) ((i,b)::H) ≡ {[i]} ∪ dom (gset _) H. 224 dom (gset loc) ((i,b)::H) ≡ {[i]} ∪ dom (gset _) H. 226 225 Proof. 227 226 rewrite /= /RCUHist_dom => x. by rewrite elem_of_of_list fmap_cons. 228 227 Qed. 229 228 230 229 Lemma rcu_dom'_cons_in H i b (In: i ∈ dom (gset _) H): 231 dom (gset _) ((i,b)::H) ≡ dom (gset _) H. 230 dom (gset loc) ((i,b)::H) ≡ dom (gset _) H. added 2 commits
mentioned in commit 028d067c
Please register or sign in to reply