| 114 | |
| 115 | |
| 116 | class InvB(Inv): |
| 117 | |
| 118 | def __init__(self, keys): |
| 119 | super().__init__(keys) |
| 120 | self.fwd_fn = lambda x: x + 100 |
| 121 | self.inv_fn = lambda x: x - 100 |
| 122 | |
| 123 | |
| 124 | TESTS = [((X(), Y(), X()), (1, 2, 1), (0.25, 0.5, 0.25))] |
no outgoing calls
no test coverage detected
searching dependent graphs…