(x, y)
| 420 | class _LogitHelper: |
| 421 | @staticmethod |
| 422 | def isclose(x, y): |
| 423 | return (np.isclose(-np.log(1/x-1), -np.log(1/y-1)) |
| 424 | if 0 < x < 1 and 0 < y < 1 else False) |
| 425 | |
| 426 | @staticmethod |
| 427 | def assert_almost_equal(x, y): |
no outgoing calls
no test coverage detected