26 lines
494 B
Makefile
Executable file
26 lines
494 B
Makefile
Executable file
INCLUDES = -I${EO_DIR}/src/ -I${PARADISEO_DIR}/examples/tsp/ -I../../../src/
|
|
|
|
AM_CXXFLAGS =\
|
|
-Wall
|
|
|
|
lib_LIBRARIES = libtsp_share.a
|
|
|
|
libtsp_share_a_SOURCES =\
|
|
graph.cpp\
|
|
route_init.cpp\
|
|
route_eval.cpp\
|
|
part_route_eval.cpp\
|
|
edge_xover.cpp\
|
|
order_xover.cpp\
|
|
route_valid.cpp\
|
|
partial_mapped_xover.cpp\
|
|
city_swap.cpp\
|
|
two_opt.cpp\
|
|
two_opt_init.cpp\
|
|
two_opt_next.cpp\
|
|
two_opt_incr_eval.cpp\
|
|
two_opt_tabu_list.cpp\
|
|
two_opt_rand.cpp
|
|
|
|
|
|
|