diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-03 11:04:29 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-03 11:04:29 -0300 |
commit | 2af8d532265e3aea38092caf13da60ca582cd050 (patch) | |
tree | 1eac38f0bc58050dbba5432d13493ffdd43bef00 | |
parent | 8f22dcbf56c7cbf5f37b3790d855c3622ed46fe5 (diff) | |
download | code-2af8d532265e3aea38092caf13da60ca582cd050.tar.gz code-2af8d532265e3aea38092caf13da60ca582cd050.tar.bz2 code-2af8d532265e3aea38092caf13da60ca582cd050.zip |
Changed output of get_energy from cerr to cout
-rw-r--r-- | get_energy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/get_energy.cpp b/get_energy.cpp index 449c2c6..857c1c4 100644 --- a/get_energy.cpp +++ b/get_energy.cpp @@ -149,7 +149,7 @@ int main(int argc, char* argv[]) { std::vector<Complex> Ct = fft.fourier(C); - std::cerr << y << " " << energy << " " << Ct[0].real() << std::endl; + std::cout << y << " " << energy << " " << Ct[0].real() << std::endl; } return 0; |