Skip to content

Commit

Permalink
updated the return statement of is_brace()
Browse files Browse the repository at this point in the history
  • Loading branch information
janmenjayap committed Dec 21, 2024
1 parent cb4d3d1 commit d670168
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/graphs/matching_covered_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -2693,7 +2693,7 @@ def dfs(v, visited, neighbor_iterator):
for u, v, w in self.edge_iterator()
if (u in X) ^ (v in X)]

return False, C, X
return (False, C, set(X))

return (True, None, None) if coNP_certificate else True

Expand Down

0 comments on commit d670168

Please sign in to comment.