Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

Commit 2a0ce62

Browse files
author
github-actions[bot]
committed
chore(*): add mathlib4 synchronization comments (#19196)
Regenerated from the [port status wiki page](https://github.com/leanprover-community/mathlib/wiki/mathlib4-port-status). Relates to the following files: * `algebra.category.BoolRing` * `algebra.continued_fractions.computation.approximation_corollaries` * `category_theory.monoidal.internal.functor_category` * `field_theory.galois` * `field_theory.minpoly.is_integrally_closed` * `field_theory.primitive_element` * `linear_algebra.matrix.ldl` * `number_theory.diophantine_approximation` * `number_theory.pell` * `number_theory.primes_congruent_one` * `order.category.FinBoolAlg` * `probability.kernel.composition` * `probability.kernel.cond_cdf` * `probability.kernel.invariance` * `ring_theory.polynomial.cyclotomic.eval` * `ring_theory.polynomial.cyclotomic.expand` * `ring_theory.polynomial.cyclotomic.roots` * `ring_theory.polynomial.gauss_lemma` * `ring_theory.polynomial.selmer` * `ring_theory.ring_hom.finite_type` * `ring_theory.roots_of_unity.minpoly` * `topology.category.UniformSpace` * `topology.continuous_function.zero_at_infty` * `topology.sheaves.operations`
1 parent 893964f commit 2a0ce62

24 files changed

Lines changed: 72 additions & 0 deletions

File tree

src/algebra/category/BoolRing.lean

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ import order.category.BoolAlg
1010
/-!
1111
# The category of Boolean rings
1212
13+
> THIS FILE IS SYNCHRONIZED WITH MATHLIB4.
14+
> Any changes to this file require a corresponding PR to mathlib4.
15+
1316
This file defines `BoolRing`, the category of Boolean rings.
1417
1518
## TODO

src/algebra/continued_fractions/computation/approximation_corollaries.lean

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ import topology.order.basic
1212
/-!
1313
# Corollaries From Approximation Lemmas (`algebra.continued_fractions.computation.approximations`)
1414
15+
> THIS FILE IS SYNCHRONIZED WITH MATHLIB4.
16+
> Any changes to this file require a corresponding PR to mathlib4.
17+
1518
## Summary
1619
1720
We show that the generalized_continued_fraction given by `generalized_continued_fraction.of` in fact

src/category_theory/monoidal/internal/functor_category.lean

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ import category_theory.monoidal.functor_category
99
/-!
1010
# `Mon_ (C ⥤ D) ≌ C ⥤ Mon_ D`
1111
12+
> THIS FILE IS SYNCHRONIZED WITH MATHLIB4.
13+
> Any changes to this file require a corresponding PR to mathlib4.
14+
1215
When `D` is a monoidal category,
1316
monoid objects in `C ⥤ D` are the same thing as functors from `C` into the monoid objects of `D`.
1417

src/field_theory/galois.lean

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ import group_theory.group_action.fixing_subgroup
1111
/-!
1212
# Galois Extensions
1313
14+
> THIS FILE IS SYNCHRONIZED WITH MATHLIB4.
15+
> Any changes to this file require a corresponding PR to mathlib4.
16+
1417
In this file we define Galois extensions as extensions which are both separable and normal.
1518
1619
## Main definitions

src/field_theory/minpoly/is_integrally_closed.lean

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ import ring_theory.polynomial.gauss_lemma
1010
/-!
1111
# Minimal polynomials over a GCD monoid
1212
13+
> THIS FILE IS SYNCHRONIZED WITH MATHLIB4.
14+
> Any changes to this file require a corresponding PR to mathlib4.
15+
1316
This file specializes the theory of minpoly to the case of an algebra over a GCD monoid.
1417
1518
## Main results

src/field_theory/primitive_element.lean

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ import ring_theory.integral_domain
1212
/-!
1313
# Primitive Element Theorem
1414
15+
> THIS FILE IS SYNCHRONIZED WITH MATHLIB4.
16+
> Any changes to this file require a corresponding PR to mathlib4.
17+
1518
In this file we prove the primitive element theorem.
1619
1720
## Main results

src/linear_algebra/matrix/ldl.lean

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ import linear_algebra.matrix.pos_def
88

99
/-! # LDL decomposition
1010
11+
> THIS FILE IS SYNCHRONIZED WITH MATHLIB4.
12+
> Any changes to this file require a corresponding PR to mathlib4.
13+
1114
This file proves the LDL-decomposition of matricies: Any positive definite matrix `S` can be
1215
decomposed as `S = LDLᴴ` where `L` is a lower-triangular matrix and `D` is a diagonal matrix.
1316

src/number_theory/diophantine_approximation.lean

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ import tactic.basic
1414
/-!
1515
# Diophantine Approximation
1616
17+
> THIS FILE IS SYNCHRONIZED WITH MATHLIB4.
18+
> Any changes to this file require a corresponding PR to mathlib4.
19+
1720
The first part of this file gives proofs of various versions of
1821
**Dirichlet's approximation theorem** and its important consequence that when $\xi$ is an
1922
irrational real number, then there are infinitely many rationals $x/y$ (in lowest terms)

src/number_theory/pell.lean

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ import number_theory.zsqrtd.basic
1212
/-!
1313
# Pell's Equation
1414
15+
> THIS FILE IS SYNCHRONIZED WITH MATHLIB4.
16+
> Any changes to this file require a corresponding PR to mathlib4.
17+
1518
*Pell's Equation* is the equation $x^2 - d y^2 = 1$, where $d$ is a positive integer
1619
that is not a square, and one is interested in solutions in integers $x$ and $y$.
1720

src/number_theory/primes_congruent_one.lean

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ import ring_theory.polynomial.cyclotomic.eval
99
/-!
1010
# Primes congruent to one
1111
12+
> THIS FILE IS SYNCHRONIZED WITH MATHLIB4.
13+
> Any changes to this file require a corresponding PR to mathlib4.
14+
1215
We prove that, for any positive `k : ℕ`, there are infinitely many primes `p` such that
1316
`p ≡ 1 [MOD k]`.
1417
-/

0 commit comments

Comments
 (0)