Skip to content

Commit

Permalink
Merge pull request #39 from gmou3/macos_minor_fix
Browse files Browse the repository at this point in the history
Avoid conflict with macro `minor`
  • Loading branch information
mkoeppe authored May 13, 2024
2 parents 925a555 + 8473a51 commit bfa8bd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/matroids/graphic_matroid.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ cdef class GraphicMatroid(Matroid):
# take contractions and deletions with what we have so far
# then use method from abstract matroid class
conset, delset = sanitize_contractions_deletions(self, contractions, deletions)
M = self.minor(contractions=conset, deletions=delset)
M = self._minor(contractions=conset, deletions=delset)
should_be_true, elements = Matroid._has_minor(M, N, certificate=True)

# elements is a tuple (contractions, deletions, dict)
Expand Down

0 comments on commit bfa8bd9

Please sign in to comment.