From df87e58ae6cfd5c084b357b1df5dd5051a42a77f Mon Sep 17 00:00:00 2001 From: jamesETsmith Date: Mon, 10 Jun 2024 20:46:56 -0400 Subject: [PATCH] [feature/CI_setup] Turning off multistring tests on CI --- include/__pauli_op.hpp | 1 - include/__pauli_string.hpp | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/include/__pauli_op.hpp b/include/__pauli_op.hpp index 13f19dc..e886f45 100644 --- a/include/__pauli_op.hpp +++ b/include/__pauli_op.hpp @@ -154,7 +154,6 @@ template struct PauliOp { #pragma omp for schedule(static) for (size_t i = 0; i < pauli_strings.size(); ++i) { size_t const tid = omp_get_thread_num(); - fmt::println("thread {} index {}", tid, i); PauliString const &ps = pauli_strings[i]; std::complex c = coeffs[i]; diff --git a/include/__pauli_string.hpp b/include/__pauli_string.hpp index e3570d6..7e121d4 100644 --- a/include/__pauli_string.hpp +++ b/include/__pauli_string.hpp @@ -242,6 +242,7 @@ struct PauliString { * @brief Apply the PauliString to a batch of states. This function takes a * different shape of the states than the other apply functions. here all the * states (new and old) are transposed so their shape is (n_dims x n_states). + * All the new_stats are overwritten, no need to initialize. * * @tparam T The floating point base to use for all the complex numbers * @param new_states_T The outpus states after applying the PauliString