Skip to content

Commit 881cab7

Browse files
🎨 pre-commit fixes
1 parent 84b5041 commit 881cab7

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/algorithms/StatePreparation.cpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
*
77
* Licensed under the MIT License
88
*/
9+
910
#include "algorithms/StatePreparation.hpp"
1011

1112
#include "CircuitOptimizer.hpp"
@@ -94,9 +95,9 @@ template <typename T>[[noexcept]] auto twoNorm(std::vector<T> vec) -> double {
9495
return identity;
9596
}
9697

97-
[[noexcept]] auto
98-
matrixVectorProd(const Matrix& matrix,
99-
std::vector<double> vector) -> std::vector<double> {
98+
[[noexcept]] auto matrixVectorProd(const Matrix& matrix,
99+
std::vector<double> vector)
100+
-> std::vector<double> {
100101
std::vector<double> result;
101102
for (const auto& matrixVec : matrix) {
102103
double sum{0};

0 commit comments

Comments
 (0)