Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
doichanj committed Dec 8, 2023
1 parent 259aecb commit 0d72851
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ class State : public QuantumState::State<chstate_t> {
// we loop over the terms in the decomposition in parallel
template <typename InputIterator>
void apply_ops(InputIterator first, InputIterator last,
ExperimentResult &result, RngEngine &rng,
bool final_ops = false);
ExperimentResult &result, RngEngine &rng,
bool final_ops = false);

// Apply a single operation
// If the op is not in allowed_ops an exeption will be raised.
Expand Down Expand Up @@ -346,8 +346,8 @@ void State::apply_op(const Operations::Op &op, ExperimentResult &result,

template <typename InputIterator>
void State::apply_ops(InputIterator first, InputIterator last,
ExperimentResult &result, RngEngine &rng,
bool final_ops) {
ExperimentResult &result, RngEngine &rng,
bool final_ops) {
std::pair<bool, size_t> stabilizer_opts = check_stabilizer_opt(first, last);
bool is_stabilizer = stabilizer_opts.first;
if (is_stabilizer) {
Expand Down

0 comments on commit 0d72851

Please sign in to comment.