(self)
| 542 | return dist_mats |
| 543 | |
| 544 | def _groups(self) -> list[ClientGroup]: |
| 545 | groups = self.parser.mutually_exclusive_groups() |
| 546 | return [ClientGroup(group) for group in groups] |
| 547 | |
| 548 | def _allowed2profile(self) -> dict[tuple[int, ...], int]: |
| 549 | allowed_clients2profile_idx = {} |
no test coverage detected