(Poly)
| 577 | |
| 578 | |
| 579 | def test_mapparms(Poly): |
| 580 | # check with defaults. Should be identity. |
| 581 | d = Poly.domain |
| 582 | w = Poly.window |
| 583 | p = Poly([1], domain=d, window=w) |
| 584 | assert_almost_equal([0, 1], p.mapparms()) |
| 585 | # |
| 586 | w = 2 * d + 1 |
| 587 | p = Poly([1], domain=d, window=w) |
| 588 | assert_almost_equal([1, 2], p.mapparms()) |
| 589 | |
| 590 | |
| 591 | def test_ufunc_override(Poly): |
nothing calls this directly
no test coverage detected
searching dependent graphs…