本文整理汇总了Python中sage.combinat.root_system.cartan_type.CartanType.coxeter_diagram方法的典型用法代码示例。如果您正苦于以下问题:Python CartanType.coxeter_diagram方法的具体用法?Python CartanType.coxeter_diagram怎么用?Python CartanType.coxeter_diagram使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sage.combinat.root_system.cartan_type.CartanType
的用法示例。
在下文中一共展示了CartanType.coxeter_diagram方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: cartan_type
# 需要导入模块: from sage.combinat.root_system.cartan_type import CartanType [as 别名]
# 或者: from sage.combinat.root_system.cartan_type.CartanType import coxeter_diagram [as 别名]
def cartan_type(self):
r"""
Return the Cartan type of ``self``.
EXAMPLES::
sage: W = ReflectionGroup(['A',3]) # optional - gap3
sage: W.cartan_type() # optional - gap3
['A', 3]
sage: W = ReflectionGroup(['A',3], ['B',3]) # optional - gap3
sage: W.cartan_type() # optional - gap3
A3xB3 relabelled by {1: 3, 2: 2, 3: 1}
"""
if len(self._type) == 1:
ct = self._type[0]
C = CartanType([ct['series'], ct['rank']])
CG = C.coxeter_diagram()
G = self.coxeter_diagram()
return C.relabel(CG.is_isomorphic(G, edge_labels=True, certificate=True)[1])
else:
return CartanType([W.cartan_type() for W in self.irreducible_components()])