You have to sove this problems: EDO: t-dispatcher-round (commented) MOOE: Lesson4 (commented) MO: t-moRndIndexedVectorTabuList (commented)
19 lines
579 B
CMake
19 lines
579 B
CMake
######################################################################################
|
|
### 1) Where do we go now ?!?
|
|
######################################################################################
|
|
|
|
include_directories(
|
|
${CMAKE_CURRENT_SOURCE_DIR}/common
|
|
)
|
|
|
|
include_directories(${EIGEN3_INCLUDE_DIR})
|
|
|
|
add_subdirectory(common) # Rosenbrock and Sphere
|
|
#add_subdirectory(eda_sa)
|
|
|
|
if(EIGEN3_FOUND) # see edoNormalAdaptive
|
|
add_subdirectory(eda)
|
|
add_subdirectory(cmaes)
|
|
endif()
|
|
|
|
######################################################################################
|