Skip to content
Snippets Groups Projects
Commit 98a0c8b9 authored by Matthias Diener's avatar Matthias Diener
Browse files

add comment

parent 4a6d95ea
No related branches found
No related tags found
Loading
...@@ -142,6 +142,7 @@ class _PytatoFakeNumpyNamespace(BaseFakeNumpyNamespace): ...@@ -142,6 +142,7 @@ class _PytatoFakeNumpyNamespace(BaseFakeNumpyNamespace):
return obj_or_dof_array_vectorize_n_args(pt.minimum, x, y) return obj_or_dof_array_vectorize_n_args(pt.minimum, x, y)
def where(self, criterion, then, else_): def where(self, criterion, then, else_):
# FIXME: where() does not work
import pytato as pt import pytato as pt
from meshmode.dof_array import obj_or_dof_array_vectorize_n_args from meshmode.dof_array import obj_or_dof_array_vectorize_n_args
return obj_or_dof_array_vectorize_n_args(pt.where, criterion, then, else_) return obj_or_dof_array_vectorize_n_args(pt.where, criterion, then, else_)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment