1
0

initial commit

This commit is contained in:
Tibeuleu
2023-12-31 15:42:33 +01:00
commit 9882d0c0d1
484 changed files with 28426 additions and 0 deletions

25
makefile Executable file
View File

@@ -0,0 +1,25 @@
CC=g++
CFLAGS=-c -Wall --pedantic
LDFLAGS=-Wall --pedantic
SOURCES=data.cpp costfunctions.cpp models.cpp methods.cpp TravelingSalesPerson.cpp
OBJECTS=data.o costfunctions.o models.o methods.o TravelingSalesPerson.o
EXECUTABLE=projet
all: $(EXECUTABLE)
$(EXECUTABLE): $(OBJECTS)
$(CC) $(LDFLAGS) $^ -o $@
clean:
$(RM) *.o $(EXECUTABLE) *.temp
depend:
makedepend -Y $(SOURCES)
# DO NOT DELETE
data.o: data.h
costfunctions.o: costfunctions.h
models.o: models.h data.h costfunctions.h
methods.o: models.h data.h costfunctions.h methods.h
methods.o: SimulatedAnnealingParameters.h
test_methods.o: models.h data.h costfunctions.h methods.h