| 4 | from functools import reduce |
| 5 | |
| 6 | class Function: |
| 7 | def forward(self, *args): |
| 8 | raise NotImplementedError() |
| 9 | |
| 10 | def backward(self, *args): |
| 11 | raise NotImplementedError() |
| 12 | |
| 13 | class Mapping(Function): |
| 14 | def __init__(self, functions: Optional[List[Function]] = None) -> None: |
nothing calls this directly
no outgoing calls
no test coverage detected