Skip to content
Snippets Groups Projects
Commit 3daaa5e5 authored by Richard Angersbach's avatar Richard Angersbach
Browse files

Fix typecheck

parent 96b5cbf2
1 merge request!438Reduction Support
Pipeline #72914 failed with stages
in 2 minutes and 42 seconds
......@@ -2,6 +2,7 @@ from .astnodes import ConditionalFieldAccess
from .typed_sympy import TypedSymbol, CastFunc
from .pointers import mem_acc
from .reduction import reduced_assign
from .binop_mapping import binop_str_to_expr
from .math import (
prod,
......@@ -35,6 +36,7 @@ from .math import (
__all__ = [
"ConditionalFieldAccess",
"reduced_assign",
"binop_str_to_expr",
"TypedSymbol",
"CastFunc",
"mem_acc",
......
from operator import truediv, mul, sub, add
from src.pystencils.backend.ast.expressions import PsCall, PsExpression
from src.pystencils.backend.exceptions import FreezeError
from src.pystencils.backend.functions import MathFunctions, PsMathFunction
from ..backend.ast.expressions import PsCall, PsExpression
from ..backend.exceptions import FreezeError
from ..backend.functions import MathFunctions, PsMathFunction
_available_operator_interface: set[str] = {'+', '-', '*', '/'}
......
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