From 7a793b62dba89a3fa7c1baf4760ea6eb141ba419 Mon Sep 17 00:00:00 2001
From: Jiri Kalvoda <jirikalvoda@kam.mff.cuni.cz>
Date: Sun, 5 Mar 2023 12:41:23 +0100
Subject: [PATCH] =?UTF-8?q?P=C5=99esun=20algo/maxcut=5Fnaive.cpp=20->=20al?=
 =?UTF-8?q?go/maxcut.cpp?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 algo/{maxcut_naive.cpp => maxcut.cpp} | 0
 build.mk                              | 2 +-
 config.mk                             | 2 +-
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename algo/{maxcut_naive.cpp => maxcut.cpp} (100%)

diff --git a/algo/maxcut_naive.cpp b/algo/maxcut.cpp
similarity index 100%
rename from algo/maxcut_naive.cpp
rename to algo/maxcut.cpp
diff --git a/build.mk b/build.mk
index 4a794d39a..36d16156e 100644
--- a/build.mk
+++ b/build.mk
@@ -49,6 +49,6 @@ endef
 
 
 $(eval $(call standard_algo,greedy))
-$(eval $(call standard_algo,maxcut_naive))
+$(eval $(call standard_algo,maxcut))
 
 $(eval $(call standard_pipe,fix_naive))
diff --git a/config.mk b/config.mk
index 49e73ec46..a3d8b11c3 100644
--- a/config.mk
+++ b/config.mk
@@ -1 +1 @@
-algorithms=greedy maxcut_naive fix_naive
+algorithms=greedy maxcut fix_naive
-- 
GitLab