r"""Return the destination vertex index vector :math:`\overrightarrow{e2v}_{dst}` of the connections (hyperedges point to vertices) in the hypergraph.
(self)
| 708 | |
| 709 | @property |
| 710 | def e2v_dst(self) -> torch.Tensor: |
| 711 | r"""Return the destination vertex index vector :math:`\overrightarrow{e2v}_{dst}` of the connections (hyperedges point to vertices) in the hypergraph. |
| 712 | """ |
| 713 | return self.H._indices()[0].clone() |
| 714 | |
| 715 | def e2v_dst_of_group(self, group_name: str) -> torch.Tensor: |
| 716 | r"""Return the destination vertex index vector :math:`\overrightarrow{e2v}_{dst}` of the connections (hyperedges point to vertices) in the specified hyperedge group. |