r""" True if two arrays have the same shape and elements, False otherwise. This function follows the api from :any:`numpy.array_equal`. See: https://numpy.org/doc/stable/reference/generated/numpy.array_equal.html
(self, a, b)
| 1008 | raise NotImplementedError() |
| 1009 | |
| 1010 | def array_equal(self, a, b): |
| 1011 | r""" |
| 1012 | True if two arrays have the same shape and elements, False otherwise. |
| 1013 | |
| 1014 | This function follows the api from :any:`numpy.array_equal`. |
| 1015 | |
| 1016 | See: https://numpy.org/doc/stable/reference/generated/numpy.array_equal.html |
| 1017 | """ |
| 1018 | raise NotImplementedError() |
| 1019 | |
| 1020 | def is_floating_point(self, a): |
| 1021 | r""" |
no outgoing calls