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.
14 lines
366 B
14 lines
366 B
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'
|