diff options
Diffstat (limited to 'hadamard_test.cpp')
-rw-r--r-- | hadamard_test.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/hadamard_test.cpp b/hadamard_test.cpp index e505d79..a27b117 100644 --- a/hadamard_test.cpp +++ b/hadamard_test.cpp @@ -1,9 +1,10 @@ #include "hadamard_pt.hpp" +#include <iostream> int main() { double β0 = 1.0; double β1 = 10.0; - unsigned N = 4; + unsigned N = 16; unsigned n = 4; ParallelMeasurement m1; @@ -18,6 +19,7 @@ int main() { a.tune(1000, 10, 0.1, 0.1); for (MCMC& M : a.Ms) { - std::cout << M.β; + std::cout << M.β << " "; } + std::cout << "\n"; } |