Skip to content

Commit 71e7e5e

Browse files
committed
1 parent 0ae93b4 commit 71e7e5e

File tree

6 files changed

+11
-12
lines changed

6 files changed

+11
-12
lines changed

theories/BGsection10.v

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ Reserved Notation "\alpha ( M )" (format "\alpha ( M )").
3636
Reserved Notation "\beta ( M )" (format "\beta ( M )").
3737
Reserved Notation "\sigma ( M )" (format "\sigma ( M )").
3838

39-
Reserved Notation "M `_ \alpha" (at level 3, format "M `_ \alpha").
40-
Reserved Notation "M `_ \beta" (at level 3, format "M `_ \beta").
41-
Reserved Notation "M `_ \sigma" (at level 3, format "M `_ \sigma").
39+
Reserved Notation "M `_ \alpha" (format "M `_ \alpha").
40+
Reserved Notation "M `_ \beta" (format "M `_ \beta").
41+
Reserved Notation "M `_ \sigma" (format "M `_ \sigma").
4242

4343
Section Def.
4444

theories/BGsection15.v

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ Canonical Structure Fitting_core_group := [group of Fitting_core].
3636

3737
End Definitions.
3838

39-
Notation "M `_ \F" := (Fitting_core M)
40-
(at level 3, format "M `_ \F") : group_scope.
39+
Notation "M `_ \F" := (Fitting_core M) (format "M `_ \F") : group_scope.
4140
Notation "M `_ \F" := (Fitting_core_group M) : Group_scope.
4241

4342
Section FittingCore.

theories/BGsection16.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ Definition mmax_transversal U := orbit_transversal 'JG U 'M.
195195

196196
End Definitions.
197197

198-
Notation "M `_ \s" := (FTcore M) (at level 3, format "M `_ \s") : group_scope.
198+
Notation "M `_ \s" := (FTcore M) (format "M `_ \s") : group_scope.
199199
Notation "M `_ \s" := (FTcore_group M) : Group_scope.
200200

201201
Notation "''A1' ( M )" := (FTsupport1 M) (format "''A1' ( M )") : group_scope.
@@ -205,7 +205,7 @@ Notation "''A' ( M )" := (FTsupport M) (format "''A' ( M )") : group_scope.
205205
Notation "''A0' ( M )" := (FTsupport0 M) (format "''A0' ( M )") : group_scope.
206206

207207
Notation "''M^' G" := (mmax_transversal G)
208-
(at level 3, format "''M^' G") : group_scope.
208+
(at level 1, format "''M^' G") : group_scope.
209209

210210
Section Section16.
211211

theories/BGsection2.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ Let E2_ i t :=
220220

221221
Local Notation "''V_' i" := (V_ i) (at level 8, i at level 2, format "''V_' i").
222222
Local Notation "''n_' i" := (n_ i) (at level 8, i at level 2, format "''n_' i").
223-
Local Notation "''E_' i" := (E_ i) (at level 8, i at level 2, format "''E_' i").
223+
Local Notation "''E_' i" := (E_ i) (at level 0, i at level 2, format "''E_' i").
224224
Local Notation "'E_ ( i )" := (E_ i) (only parsing).
225225
Local Notation "e ^g" := (g^-1 *m (e *m g)) (format "e ^g") : ring_scope.
226226
Local Notation "'E_ ( i , t )" := (E2_ i t) (format "''E_' ( i , t )").

theories/PFsection3.v

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -442,9 +442,9 @@ Lemma RmodelP (m : model) : is_Rmodel m. Proof. by case: m. Qed.
442442

443443
Fact nil_RmodelP : is_Rmodel nil. Proof. by []. Qed.
444444

445-
Definition eval_cl (m : model) kvs := \sum_(kv <- kvs) m`_kv.1 *~ kv.2.
445+
Definition eval_cl (m : model) kvs := \sum_(kv <- kvs) m`_(kv.1) *~ kv.2.
446446

447-
Definition sat_lit (m : model) ij kv := '[m ij, m`_kv.1] == kv.2%:~R.
447+
Definition sat_lit (m : model) ij kv := '[m ij, m`_(kv.1)] == kv.2%:~R.
448448
Definition sat_cl m cl := uniq (unzip1 cl.2) && all (sat_lit m cl.1) cl.2.
449449

450450
Definition sat (m : model) th :=
@@ -1242,7 +1242,7 @@ have /dIrrP[dk Ddk]: m`_0 \in dirr G.
12421242
have [[/andP[/allP n1m _] Zm] [_ m_gt0 _]] := (RmodelP m, and3P m_th).
12431243
by rewrite dirrE Zm ?[_ == 1]n1m ?mem_nth.
12441244
exists dk => [][i j] /andP[/= lti ltj]; apply/eqP.
1245-
suffices{dk Ddk}: sat_cl m (& (Lit 1 (j == 0))%N in (i, j)).
1245+
suffices{dk Ddk}: sat_cl m (& ((Lit 1 (j == 0))%N) in (i, j)).
12461246
by rewrite /sat_cl /= andbT /sat_lit Ddk.
12471247
without loss{i lti} ->: m i ltj m_th / i = 0%N.
12481248
have [bb21_m m_gt0 m11_x1 m21_x1 _] := and5P m_th.

theories/PFsection9.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ Proof.
312312
by have:= typeII_IV_core => /=; case: ifP => // _ [/def_Ptype_factor_prime].
313313
Qed.
314314

315-
Let frobUW1c : [Frobenius U <*> W1 / C = Ubar ><| W1 / C].
315+
Let frobUW1c : [Frobenius U <*> W1 / C = Ubar ><| (W1 / C)].
316316
Proof.
317317
apply: Frobenius_quotient frobUW1 _ nsCUW1 _.
318318
by apply: nilpotent_sol; have [_ []] := MtypeP.

0 commit comments

Comments
 (0)