mirror of
https://github.com/boostorg/multiprecision.git
synced 2025-05-12 05:51:48 +00:00
* 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.
16 lines
450 B
C++
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;
|
|
}
|