git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@34 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
parent
342b436feb
commit
da1d09b2cf
322 changed files with 46339 additions and 0 deletions
49
trunk/paradiseo-mo/examples/tsp/Makefile.am
Executable file
49
trunk/paradiseo-mo/examples/tsp/Makefile.am
Executable file
|
|
@ -0,0 +1,49 @@
|
|||
AM_CXXFLAGS =\
|
||||
-Wall
|
||||
|
||||
SUBDIRS=share
|
||||
|
||||
INCLUDES = -I${EO_DIR}/src/ -I../../src/
|
||||
|
||||
bin_PROGRAMS = hill_climb simul_anneal tabu_search gen_algo mimetic
|
||||
|
||||
# Simple Hill Climbing
|
||||
hill_climb_SOURCES = \
|
||||
hill_climb.cpp
|
||||
|
||||
hill_climb_LDFLAGS =
|
||||
|
||||
hill_climb_LDADD = share/libtsp_share.a ${EO_DIR}/src/libeo.a ${EO_DIR}/src/utils/libeoutils.a
|
||||
|
||||
# Simple Simulated Annealing
|
||||
simul_anneal_SOURCES = \
|
||||
simul_anneal.cpp
|
||||
|
||||
simul_anneal_LDFLAGS =
|
||||
|
||||
simul_anneal_LDADD = share/libtsp_share.a ${EO_DIR}/src/libeo.a ${EO_DIR}/src/utils/libeoutils.a
|
||||
|
||||
# Simple Tabu Search
|
||||
tabu_search_SOURCES = \
|
||||
tabu_search.cpp
|
||||
|
||||
tabu_search_LDFLAGS =
|
||||
|
||||
tabu_search_LDADD = share/libtsp_share.a ${EO_DIR}/src/libeo.a ${EO_DIR}/src/utils/libeoutils.a
|
||||
|
||||
# Simple Genetic Algorithm
|
||||
gen_algo_SOURCES = \
|
||||
gen_algo.cpp
|
||||
|
||||
gen_algo_LDFLAGS =
|
||||
|
||||
gen_algo_LDADD = share/libtsp_share.a ${EO_DIR}/src/libeo.a ${EO_DIR}/src/utils/libeoutils.a
|
||||
|
||||
# Simple Mimetic Algorithm
|
||||
mimetic_SOURCES = \
|
||||
mimetic.cpp
|
||||
|
||||
mimetic_LDFLAGS =
|
||||
|
||||
mimetic_LDADD = share/libtsp_share.a ${EO_DIR}/src/libeo.a ${EO_DIR}/src/utils/libeoutils.a
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue