From 8f8e8f2fb669aa421c245eada82095fb3fdcadc9 Mon Sep 17 00:00:00 2001 From: Francois Fleuret Date: Thu, 21 Nov 2013 19:18:24 +0100 Subject: [PATCH] kmean -> kmeans. --- Makefile | 16 ++++++++-------- clueless-kmean.cc => clueless-kmeans.cc | 0 2 files changed, 8 insertions(+), 8 deletions(-) rename clueless-kmean.cc => clueless-kmeans.cc (100%) diff --git a/Makefile b/Makefile index 5ed1536..1cd78bd 100644 --- a/Makefile +++ b/Makefile @@ -1,17 +1,17 @@ -# clueless-kmean is a variant of k-mean which enforces balanced +# clueless-kmeans is a variant of k-mean which enforces balanced # distribution of classes in every cluster # # Copyright (c) 2013 Idiap Research Institute, http://www.idiap.ch/ # Written by Francois Fleuret # -# This file is part of clueless-kmean. +# This file is part of clueless-kmeans. # -# clueless-kmean is free software: you can redistribute it and/or +# clueless-kmeans is free software: you can redistribute it and/or # modify it under the terms of the GNU General Public License # version 3 as published by the Free Software Foundation. # -# clueless-kmean is distributed in the hope that it will be useful, +# clueless-kmeans is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. @@ -33,19 +33,19 @@ endif CXXFLAGS = -Wall $(OPTIMIZE_FLAG) $(PROFILE_FLAG) $(CXXGLPK) -all: clueless-kmean +all: clueless-kmeans -clueless-kmean: \ +clueless-kmeans: \ misc.o \ sample_set.o \ clusterer.o \ - clueless-kmean.o + clueless-kmeans.o $(CXX) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) Makefile.depend: *.h *.cc Makefile $(CC) -M *.cc > Makefile.depend clean: - rm -f *.o Makefile.depend clueless-kmean + rm -f *.o Makefile.depend clueless-kmeans -include Makefile.depend diff --git a/clueless-kmean.cc b/clueless-kmeans.cc similarity index 100% rename from clueless-kmean.cc rename to clueless-kmeans.cc -- 2.20.1