Skip to content

Commit 4a191b6

Browse files
committed
rebase wrt 0.6.6
1 parent 6232e46 commit 4a191b6

File tree

8 files changed

+47
-253
lines changed

8 files changed

+47
-253
lines changed

.github/workflows/docker-action.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,7 @@ jobs:
1515
strategy:
1616
matrix:
1717
image:
18-
- 'mathcomp/mathcomp:1.15.0-coq-8.14'
19-
- 'mathcomp/mathcomp:1.15.0-coq-8.15'
2018
- 'mathcomp/mathcomp:1.15.0-coq-8.16'
21-
- 'mathcomp/mathcomp:1.16.0-coq-8.14'
22-
- 'mathcomp/mathcomp:1.17.0-coq-8.15'
2319
- 'mathcomp/mathcomp:1.17.0-coq-8.16'
2420
- 'mathcomp/mathcomp:1.17.0-coq-8.17'
2521
fail-fast: false

.github/workflows/nix-action-8.14.yml

Lines changed: 0 additions & 201 deletions
This file was deleted.

coq-mathcomp-classical.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ the Coq proof-assistant and using the Mathematical Components library."""
1818
build: [make "-C" "classical" "-j%{jobs}%"]
1919
install: [make "-C" "classical" "install"]
2020
depends: [
21-
"coq" { (>= "8.14" & < "8.19~") | (= "dev") }
21+
"coq" { (>= "8.16" & < "8.19~") | (= "dev") }
2222
"coq-mathcomp-ssreflect" { (>= "1.13.0" & < "1.19~") | (= "dev") }
2323
"coq-mathcomp-fingroup"
2424
"coq-mathcomp-algebra"

theories/lang_syntax.v

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Require Import String.
22
From HB Require Import structures.
33
From mathcomp Require Import all_ssreflect ssralg ssrnum ssrint interval.
4-
From mathcomp.classical Require Import mathcomp_extra boolp classical_sets.
5-
From mathcomp.classical Require Import functions cardinality fsbigop.
4+
From mathcomp Require Import mathcomp_extra boolp classical_sets.
5+
From mathcomp Require Import functions cardinality fsbigop.
66
Require Import signed reals ereal topology normedtype sequences esum measure.
77
Require Import lebesgue_measure numfun lebesgue_integral kernel prob_lang.
88
Require Import lang_syntax_util.
@@ -89,7 +89,7 @@ Proof. done. Qed.
8989
Let mswap_sigma_additive x : semi_sigma_additive (mswap x).
9090
Proof. exact: measure_semi_sigma_additive. Qed.
9191

92-
HB.instance Definition _ x := isMeasure.Build _ R _
92+
HB.instance Definition _ x := isMeasure.Build _ _ R
9393
(mswap x) (mswap0 x) (mswap_ge0 x) (@mswap_sigma_additive x).
9494

9595
Definition mkswap : _ -> {measure set Z -> \bar R} :=
@@ -185,7 +185,7 @@ Let T0 z : (T' z) set0 = 0. Proof. by []. Qed.
185185
Let T_ge0 z x : 0 <= (T' z) x. Proof. by []. Qed.
186186
Let T_semi_sigma_additive z : semi_sigma_additive (T' z).
187187
Proof. exact: measure_semi_sigma_additive. Qed.
188-
HB.instance Definition _ z := @isMeasure.Build _ R X (T' z) (T0 z) (T_ge0 z)
188+
HB.instance Definition _ z := @isMeasure.Build _ X R (T' z) (T0 z) (T_ge0 z)
189189
(@T_semi_sigma_additive z).
190190

191191
Let sfinT z : sfinite_measure (T' z). Proof. exact: sfinite_kernel_measure. Qed.
@@ -197,7 +197,7 @@ Let U0 z : (U' z) set0 = 0. Proof. by []. Qed.
197197
Let U_ge0 z x : 0 <= (U' z) x. Proof. by []. Qed.
198198
Let U_semi_sigma_additive z : semi_sigma_additive (U' z).
199199
Proof. exact: measure_semi_sigma_additive. Qed.
200-
HB.instance Definition _ z := @isMeasure.Build _ R Y (U' z) (U0 z) (U_ge0 z)
200+
HB.instance Definition _ z := @isMeasure.Build _ Y R (U' z) (U0 z) (U_ge0 z)
201201
(@U_semi_sigma_additive z).
202202

203203
Let sfinU z : sfinite_measure (U' z). Proof. exact: sfinite_kernel_measure. Qed.

0 commit comments

Comments
 (0)