MCPcopy Index your code
hub / github.com/numpy/numpy / test_not_equal

Function test_not_equal

numpy/polynomial/tests/test_classes.py:205–213  ·  view source on GitHub ↗
(Poly)

Source from the content-addressed store, hash-verified

203
204
205def test_not_equal(Poly):
206 p1 = Poly([1, 2, 3], domain=[0, 1], window=[2, 3])
207 p2 = Poly([1, 1, 1], domain=[0, 1], window=[2, 3])
208 p3 = Poly([1, 2, 3], domain=[1, 2], window=[2, 3])
209 p4 = Poly([1, 2, 3], domain=[0, 1], window=[1, 2])
210 assert_(not p1 != p1)
211 assert_(p1 != p2)
212 assert_(p1 != p3)
213 assert_(p1 != p4)
214
215
216def test_add(Poly):

Callers

nothing calls this directly

Calls 2

assert_Function · 0.90
PolyFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…