r"""Return the neighbor hyperedge list of the specified vertex. Args: ``v_idx`` (``int``): The index of the vertex.
(self, v_idx: int)
| 547 | return self.D_e_of_group(group_name)._values().cpu().view(-1).numpy().tolist() |
| 548 | |
| 549 | def nbr_e(self, v_idx: int) -> List[int]: |
| 550 | r"""Return the neighbor hyperedge list of the specified vertex. |
| 551 | |
| 552 | Args: |
| 553 | ``v_idx`` (``int``): The index of the vertex. |
| 554 | """ |
| 555 | return self.N_e(v_idx).cpu().numpy().tolist() |
| 556 | |
| 557 | def nbr_e_of_group(self, v_idx: int, group_name: str) -> List[int]: |
| 558 | r"""Return the neighbor hyperedge list of the specified vertex of the specified hyperedge group. |