r"""Return all hyperedges and weights in the specified hyperedge group. Args: ``group_name`` (``str``): The name of the specified hyperedge group.
(self, group_name: str)
| 469 | |
| 470 | @abc.abstractmethod |
| 471 | def e_of_group(self, group_name: str) -> Tuple[List[List[int]], List[float]]: |
| 472 | r"""Return all hyperedges and weights in the specified hyperedge group. |
| 473 | |
| 474 | Args: |
| 475 | ``group_name`` (``str``): The name of the specified hyperedge group. |
| 476 | """ |
| 477 | |
| 478 | @property |
| 479 | def num_v(self) -> int: |
no outgoing calls