1 | initial version |
If you just want a perfect matching, you can use:
sage: p = G.matching()
If you want to iterate over all parfect matching, you can use (but it might be very slow as it is a brute force approach):
sage: for p in G.perfect_matchings():
....: blah