Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improved Efficiency of mutually_orthogonal_latin_squares function #39483

Merged
merged 9 commits into from
Feb 28, 2025

Conversation

pyrusbrawler64
Copy link
Contributor

@pyrusbrawler64 pyrusbrawler64 commented Feb 9, 2025

Fixes #26107.

When n is a prime power the construction used in the mutually_orthogonal_latin_squares function of latin_squares.py made all n-1 possible Mutually Orthogonal Latin Squares (MOLS) no matter how many were requested. This caused the function to take much longer than required when n was large and the number of MOLS requested was small.

This was fixed by implementing a construction for prime powers n which only creates the number of MOLS requested by the user. A reference was added for this construction, and a doctest was added to verify it. Several more doctests were changed as the function now returns different MOLS when n is a prime power.

📝 Checklist

  • The title is concise and informative.
  • The description explains in detail what this PR is about.
  • I have linked a relevant issue or discussion.
  • I have created tests covering the changes.
  • I have updated the documentation and checked the documentation preview.

⌛ Dependencies

@pyrusbrawler64 pyrusbrawler64 changed the title 26107 mols Improved Efficiency of mutually_orthogonal_latin_squares method Feb 10, 2025
@pyrusbrawler64 pyrusbrawler64 changed the title Improved Efficiency of mutually_orthogonal_latin_squares method Improved Efficiency of mutually_orthogonal_latin_squares function Feb 10, 2025
@DaveWitteMorris
Copy link
Member

Looks good, thanks.

However, I think it would be good to add mention of the issue to your comment on line 386. I was thinking that you could add a new line something like "This fixes :issue:`26107`, which pointed out that the original method could be unacceptably slow in this case." Also, perhaps it would be good to add "for prime powers" at the end of the existing sentence.

I will set to positive review on Thursday if make ptestlong does not find any problems and nobody else has comments.

@DaveWitteMorris
Copy link
Member

make ptestlong had no failures that I would attribute to this PR.

Copy link

github-actions bot commented Feb 20, 2025

Documentation preview for this PR (built with commit 739b9cd; changes) is ready! 🎉
This preview will update shortly after each push to this PR.

@DaveWitteMorris
Copy link
Member

There is a typo in line 386: change "primw" to "prime". Everything else looks good.

@DaveWitteMorris
Copy link
Member

Thanks. I'll set to positive review when the CI approves.

@DaveWitteMorris
Copy link
Member

The CI failure is

sage -t src/sage/schemes/elliptic_curves/ell_rational_field.py  # 1 doctest failed

I am seeing this failure elsewhere, so it should not be attributed to this PR. Therefore, I consider the CI to be successful.

vbraun pushed a commit to vbraun/sage that referenced this pull request Feb 24, 2025
sagemathgh-39483: Improved Efficiency of mutually_orthogonal_latin_squares function
    
<!-- ^ Please provide a concise and informative title. -->
<!-- ^ Don't put issue numbers in the title, do this in the PR
description below. -->
<!-- ^ For example, instead of "Fixes sagemath#12345" use "Introduce new method
to calculate 1 + 2". -->
<!-- v Describe your changes below in detail. -->
<!-- v Why is this change required? What problem does it solve? -->
<!-- v If this PR resolves an open issue, please link to it here. For
example, "Fixes sagemath#12345". -->

Fixes sagemath#26107.

When n is a prime power the construction used in the
mutually_orthogonal_latin_squares function of latin_squares.py made all
n-1 possible Mutually Orthogonal Latin Squares (MOLS) no matter how many
were requested. This caused the function to take much longer than
required when n was large and the number of MOLS requested was small.

This was fixed by implementing a construction for prime powers n which
only creates the number of MOLS requested by the user. A reference was
added for this construction, and a doctest was added to verify it.
Several more doctests were changed as the function now returns different
MOLS when n is a prime power.

### 📝 Checklist

<!-- Put an `x` in all the boxes that apply. -->

- [X] The title is concise and informative.
- [X] The description explains in detail what this PR is about.
- [X] I have linked a relevant issue or discussion.
- [X] I have created tests covering the changes.
- [X] I have updated the documentation and checked the documentation
preview.

### ⌛ Dependencies

<!-- List all open PRs that this PR logically depends on. For example,
-->
<!-- - sagemath#12345: short description why this is a dependency -->
<!-- - sagemath#34567: ... -->
    
URL: sagemath#39483
Reported by: Caleb Van't Land
Reviewer(s):
@vbraun vbraun merged commit 635f7aa into sagemath:develop Feb 28, 2025
21 of 22 checks passed
@pyrusbrawler64 pyrusbrawler64 deleted the 26107_MOLS branch March 9, 2025 19:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

uneffective search for MOLS
3 participants