r"""Return the destination hyperedge index vector :math:`\overrightarrow{v2e}_{dst}` of the connections (vertices point to hyperedges) in the hypergraph.
(self)
| 657 | |
| 658 | @property |
| 659 | def v2e_dst(self) -> torch.Tensor: |
| 660 | r"""Return the destination hyperedge index vector :math:`\overrightarrow{v2e}_{dst}` of the connections (vertices point to hyperedges) in the hypergraph. |
| 661 | """ |
| 662 | return self.H_T._indices()[0].clone() |
| 663 | |
| 664 | def v2e_dst_of_group(self, group_name: str) -> torch.Tensor: |
| 665 | r"""Return the destination hyperedge index vector :math:`\overrightarrow{v2e}_{dst}` of the connections (vertices point to hyperedges) in the specified hyperedge group. |