Skip to content

Commit 066c4a3

Browse files
🎨 pre-commit fixes
1 parent 4918724 commit 066c4a3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/algorithms/StatePreparation.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
#include "algorithms/StatePreparation.hpp"
1111

1212
#include "CircuitOptimizer.hpp"
13+
#include "ir/operations/OpType.hpp"
1314
#include "ir/operations/Operation.hpp"
1415
#include "ir/operations/StandardOperation.hpp"
15-
#include "ir/operations/OpType.hpp"
1616

1717
#include <cmath>
1818
#include <complex>
19-
#include <tuple>
2019
#include <stddef.h>
20+
#include <tuple>
2121

2222
static const double EPS = 1e-10;
2323

@@ -98,9 +98,9 @@ template <typename T>[[noexcept]] auto twoNorm(std::vector<T> vec) -> double {
9898
return identity;
9999
}
100100

101-
[[noexcept]] auto
102-
matrixVectorProd(const Matrix& matrix,
103-
std::vector<double> vector) -> std::vector<double> {
101+
[[noexcept]] auto matrixVectorProd(const Matrix& matrix,
102+
std::vector<double> vector)
103+
-> std::vector<double> {
104104
std::vector<double> result;
105105
for (const auto& matrixVec : matrix) {
106106
double sum{0};

0 commit comments

Comments
 (0)