diff --git a/python/maximum_weight_matching.py b/python/max_weight_matching.py similarity index 99% rename from python/maximum_weight_matching.py rename to python/max_weight_matching.py index bc5199f..2591169 100644 --- a/python/maximum_weight_matching.py +++ b/python/max_weight_matching.py @@ -57,9 +57,6 @@ def maximum_weight_matching( if not edges: return [] - print() - print("---") - # Initialize graph representation. graph = _GraphInfo(edges)