Traktor/myenv/Lib/site-packages/sympy/codegen/tests/test_cxxnodes.py

15 lines
366 B
Python
Raw Normal View History

2024-05-23 01:57:24 +02:00
from sympy.core.symbol import Symbol
from sympy.codegen.ast import Type
from sympy.codegen.cxxnodes import using
from sympy.printing.codeprinter import cxxcode
x = Symbol('x')
def test_using():
v = Type('std::vector')
u1 = using(v)
assert cxxcode(u1) == 'using std::vector'
u2 = using(v, 'vec')
assert cxxcode(u2) == 'using vec = std::vector'