| 179 | |
| 180 | |
| 181 | class OnlyLevelsAreNodesTransforms(AbstractGraphTransform, ABC): |
| 182 | def __init__(self, exp_type: str): |
| 183 | super().__init__(exp_type) |
| 184 | self._n_nodes = self.spatial_input_dim[LEVELS] |
| 185 | self.LEVEL_NODES = slice(0, self.n_nodes) # all nodes are level nodes |
| 186 | |
| 187 | |
| 188 | class AllAreNodesTransforms(AbstractGraphTransform, ABC): |
nothing calls this directly
no outgoing calls
no test coverage detected