(self, name: str = '')
| 527 | """Abstract class representing the coefficient matrix (table) A.""" |
| 528 | |
| 529 | def __init__(self, name: str = ''): |
| 530 | super().__init__(name) |
| 531 | self.v2obj = {} |
| 532 | |
| 533 | def get_name(self, objs: list[Any]) -> list[str]: |
| 534 | self.v2obj.update({o.name: o for o in objs}) |