Checks if the inverse of the given normalization is working.
(norm_instance, vals)
| 804 | |
| 805 | |
| 806 | def _inverse_tester(norm_instance, vals): |
| 807 | """ |
| 808 | Checks if the inverse of the given normalization is working. |
| 809 | """ |
| 810 | assert_array_almost_equal(norm_instance.inverse(norm_instance(vals)), vals) |
| 811 | |
| 812 | |
| 813 | def _scalar_tester(norm_instance, vals): |
no test coverage detected
searching dependent graphs…