fix #10: removed MOO binaries
This commit is contained in:
parent
653bc392ed
commit
cbea0180a8
3 changed files with 3 additions and 5 deletions
1
eo/NEWS
1
eo/NEWS
|
|
@ -17,6 +17,7 @@
|
||||||
- interquartile range stat
|
- interquartile range stat
|
||||||
- uniform(min,max) random function
|
- uniform(min,max) random function
|
||||||
- compatibility macros for compiling paradiseo with CUDACC
|
- compatibility macros for compiling paradiseo with CUDACC
|
||||||
|
- removed old multi-objective classes, deprecated by the Paradiseo-MOEO project
|
||||||
- new website, switch from CVS to GIT, and a cool logo!
|
- new website, switch from CVS to GIT, and a cool logo!
|
||||||
|
|
||||||
* release 1.0.1 (23. Jan. 2006)
|
* release 1.0.1 (23. Jan. 2006)
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,6 @@ ADD_SUBDIRECTORY(do)
|
||||||
ADD_SUBDIRECTORY(es)
|
ADD_SUBDIRECTORY(es)
|
||||||
ADD_SUBDIRECTORY(ga)
|
ADD_SUBDIRECTORY(ga)
|
||||||
ADD_SUBDIRECTORY(gp)
|
ADD_SUBDIRECTORY(gp)
|
||||||
ADD_SUBDIRECTORY(moo)
|
|
||||||
ADD_SUBDIRECTORY(other)
|
ADD_SUBDIRECTORY(other)
|
||||||
ADD_SUBDIRECTORY(utils)
|
ADD_SUBDIRECTORY(utils)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -56,7 +56,6 @@ SET (TEST_LIST
|
||||||
t-eoSecondsElapsedContinue
|
t-eoSecondsElapsedContinue
|
||||||
t-eoRNG
|
t-eoRNG
|
||||||
t-eoEasyPSO
|
t-eoEasyPSO
|
||||||
t-eoNSGA
|
|
||||||
t-eoInt
|
t-eoInt
|
||||||
t-eoInitPermutation
|
t-eoInitPermutation
|
||||||
t-eoSwapMutation
|
t-eoSwapMutation
|
||||||
|
|
@ -67,7 +66,6 @@ SET (TEST_LIST
|
||||||
t-eoOrderXover
|
t-eoOrderXover
|
||||||
t-eoExtendedVelocity
|
t-eoExtendedVelocity
|
||||||
# t-eoFrontSorter
|
# t-eoFrontSorter
|
||||||
# t-eoEpsMOEA
|
|
||||||
t-eoLogger
|
t-eoLogger
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
@ -84,7 +82,7 @@ IF(ENABLE_MINIMAL_CMAKE_TESTING)
|
||||||
SET ("T_${mintest}_SOURCES" "${mintest}.cpp")
|
SET ("T_${mintest}_SOURCES" "${mintest}.cpp")
|
||||||
ADD_EXECUTABLE(${mintest} ${T_${mintest}_SOURCES})
|
ADD_EXECUTABLE(${mintest} ${T_${mintest}_SOURCES})
|
||||||
ADD_TEST(${mintest} ${mintest})
|
ADD_TEST(${mintest} ${mintest})
|
||||||
TARGET_LINK_LIBRARIES(${mintest} ga es cma eoutils eo eomoo)
|
TARGET_LINK_LIBRARIES(${mintest} ga es cma eoutils eo)
|
||||||
ENDFOREACH (mintest)
|
ENDFOREACH (mintest)
|
||||||
|
|
||||||
ELSEIF(ENABLE_CMAKE_TESTING)
|
ELSEIF(ENABLE_CMAKE_TESTING)
|
||||||
|
|
@ -92,7 +90,7 @@ ELSEIF(ENABLE_CMAKE_TESTING)
|
||||||
FOREACH (test ${TEST_LIST})
|
FOREACH (test ${TEST_LIST})
|
||||||
ADD_EXECUTABLE(${test} ${T_${test}_SOURCES})
|
ADD_EXECUTABLE(${test} ${T_${test}_SOURCES})
|
||||||
ADD_TEST(${test} ${test})
|
ADD_TEST(${test} ${test})
|
||||||
TARGET_LINK_LIBRARIES(${test} ga es cma eoutils eo eomoo)
|
TARGET_LINK_LIBRARIES(${test} ga es cma eoutils eo)
|
||||||
INSTALL(TARGETS ${test} RUNTIME DESTINATION share/eo/test COMPONENT test)
|
INSTALL(TARGETS ${test} RUNTIME DESTINATION share/eo/test COMPONENT test)
|
||||||
ENDFOREACH (test)
|
ENDFOREACH (test)
|
||||||
|
|
||||||
|
|
|
||||||
Reference in a new issue