bugfix build: build applications, correct prototype for EDA
This commit is contained in:
parent
51632cf856
commit
da4a7489f3
3 changed files with 4 additions and 5 deletions
|
|
@ -92,7 +92,7 @@ SET(SAMPLE_SRCS)
|
||||||
######################################################################################
|
######################################################################################
|
||||||
|
|
||||||
ADD_SUBDIRECTORY(src)
|
ADD_SUBDIRECTORY(src)
|
||||||
#ADD_SUBDIRECTORY(application)
|
ADD_SUBDIRECTORY(application)
|
||||||
ADD_SUBDIRECTORY(test)
|
ADD_SUBDIRECTORY(test)
|
||||||
ADD_SUBDIRECTORY(doc)
|
ADD_SUBDIRECTORY(doc)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -162,9 +162,8 @@ int main(int ac, char** av)
|
||||||
|
|
||||||
// EDA algorithm configuration
|
// EDA algorithm configuration
|
||||||
edoAlgo< Distrib >* algo = new edoEDA< Distrib >
|
edoAlgo< Distrib >* algo = new edoEDA< Distrib >
|
||||||
(*selector, *estimator, *sampler,
|
(popEval, *selector, *estimator, *sampler, *replacor,
|
||||||
pop_continue, *distribution_continue,
|
pop_continue, *distribution_continue );
|
||||||
popEval, *replacor);
|
|
||||||
|
|
||||||
// Beginning of the algorithm call
|
// Beginning of the algorithm call
|
||||||
try {
|
try {
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ LINK_DIRECTORIES(${Boost_LIBRARY_DIRS})
|
||||||
INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/application/common)
|
INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/application/common)
|
||||||
|
|
||||||
SET(SOURCES
|
SET(SOURCES
|
||||||
t-cholesky
|
#t-cholesky
|
||||||
t-edoEstimatorNormalMulti
|
t-edoEstimatorNormalMulti
|
||||||
t-mean-distance
|
t-mean-distance
|
||||||
t-bounderno
|
t-bounderno
|
||||||
|
|
|
||||||
Reference in a new issue