diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2022-10-10 15:57:46 +0200 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2022-10-10 15:57:46 +0200 |
commit | fcd9bcf98790616ca6367de6ecdb75809b56a040 (patch) | |
tree | 46e750eccdeda5f1be4829d05e8fa93daf188b49 /Makefile | |
parent | b2451666ef1aec1aadc7bb54458f04542b4b7ccb (diff) | |
download | code-fcd9bcf98790616ca6367de6ecdb75809b56a040.tar.gz code-fcd9bcf98790616ca6367de6ecdb75809b56a040.tar.bz2 code-fcd9bcf98790616ca6367de6ecdb75809b56a040.zip |
Finished implementing the Propp algorithm for edge probabilities.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ BLOSSOM_DIRS := $(BLOSSOM_DIR) $(BLOSSOM_DIR)/MinCost $(BLOSSOM_DIR)/GEOM BLOSSOM_SOURCES := $(filter-out $(BLOSSOM_DIR)/example.cpp, $(foreach dir, $(BLOSSOM_DIRS), $(wildcard $(dir)/*.cpp)))
BLOSSOM_OBJS := $(patsubst %.cpp, %.o, $(BLOSSOM_SOURCES))
-CFLAGS := -flto -fopenmp -O3 -Os -march=native -D_NDEBUG -DPERFECT_MATCHING_DOUBLE
+CFLAGS := -flto -fopenmp -O3 -Os -march=native -mtune=native -D_NDEBUG -DPERFECT_MATCHING_DOUBLE
CXX = clang++
LD = ld.lld
LIBS := -lrt
|