Skip to content
Snippets Groups Projects

Distribute FunctionSymbol over Object Arrays

Merged Alexandru Fikl requested to merge distribute-function-symbol into master
All threads resolved!
2 files
+ 41
1
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -362,6 +362,16 @@ class FunctionSymbol(ExpressionBase, VariableBase):
:class:`~pymbolic.primitives.Call`.
"""
def __call__(self, expr):
from pytools.obj_array import is_obj_array
if is_obj_array(expr):
from pytools.obj_array import with_object_array_or_scalar
return with_object_array_or_scalar(
super(FunctionSymbol, self).__call__, expr)
return super(FunctionSymbol, self).__call__(expr)
mapper_method = "map_function_symbol"
Loading