reffactored and recurrent implementation

This commit is contained in:
2016-01-22 13:21:34 +01:00
parent e61e616227
commit d424d87535
65 changed files with 12102 additions and 2361 deletions

View File

@@ -4,9 +4,9 @@ CXXFLAGS+= -std=c++14
#-fprefetch-loop-arrays
CXXFLAGS+= -pg -fPIC
CXXFLAGS+= -g
CXXFLAGS+= -fPIC -pthread
CXXFLAGS+= -fPIC -pthread
#CXXFLAGS+= -DUSE_SSE2
OPTIMALIZATION = -O3 -march=native -mtune=native
OPTIMALIZATION = -O3 -march=native -mtune=native
%.o : %.cpp %.h
$(CXX) $(CXXFLAGS) $(OPTIMALIZATION) -c $< -o $@