(self)
| 35 | pass |
| 36 | |
| 37 | def test_plot_1d(self): |
| 38 | self._test_plot(CenteredGrid(lambda x: math.sin(x.vector[0]), input=100, bounds=Box(input=2 * math.pi))) |
| 39 | |
| 40 | def test_plot_multi_1d(self): |
| 41 | self._test_plot(CenteredGrid(lambda x: math.stack({'sin': math.sin(x), 'cos': math.cos(x)}, channel('curves')), x=100, bounds=Box(x=2 * math.pi))) |
nothing calls this directly
no test coverage detected