multiprecision/test/test_eigen_interop_cpp_complex.cpp
jzmaddock b0394fe0ec
Update Eigen interop support. (#534)
* Update Eigen interop support.
So we no longer rely on Eigen details.
Also improve complex number testing.
Fixes: https://github.com/boostorg/multiprecision/issues/479

* Restrict new Eigen tests to 3.4.90 and later.
2023-02-20 18:03:34 +00:00

16 lines
450 B
C++

///////////////////////////////////////////////////////////////////////////////
// Copyright 2023 John Maddock. Distributed under the Boost
// Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#include <boost/multiprecision/cpp_complex.hpp>
#include "eigen.hpp"
int main()
{
using namespace boost::multiprecision;
test_complex_type<cpp_complex_50>();
return 0;
}