Skip to content

[Merged by Bors] - feat(RingTheory): decompose archimedean classes of HahnSeries#25970

Closed
wwylele wants to merge 8 commits intoleanprover-community:masterfrom
wwylele:wwylele-hahn-dictionary
Closed

[Merged by Bors] - feat(RingTheory): decompose archimedean classes of HahnSeries#25970
wwylele wants to merge 8 commits intoleanprover-community:masterfrom
wwylele:wwylele-hahn-dictionary

Conversation

@github-actions github-actions bot added the large-import Automatically added label for PRs with a significant increase in transitive imports label Jun 16, 2025
@github-actions
Copy link
Copy Markdown

github-actions bot commented Jun 16, 2025

PR summary 8bb991a4a0

Import changes exceeding 2%

% File
+15.38% Mathlib.RingTheory.HahnSeries.Lex

Import changes for modified files

Dependency changes

File Base Count Head Count Change
Mathlib.RingTheory.HahnSeries.Lex 780 900 +120 (+15.38%)
Import changes for all files
Files Import difference
Mathlib.RingTheory.HahnSeries.Lex 120

Declarations diff

+ abs_lt_abs_of_orderTop_ofLex
+ archimedeanClassMk_eq_archimedeanClassMk_iff
+ archimedeanClassMk_le_archimedeanClassMk_iff
+ archimedeanClassMk_le_archimedeanClassMk_iff_of_orderTop_ofLex
+ archimedeanClassOrderIsoWithTop
+ archimedeanClassOrderIsoWithTop_apply
+ finiteArchimedeanClassOrderHomInvLex
+ finiteArchimedeanClassOrderHomLex
+ finiteArchimedeanClassOrderIso
+ finiteArchimedeanClassOrderIsoLex
+ finiteArchimedeanClassOrderIsoLex_apply_fst
+ finiteArchimedeanClassOrderIsoLex_apply_snd
+ finiteArchimedeanClassOrderIso_apply
+ toLex_eq_one

You can run this locally as follows
## summary with just the declaration names:
./scripts/declarations_diff.sh <optional_commit>

## more verbose report:
./scripts/declarations_diff.sh long <optional_commit>

The doc-module for script/declarations_diff.sh contains some details about this script.


No changes to technical debt.

You can run this locally as

./scripts/technical-debt-metrics.sh pr_summary
  • The relative value is the weighted sum of the differences with weight given by the inverse of the current value of the statistic.
  • The absolute value is the relative value divided by the total sum of the inverses of the current values (i.e. the weighted average of the differences).

@wwylele wwylele mentioned this pull request Jun 17, 2025
7 tasks
@wwylele wwylele requested a review from ScottCarnahan June 29, 2025 13:51
@wwylele
Copy link
Copy Markdown
Collaborator Author

wwylele commented Jul 5, 2025

I realized recent updates from master caused conflicts, so I took this chance to separate out a small PR: #26773

@mathlib4-dependent-issues-bot mathlib4-dependent-issues-bot added the blocked-by-other-PR This PR depends on another PR (this label is automatically managed by a bot) label Jul 5, 2025
@leanprover-community-bot-assistant
Copy link
Copy Markdown
Collaborator

This pull request has conflicts, please merge master and resolve them.

@leanprover-community-bot-assistant leanprover-community-bot-assistant added the merge-conflict The PR has a merge conflict with master, and needs manual merging. (this label is managed by a bot) label Jul 5, 2025
@mathlib4-dependent-issues-bot mathlib4-dependent-issues-bot removed the blocked-by-other-PR This PR depends on another PR (this label is automatically managed by a bot) label Jul 5, 2025
@wwylele wwylele force-pushed the wwylele-hahn-dictionary branch from fecfbf1 to 0bd0d80 Compare July 5, 2025 13:52
@github-actions github-actions bot removed the merge-conflict The PR has a merge conflict with master, and needs manual merging. (this label is managed by a bot) label Jul 5, 2025
@mathlib4-dependent-issues-bot mathlib4-dependent-issues-bot added the blocked-by-other-PR This PR depends on another PR (this label is automatically managed by a bot) label Jul 5, 2025
@leanprover-community-bot-assistant leanprover-community-bot-assistant added the merge-conflict The PR has a merge conflict with master, and needs manual merging. (this label is managed by a bot) label Jul 6, 2025
@leanprover-community-bot-assistant
Copy link
Copy Markdown
Collaborator

This pull request has conflicts, please merge master and resolve them.

@mathlib4-dependent-issues-bot mathlib4-dependent-issues-bot removed the blocked-by-other-PR This PR depends on another PR (this label is automatically managed by a bot) label Jul 11, 2025
@wwylele wwylele force-pushed the wwylele-hahn-dictionary branch from 0bd0d80 to 0248a0b Compare July 12, 2025 00:55
@github-actions github-actions bot removed the merge-conflict The PR has a merge conflict with master, and needs manual merging. (this label is managed by a bot) label Jul 12, 2025
@wwylele wwylele force-pushed the wwylele-hahn-dictionary branch 2 times, most recently from 847c366 to e34ba34 Compare July 12, 2025 01:20
@wwylele
Copy link
Copy Markdown
Collaborator Author

wwylele commented Aug 20, 2025

Thanks @YaelDillies , and I did some more clean up after merging

pfaffelh pushed a commit to pfaffelh/mathlib4 that referenced this pull request Aug 20, 2025
…unity#28394)

Separated from leanprover-community#25970. This adds a subtype of (Mul)ArchimedeanClass that is useful in formalizing Hahn embedding theorem.

The only code change since last review was doc string update for `to_additive`
@wwylele wwylele requested a review from YaelDillies August 21, 2025 15:54
Copy link
Copy Markdown
Contributor

@YaelDillies YaelDillies left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

maintainer delegate

Comment on lines +300 to +302
· ext x
cases x with | h x
obtain ⟨order, coeff⟩ := x
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This really ought to work, but it doesn't because Lex is too see-through...

Suggested change
· ext x
cases x with | h x
obtain ⟨order, coeff⟩ := x
· ext ⟨order, coeff⟩

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah I tried a few variation of this but coundn't make it work. I am going to merge this as-is

@github-actions
Copy link
Copy Markdown

🚀 Pull request has been placed on the maintainer queue by YaelDillies.

@ghost ghost added the maintainer-merge A reviewer has approved the changed; awaiting maintainer approval. label Aug 22, 2025
Paul-Lez pushed a commit to Paul-Lez/mathlib4 that referenced this pull request Aug 23, 2025
Paul-Lez pushed a commit to Paul-Lez/mathlib4 that referenced this pull request Aug 23, 2025
…unity#28394)

Separated from leanprover-community#25970. This adds a subtype of (Mul)ArchimedeanClass that is useful in formalizing Hahn embedding theorem.

The only code change since last review was doc string update for `to_additive`
pechersky pushed a commit to pechersky/mathlib4 that referenced this pull request Aug 25, 2025
pechersky pushed a commit to pechersky/mathlib4 that referenced this pull request Aug 25, 2025
…unity#28394)

Separated from leanprover-community#25970. This adds a subtype of (Mul)ArchimedeanClass that is useful in formalizing Hahn embedding theorem.

The only code change since last review was doc string update for `to_additive`
@riccardobrasca
Copy link
Copy Markdown
Member

Thanks!

bors d+

@mathlib-bors
Copy link
Copy Markdown
Contributor

mathlib-bors bot commented Aug 26, 2025

✌️ wwylele can now approve this pull request. To approve and merge a pull request, simply reply with bors r+. More detailed instructions are available here.

@ghost ghost added delegated This pull request has been delegated to the PR author (or occasionally another non-maintainer). and removed maintainer-merge A reviewer has approved the changed; awaiting maintainer approval. labels Aug 26, 2025
@wwylele
Copy link
Copy Markdown
Collaborator Author

wwylele commented Aug 26, 2025

bors r+

mathlib-bors bot pushed a commit that referenced this pull request Aug 26, 2025
In preparation for #25140, this connects archimedean class and HahnSeries

Co-authored-by: Yaël Dillies <yael.dillies@gmail.com>
@mathlib-bors
Copy link
Copy Markdown
Contributor

mathlib-bors bot commented Aug 26, 2025

This PR was included in a batch that was canceled, it will be automatically retried

mathlib-bors bot pushed a commit that referenced this pull request Aug 26, 2025
In preparation for #25140, this connects archimedean class and HahnSeries

Co-authored-by: Yaël Dillies <yael.dillies@gmail.com>
@mathlib-bors
Copy link
Copy Markdown
Contributor

mathlib-bors bot commented Aug 27, 2025

Pull request successfully merged into master.

Build succeeded:

@mathlib-bors mathlib-bors bot changed the title feat(RingTheory): decompose archimedean classes of HahnSeries [Merged by Bors] - feat(RingTheory): decompose archimedean classes of HahnSeries Aug 27, 2025
@mathlib-bors mathlib-bors bot closed this Aug 27, 2025
FormulaRabbit81 pushed a commit to YaelDillies/mathlib4 that referenced this pull request Aug 30, 2025
…over-community#25970)

In preparation for leanprover-community#25140, this connects archimedean class and HahnSeries

Co-authored-by: Yaël Dillies <yael.dillies@gmail.com>
@wwylele wwylele deleted the wwylele-hahn-dictionary branch September 2, 2025 01:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

delegated This pull request has been delegated to the PR author (or occasionally another non-maintainer). large-import Automatically added label for PRs with a significant increase in transitive imports t-ring-theory Ring theory

Projects

None yet

Development

Successfully merging this pull request may close these issues.

9 participants