Skip to content
Snippets Groups Projects
Commit 41cd5271 authored by Stephan Seitz's avatar Stephan Seitz
Browse files

Make work on SymPy 1.7: sympy.printing.ccode -> sympy.printing.cxx

There's also sympy.printing.c but we are always compiling as C++.
parent 0d6780b8
Branches
Tags
1 merge request!170Make work on SymPy 1.7: sympy.printing.ccode -> sympy.printing.cxx
......@@ -20,7 +20,10 @@ from pystencils.integer_functions import (
try:
from sympy.printing.ccode import C99CodePrinter as CCodePrinter
except ImportError:
from sympy.printing.ccode import CCodePrinter # for sympy versions < 1.1
try:
from sympy.printing.ccode import CCodePrinter # for sympy versions < 1.1
except ImportError:
from sympy.printing.cxx import CXX11CodePrinter as CCodePrinter # for sympy versions > 1.6
__all__ = ['generate_c', 'CustomCodeNode', 'PrintNode', 'get_headers', 'CustomSympyPrinter']
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment