本文整理汇总了Python中sage.rings.all.ZZ.quo方法的典型用法代码示例。如果您正苦于以下问题:Python ZZ.quo方法的具体用法?Python ZZ.quo怎么用?Python ZZ.quo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sage.rings.all.ZZ
的用法示例。
在下文中一共展示了ZZ.quo方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __classcall_private__
# 需要导入模块: from sage.rings.all import ZZ [as 别名]
# 或者: from sage.rings.all.ZZ import quo [as 别名]
def __classcall_private__(cls, n=1, R=0):
"""
Normalize input to ensure a unique representation.
EXAMPLES::
sage: H1 = groups.matrix.Heisenberg(n=2, R=5)
sage: H2 = groups.matrix.Heisenberg(n=2, R=ZZ.quo(5))
sage: H1 is H2
True
sage: H1 = groups.matrix.Heisenberg(n=2)
sage: H2 = groups.matrix.Heisenberg(n=2, R=ZZ)
sage: H1 is H2
True
"""
if n not in ZZ or n <= 0:
raise TypeError("degree of Heisenberg group must be a positive integer")
if R in ZZ:
if R == 0:
R = ZZ
elif R > 1:
R = ZZ.quo(R)
else:
raise ValueError("R must be a positive integer")
elif R is not ZZ and R not in Rings().Finite():
raise NotImplementedError("R must be a finite ring or ZZ")
return super(HeisenbergGroup, cls).__classcall__(cls, n, R)