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

Use the version of ssreflect that's shipped with Coq 8.7.

parent 3ad3fdf6
No related branches found
No related tags found
No related merge requests found
...@@ -43,7 +43,7 @@ opam: ...@@ -43,7 +43,7 @@ opam:
build-coq.8.7.dev: build-coq.8.7.dev:
<<: *template <<: *template
variables: variables:
OPAM_PINS: "coq version 8.7.dev coq-mathcomp-ssreflect version dev" OPAM_PINS: "coq version 8.7.dev"
artifacts: artifacts:
paths: paths:
- build-time.txt - build-time.txt
......
...@@ -10,7 +10,6 @@ build: [make "-j%{jobs}%"] ...@@ -10,7 +10,6 @@ build: [make "-j%{jobs}%"]
install: [make "install"] install: [make "install"]
remove: ["rm" "-rf" "%{lib}%/coq/user-contrib/iris"] remove: ["rm" "-rf" "%{lib}%/coq/user-contrib/iris"]
depends: [ depends: [
"coq" { >= "8.6.1" & < "8.8~" } "coq" { >= "8.7.0" & < "8.8~" }
"coq-mathcomp-ssreflect" { (>= "1.6.1" & < "1.7~") | (= "dev") }
"coq-stdpp" { (= "dev.2017-11-12.2") | (= "dev") } "coq-stdpp" { (= "dev.2017-11-12.2") | (= "dev") }
] ]
From mathcomp Require Export ssreflect. From Coq.ssr Require Export ssreflect.
From stdpp Require Export prelude. From stdpp Require Export prelude.
Set Default Proof Using "Type". Set Default Proof Using "Type".
(* Reset options set by the ssreflect plugin to their defaults *)
Global Set Bullet Behavior "Strict Subproofs".
Global Open Scope general_if_scope. Global Open Scope general_if_scope.
Global Unset Asymmetric Patterns. Global Set SsrOldRewriteGoalsOrder. (* See Coq issue #5706 *)
Ltac done := stdpp.tactics.done. Ltac done := stdpp.tactics.done.
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