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 4a794d39aebd53185b0b8ca1b63281e9cdc70561..36d16156e3c45a249d283374d595b7ac27e87fa9 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 49e73ec46cdb52392376248aaea9382345bcc3c3..a3d8b11c32e97344c2b94e49d23f66b0709a49d7 100644 --- a/config.mk +++ b/config.mk @@ -1 +1 @@ -algorithms=greedy maxcut_naive fix_naive +algorithms=greedy maxcut fix_naive