Skip to content

Commit

Permalink
remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
alfC committed Feb 17, 2025
1 parent 8fcbfee commit 2dfccb7
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions include/boost/multi/adaptors/fftw/test/core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,7 @@ auto main() -> int { // NOLINT(readability-function-cognitive-complexity,bugpro

multi::fftw::dft_forward({false, false}, in, out); // out = in;

std::cout << in[2][3].real() << "==" << out[2][3].real() << std::endl;
BOOST_TEST( in[2][3].real() == out[2][3].real() );

std::cout << in[2][3].imag() << "==" << out[2][3].imag() << std::endl;
BOOST_TEST( in[2][3].imag() == out[2][3].imag() );

BOOST_TEST( out == in );
Expand Down

0 comments on commit 2dfccb7

Please sign in to comment.