(self)
| 2649 | piecewise, [0, 0], [[False, True]], [1, 2, 3]) |
| 2650 | |
| 2651 | def test_two_conditions(self): |
| 2652 | x = piecewise([1, 2], [[True, False], [False, True]], [3, 4]) |
| 2653 | assert_array_equal(x, [3, 4]) |
| 2654 | |
| 2655 | def test_scalar_domains_three_conditions(self): |
| 2656 | x = piecewise(3, [True, False, False], [4, 2, 0]) |
nothing calls this directly
no test coverage detected