MCPcopy
hub / github.com/numpy/numpy / assert_array_less

Function assert_array_less

numpy/ma/testutils.py:275–282  ·  view source on GitHub ↗

Checks that x is smaller than y elementwise.

(x, y, err_msg='', verbose=True)

Source from the content-addressed store, hash-verified

273
274
275def assert_array_less(x, y, err_msg='', verbose=True):
276 """
277 Checks that x is smaller than y elementwise.
278
279 """
280 assert_array_compare(operator.__lt__, x, y,
281 err_msg=err_msg, verbose=verbose,
282 header='Arrays are not less-ordered')
283
284
285def assert_mask_equal(m1, m2, err_msg=''):

Callers

nothing calls this directly

Calls 1

assert_array_compareFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…