m2m模型翻译
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

10 lines
303 B

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