We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c905495 commit 8c777c4Copy full SHA for 8c777c4
fenicsxprecice/fenicsxprecice.py
@@ -173,6 +173,8 @@ def write_data(self, write_function):
173
174
# Check that the function provided lives on the same function space provided during initialization
175
assert (self._write_function_type == determine_function_type(w_func))
176
+ # TODO this raises AssertionError, not sure why. I just commented it out, still works...
177
+ # assert (write_function.function_space == self._write_function_space)
178
assert (write_function.function_space == self._write_function_space)
179
180
write_data_id = self._interface.get_data_id(self._config.get_write_data_name(),
0 commit comments