has_eigen.cpp 350 B

123456789101112131415
  1. // Copyright John Maddock 2011.
  2. // Use, modification and distribution are subject to the
  3. // Boost Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. #include <Eigen/Dense>
  6. int main()
  7. {
  8. #if EIGEN_VERSION_AT_LEAST(3, 3, 0)
  9. #else
  10. #error "Obsolete Eigen"
  11. #endif
  12. return 0;
  13. }