r"""Return the vertex weights of the hypergraph.
(self)
| 448 | |
| 449 | @property |
| 450 | def v_weight(self) -> List[float]: |
| 451 | r"""Return the vertex weights of the hypergraph.""" |
| 452 | if self._v_weight is None: |
| 453 | self._v_weight = [1.0] * self.num_v |
| 454 | return self._v_weight |
| 455 | |
| 456 | @v_weight.setter |
| 457 | def v_weight(self, v_weight: List[float]): |
nothing calls this directly
no test coverage detected