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

Use C99 also on sympy 1.7

parent fc0670eb
No related merge requests found
This commit is part of merge request !191. Comments created here will be created in the context of that merge request.
......@@ -18,7 +18,7 @@ from pystencils.integer_functions import (
int_div, int_power_of_2, modulo_ceil)
try:
from sympy.printing.c import C11CodePrinter as CCodePrinter # for sympy versions > 1.6
from sympy.printing.c import C99CodePrinter as CCodePrinter # for sympy versions > 1.6
except ImportError:
try:
from sympy.printing.ccode import C99CodePrinter as CCodePrinter
......
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