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

Extend the method get_knotinfo of the Link class to cover non-prime knots #38254

Merged
merged 22 commits into from
Sep 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
4da232d
get_knotinfo_non_prime initial
soehms Jun 21, 2024
173f9e5
38254: linter and doctest fixes
soehms Jun 22, 2024
ed4f237
Merge branch 'sagemath:develop' into get_knotinfo_non_prime
soehms Jun 22, 2024
803c1e4
38254: fix links in documentation
soehms Jun 24, 2024
2e1e10d
38254: fix wrong doctest tag
soehms Jun 25, 2024
29849eb
38254: one more (unrelated) wrong doctest tag
soehms Jun 26, 2024
a936a13
38254: have is_recoverable check all symmetry mutants
soehms Jun 27, 2024
0334dbc
38254: fix inconsist output
soehms Jun 28, 2024
07c67e5
Merge branch 'sagemath:develop' into get_knotinfo_non_prime
soehms Jun 29, 2024
530249a
38254: Have _check_elements use pd_code, too
soehms Jul 3, 2024
ab42852
Merge branch 'sagemath:develop' into get_knotinfo_non_prime
soehms Jul 5, 2024
ce1176e
Merge branch 'sagemath:develop' into get_knotinfo_non_prime
soehms Jul 14, 2024
a2cfdeb
Update src/sage/knots/free_knotinfo_monoid.py
soehms Jul 18, 2024
7cf4dca
Merge branch 'sagemath:develop' into get_knotinfo_non_prime
soehms Jul 22, 2024
4266390
Merge branch 'develop' into get_knotinfo_non_prime
soehms Jul 25, 2024
631a112
38254: local search_composition changed to a method _search_composition
soehms Jul 25, 2024
0f03b9e
38254: use FiniteEnumeratedSet instead of Set
soehms Jul 25, 2024
0b0248a
38254: remove dict.keys()
soehms Jul 28, 2024
8759d4c
Merge branch 'develop' into get_knotinfo_non_prime
soehms Sep 13, 2024
daa816c
Merge branch 'sagemath:develop' into get_knotinfo_non_prime
soehms Sep 15, 2024
577045b
Merge branch 'sagemath:develop' into get_knotinfo_non_prime
soehms Sep 25, 2024
cfe19f9
38254: corrections according to review
soehms Sep 25, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/doc/en/reference/knots/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ Knot Theory
sage/knots/knot
sage/knots/link
sage/knots/knotinfo
sage/knots/free_knotinfo_monoid

.. include:: ../footer.txt
2 changes: 1 addition & 1 deletion src/sage/databases/knotinfo_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -793,7 +793,7 @@ def _test_database(self, **options):

sage: from sage.databases.knotinfo_db import KnotInfoDataBase
sage: ki_db = KnotInfoDataBase()
sage: TestSuite(ki_db).run() # long time indirect doctest
sage: TestSuite(ki_db).run() # optional - database_knotinfo, long time, indirect doctest
"""
from sage.knots.knotinfo import KnotInfo
from sage.misc.misc import some_tuples
Expand Down
1 change: 0 additions & 1 deletion src/sage/knots/all.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from sage.misc.lazy_import import lazy_import
from sage.features.databases import DatabaseKnotInfo

lazy_import('sage.knots.knot', ['Knot', 'Knots'])
lazy_import('sage.knots.link', 'Link')
Expand Down
Loading
Loading