Skip to content

Commit e8aa80c

Browse files
committed
follow best practices for _CoqProject files
1 parent 51cdccd commit e8aa80c

File tree

6 files changed

+23
-10
lines changed

6 files changed

+23
-10
lines changed

Core/Make

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
-Q . DiSeL
2-
-arg "-w -notation-overridden,-local-declaration,-redundant-canonical-projection,-projection-no-head-constant"
2+
3+
-arg -w -arg -notation-overridden
4+
-arg -w -arg -local-declaration
5+
-arg -w -arg -redundant-canonical-projection
6+
-arg -w -arg -projection-no-head-constant
37

48
Domain.v
59
State.v

Core/opam

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ maintainer: "palmskog@gmail.com"
66
homepage: "https://github.com/DistributedComponents/disel"
77
dev-repo: "https://github.com/DistributedComponents/disel.git"
88
bug-reports: "https://github.com/DistributedComponents/disel/issues"
9-
license: "BSD2"
9+
license: "BSD 2"
1010

1111
build: [ make "-j" "%{jobs}%" ]
1212
install: [ make "install" ]
@@ -22,8 +22,9 @@ tags: [
2222
"keyword:program verification"
2323
"keyword:separation logic"
2424
"keyword:distributed algorithms"
25+
"logpath:DiSeL"
2526
]
2627
authors: [
27-
"Ilya Sergey <>"
28-
"James R. Wilcox <>"
28+
"Ilya Sergey"
29+
"James R. Wilcox"
2930
]

Examples/Make

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
-Q . DiSeL
2-
-arg "-w -notation-overridden,-local-declaration,-redundant-canonical-projection,-projection-no-head-constant"
2+
3+
-arg -w -arg -notation-overridden
4+
-arg -w -arg -local-declaration
5+
-arg -w -arg -redundant-canonical-projection
6+
-arg -w -arg -projection-no-head-constant
37

48
Calculator/CalculatorInvariant.v
59
Calculator/DelegatingCalculatorServer.v

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2016-2017, Distributed Components Team.
1+
Copyright (c) 2016-2018, Distributed Components Team.
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without
@@ -22,4 +22,4 @@ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2222
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2323
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2424
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ Zachary Tatlock, in the POPL 2018 proceedings.
1111

1212
### Requirements
1313

14-
* [Coq 8.7 or 8.8](https://coq.inria.fr)
15-
* [Mathematical Components 1.6.2 or later](http://math-comp.github.io/math-comp/) (`ssreflect`)
14+
* [Coq 8.7 or later](https://coq.inria.fr)
15+
* [Mathematical Components 1.6.2 or later](http://math-comp.github.io/math-comp/) (`ssreflect` suffices)
1616
* [FCSL PCM library 1.0.0 or later](https://github.com/imdea-software/fcsl-pcm)
1717
* [OCaml 4.05.0 or later](https://ocaml.org) (to compile and run the extracted applications)
1818

_CoqProject

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
-Q Core DiSeL
22
-Q Examples DiSeL
3-
-arg "-w -notation-overridden,-local-declaration,-redundant-canonical-projection,-projection-no-head-constant"
3+
4+
-arg -w -arg -notation-overridden
5+
-arg -w -arg -local-declaration
6+
-arg -w -arg -redundant-canonical-projection
7+
-arg -w -arg -projection-no-head-constant
48

59
Core/Domain.v
610
Core/State.v

0 commit comments

Comments
 (0)