Commit 066c4a3 1 parent 4918724 commit 066c4a3 Copy full SHA for 066c4a3
File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 10
10
#include " algorithms/StatePreparation.hpp"
11
11
12
12
#include " CircuitOptimizer.hpp"
13
+ #include " ir/operations/OpType.hpp"
13
14
#include " ir/operations/Operation.hpp"
14
15
#include " ir/operations/StandardOperation.hpp"
15
- #include " ir/operations/OpType.hpp"
16
16
17
17
#include < cmath>
18
18
#include < complex>
19
- #include < tuple>
20
19
#include < stddef.h>
20
+ #include < tuple>
21
21
22
22
static const double EPS = 1e-10 ;
23
23
@@ -98,9 +98,9 @@ template <typename T>[[noexcept]] auto twoNorm(std::vector<T> vec) -> double {
98
98
return identity;
99
99
}
100
100
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> {
104
104
std::vector<double > result;
105
105
for (const auto & matrixVec : matrix) {
106
106
double sum{0 };
You can’t perform that action at this time.
0 commit comments