From c0be5c9700be2e9333be1feed66d526148c29c20 Mon Sep 17 00:00:00 2001 From: nojhan Date: Tue, 10 Jul 2012 12:02:40 +0200 Subject: [PATCH] no need of a eigen test --- edo/application/cmaes/CMakeLists.txt | 3 --- edo/application/cmaes/t-eigen.cpp | 15 --------------- 2 files changed, 18 deletions(-) delete mode 100644 edo/application/cmaes/t-eigen.cpp diff --git a/edo/application/cmaes/CMakeLists.txt b/edo/application/cmaes/CMakeLists.txt index 62761149..ade261ac 100644 --- a/edo/application/cmaes/CMakeLists.txt +++ b/edo/application/cmaes/CMakeLists.txt @@ -31,6 +31,3 @@ SET(EXECUTABLE_OUTPUT_PATH ${EDO_BINARY_DIR}) ADD_EXECUTABLE(${PROJECT_NAME} main.cpp) TARGET_LINK_LIBRARIES(${PROJECT_NAME} edo edoutils ${EO_LIBRARIES} ${Boost_LIBRARIES}) -IF( WITH_EIGEN ) - ADD_EXECUTABLE(t-eigen t-eigen.cpp) -ENDIF() diff --git a/edo/application/cmaes/t-eigen.cpp b/edo/application/cmaes/t-eigen.cpp deleted file mode 100644 index 6064714a..00000000 --- a/edo/application/cmaes/t-eigen.cpp +++ /dev/null @@ -1,15 +0,0 @@ -#include -#include - -using Eigen::MatrixXd; - -int main() -{ - MatrixXd m(2,2); - m(0,0) = 3; - m(1,0) = 2.5; - m(0,1) = -1; - m(1,1) = m(1,0) + m(0,1); - std::cout << m << std::endl; -} -