MCPcopy Create free account
hub / github.com/easy-graph/Easy-Graph / e2v_dst

Method e2v_dst

easygraph/classes/hypergraph.py:710–713  ·  view source on GitHub ↗

r"""Return the destination vertex index vector :math:`\overrightarrow{e2v}_{dst}` of the connections (hyperedges point to vertices) in the hypergraph.

(self)

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 1

cloneMethod · 0.45

Tested by

no test coverage detected