-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathGA.pro
More file actions
44 lines (41 loc) · 1.03 KB
/
GA.pro
File metadata and controls
44 lines (41 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
TEMPLATE = app
CONFIG += console c++11
CONFIG -= app_bundle
CONFIG -= qt
QMAKE_CXX = g++-5
SOURCES += main.cpp \
ttp/ttpinstance.cpp \
ttp/item.cpp \
ttp/city.cpp \
ttp/ttpindividual.cpp \
generic_ga/features.cpp \
ttp/ttpindividualfeatures.cpp \
ttp/ttpga.cpp \
ttp/ttpmutationmethods.cpp \
utils/individualrecorder.cpp \
ttp/ttpcrossovermethods.cpp
HEADERS += \
ttp/item.hpp \
ttp/ttpinstance.hpp \
ttp/city.hpp \
generic_ga/individual.hpp \
ttp/ttpindividual.hpp \
generic_ga/features.hpp \
ttp/ttpindividualfeatures.hpp \
generic_ga/problem.hpp \
generic_ga/evolutionaryoptimizer.hpp \
ttp/ttpga.hpp \
generic_ga/selectionmethods.hpp \
ttp/ttpmutationmethods.hpp \
utils/individualrecorder.hpp \
utils/geneticutils.hpp \
generic_ga/mutationmethods.hpp \
generic_ga/crossovermethods.hpp \
ttp/ttpcrossovermethods.hpp
DISTFILES += \
.gitignore \
plotGAData.gp \
README.md \
gaConf2.gaconf \
gaConf1.gaconf \
execBatch.sh