Skip to content

Commit

Permalink
Avoid conflict with macro minor
Browse files Browse the repository at this point in the history
  • Loading branch information
gmou3 authored and Matthias Koeppe committed May 20, 2024
1 parent ffbbea9 commit 64cef31
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 64cef31

Please sign in to comment.