Comparison for inequality.
(self, other)
| 814 | return super().__eq__(other) and self._cpp_object == other._cpp_object |
| 815 | |
| 816 | def __ne__(self, other): |
| 817 | """Comparison for inequality.""" |
| 818 | return super().__ne__(other) or self._cpp_object != other._cpp_object |
| 819 | |
| 820 | def ufl_function_space(self) -> ufl.FunctionSpace: |
| 821 | """UFL function space.""" |
nothing calls this directly
no outgoing calls
no test coverage detected