Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 2 additions & 3 deletions src/sage/algebras/fusion_rings/all.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Fusion Rings
"""
# ****************************************************************************
# Copyright (C) 2022 Guillermo Aboumrad <gh_willieab>
# Copyright (C) 2023 Guillermo Aboumrad <gh_willieab>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
Expand All @@ -13,5 +13,4 @@

from sage.misc.lazy_import import lazy_import

lazy_import('sage.algebras.fusion_rings.fusion_ring', ['FusionRing'])
lazy_import('sage.algebras.fusion_rings.fusion_double', ['FusionDouble'])
lazy_import('sage.algebras.fusion_rings.generic_fusion_ring', ['FusionRing'])
2 changes: 1 addition & 1 deletion src/sage/algebras/fusion_rings/f_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -1865,7 +1865,7 @@ def attempt_number_field_computation(self):
undertake a :func:`NumberField` computation.
"""
ct = self._FR.cartan_type()
k = self._FR._k
k = self._FR.fusion_level()
# Don't try when k is large and odd for SU(2)_k
if ct.letter == 'A':
if ct.n == 1 and k >= 9 and k % 2:
Expand Down
Loading