Tester for CMA

This commit is contained in:
maartenkeijzer 2005-10-14 15:34:45 +00:00
commit 0eee2ff13d
2 changed files with 125 additions and 2 deletions

View file

@ -8,6 +8,7 @@ LIBEO = $(top_builddir)/src/libeo.a
LIBEOUTILS = $(top_builddir)/src/utils/libeoutils.a
LIBES = $(top_builddir)/src/es/libes.a
LIBGA = $(top_builddir)/src/ga/libga.a
LIBCMA = $(top_builddir)/src/es/libcma.a
# PLEASE don't break the line (see create_batch.sh)
check_PROGRAMS = t-eoParetoFitness \
@ -36,7 +37,8 @@ check_PROGRAMS = t-eoParetoFitness \
t-eoFitnessAssembled \
t-eoFitnessAssembledEA \
t-eoRoulette \
t-eoSharing
t-eoSharing \
t-eoCMAES
TESTS = $(check_PROGRAMS) \
@ -46,7 +48,7 @@ noinst_HEADERS = binary_value.h real_value.h RoyalRoad.h
AM_CXXFLAGS = -I$(top_srcdir)/src
DEPS = $(LIBGA) $(LIBES) $(LIBEOUTILS) $(LIBEO)
DEPS = $(LIBGA) $(LIBES) $(LIBCMA) $(LIBEOUTILS) $(LIBEO)
LIBS = $(DEPS)
CLEANFILES = monitor.csv t-eoRandom.out
@ -88,3 +90,4 @@ t_eoPBIL_SOURCES = t-eoPBIL.cpp
t_eoFitnessAssembled_SOURCES = t-eoFitnessAssembled.cpp
t_eoRoulette_SOURCES = t-eoRoulette.cpp
t_eoSharing_SOURCES = t-eoSharing.cpp
t_eoCMAES_SOURCES = t-eoCMAES.cpp