You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CHG - degree_matrix, line 1125: incidence_matrix will never be 0,0 shape due to compute_set_incidence
CHG - laplacian_matrix, line 1163: adjacency_matrix will never be 0,0 shape due to compute_set_incidence
CHG/CCC - _remove_hyperedge the case -> isinstance(hyperedge, Hashable) and not isinstance(hyperedge, Iterable) is not valid as previous check if hyperedge not in self.cells filters out any object not already present in self.cells and self.cells can only contain hashable and iterable elements like frozenset, etc
CHGView - __contains__ : elif isinstance(hyperedge_elements, HyperEdge) case is unreachable as hyperedge_elements is unpacked earlier if it is HyperEdge object.
CCC - _CCC_condition method is not well defined, CCC._node_membership is an empty set for a defined CCC.
What/Where?
degree_matrix
, line 1125: incidence_matrix will never be 0,0 shape due to compute_set_incidencelaplacian_matrix
, line 1163: adjacency_matrix will never be 0,0 shape due to compute_set_incidence_remove_hyperedge
the case ->isinstance(hyperedge, Hashable) and not isinstance(hyperedge, Iterable)
is not valid as previous checkif hyperedge not in self.cells
filters out any object not already present in self.cells and self.cells can only contain hashable and iterable elements like frozenset, etc__contains__
:elif isinstance(hyperedge_elements, HyperEdge)
case is unreachable as hyperedge_elements is unpacked earlier if it is HyperEdge object._CCC_condition
method is not well defined,CCC._node_membership
is an empty set for a defined CCC.The text was updated successfully, but these errors were encountered: