Skip to content

Commit ddb0dd4

Browse files
authored
Merge pull request #44 Update boilerplate for MathComp 1.14.0
2 parents 8c6ba52 + f0a8655 commit ddb0dd4

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.github/workflows/docker-action.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020
matrix:
2121
image:
2222
- 'mathcomp/mathcomp-dev:coq-dev'
23+
- 'mathcomp/mathcomp:1.14.0-coq-8.15'
24+
- 'mathcomp/mathcomp:1.14.0-coq-8.14'
2325
- 'mathcomp/mathcomp:1.13.0-coq-8.15'
2426
- 'mathcomp/mathcomp:1.13.0-coq-8.14'
2527
- 'mathcomp/mathcomp:1.13.0-coq-8.13'

coq-reglang.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ build: ["dune" "build" "-p" name "-j" jobs]
2020
depends: [
2121
"dune" {>= "2.5"}
2222
"coq" {(>= "8.10" & < "8.16~") | (= "dev")}
23-
"coq-mathcomp-ssreflect" {(>= "1.11" & < "1.14~") | (= "dev")}
23+
"coq-mathcomp-ssreflect" {(>= "1.11" & < "1.15~") | (= "dev")}
2424
]
2525

2626
tags: [

meta.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ supported_coq_versions:
5454
dependencies:
5555
- opam:
5656
name: coq-mathcomp-ssreflect
57-
version: '{(>= "1.11" & < "1.14~") | (= "dev")}'
57+
version: '{(>= "1.11" & < "1.15~") | (= "dev")}'
5858
description: |-
5959
[MathComp](https://math-comp.github.io) 1.11.0 or later (`ssreflect` suffices)
6060
@@ -69,6 +69,10 @@ tested_coq_nix_versions:
6969
tested_coq_opam_versions:
7070
- version: 'coq-dev'
7171
repo: 'mathcomp/mathcomp-dev'
72+
- version: '1.14.0-coq-8.15'
73+
repo: 'mathcomp/mathcomp'
74+
- version: '1.14.0-coq-8.14'
75+
repo: 'mathcomp/mathcomp'
7276
- version: '1.13.0-coq-8.15'
7377
repo: 'mathcomp/mathcomp'
7478
- version: '1.13.0-coq-8.14'

theories/languages.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Definition plus l1 l2 : dlang char := [pred w | (w \in l1) || (w \in l2)].
9191
Definition residual x l : dlang char := [pred w | x :: w \in l].
9292

9393
(** For the concatenation of two decidable languages, we use finite
94-
types. Note that we need to use [L1] and [L2] applicatively in order
94+
types. Note that we need to use [l1] and [l2] applicatively in order
9595
for the termination check for [star] to succeed. *)
9696

9797
Definition conc l1 l2 : dlang char :=

0 commit comments

Comments
 (0)