Implementacja tabu search dla TSP
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

1234567891011121314151617181920
  1. CXXFLAGS = -O3 -Wall -std=c++11
  2. detected_OS := $(shell uname)
  3. ifeq ($(detected_OS),Darwin)
  4. CXXFLAGS += -stdlib=libc++
  5. endif
  6. OBJS = pea2plus.o ArrayGraph.o Graph.o ListGraph.o Stopwatch.o
  7. LIBS = -pthread
  8. TARGET = pea2plus
  9. $(TARGET): $(OBJS)
  10. $(CXX) -o $(TARGET) $(OBJS) $(LIBS)
  11. all: $(TARGET)
  12. clean:
  13. rm -f $(OBJS) $(TARGET)