| 106 | |
| 107 | |
| 108 | class InvA(Inv): |
| 109 | |
| 110 | def __init__(self, keys): |
| 111 | super().__init__(keys) |
| 112 | self.fwd_fn = lambda x: x + 1 |
| 113 | self.inv_fn = lambda x: x - 1 |
| 114 | |
| 115 | |
| 116 | class InvB(Inv): |
no outgoing calls
no test coverage detected
searching dependent graphs…