From 3a347e8edb453f74130cf1d27cfc6e037f336be4 Mon Sep 17 00:00:00 2001 From: Joris van Rantwijk Date: Sun, 5 Feb 2023 20:51:15 +0100 Subject: [PATCH] Rename Python module to max_weight_matching --- python/{maximum_weight_matching.py => max_weight_matching.py} | 3 --- 1 file changed, 3 deletions(-) rename python/{maximum_weight_matching.py => max_weight_matching.py} (99%) 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)