We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3336ac8 commit 6fd4a5cCopy full SHA for 6fd4a5c
src/sage/combinat/cluster_algebra_quiver/quiver_mutation_type.py
@@ -23,13 +23,15 @@
23
from copy import copy
24
from sage.structure.unique_representation import UniqueRepresentation
25
from sage.misc.cachefunc import cached_method
26
+from sage.misc.lazy_import import lazy_import
27
from sage.rings.integer_ring import ZZ
28
from sage.rings.infinity import infinity
29
from sage.graphs.digraph import DiGraph
30
from sage.graphs.graph import Graph
31
from sage.arith.misc import binomial, euler_phi
32
from sage.misc.misc_c import prod
-from sage.matrix.constructor import matrix
33
+
34
+lazy_import('sage.matrix.constructor', 'matrix')
35
36
37
class QuiverMutationTypeFactory(SageObject):
0 commit comments