r"""Return the hypergraph incidence matrix in the specified hyperedge group. Args: ``group_name`` (``str``): The name of the specified hyperedge group.
(self, group_name: str)
| 554 | @property |
| 555 | @abc.abstractmethod |
| 556 | def H_of_group(self, group_name: str) -> torch.Tensor: |
| 557 | r"""Return the hypergraph incidence matrix in the specified hyperedge group. |
| 558 | |
| 559 | Args: |
| 560 | ``group_name`` (``str``): The name of the specified hyperedge group. |
| 561 | """ |
| 562 | |
| 563 | @property |
| 564 | def H_v2e(self) -> torch.Tensor: |
no outgoing calls