team-10/env/Lib/site-packages/sympy/liealgebras/tests/test_cartan_matrix.py
2025-08-02 07:34:44 +02:00

10 lines
303 B
Python

from sympy.liealgebras.cartan_matrix import CartanMatrix
from sympy.matrices import Matrix
def test_CartanMatrix():
c = CartanMatrix("A3")
m = Matrix(3, 3, [2, -1, 0, -1, 2, -1, 0, -1, 2])
assert c == m
a = CartanMatrix(["G",2])
mt = Matrix(2, 2, [2, -1, -3, 2])
assert a == mt