Skip to content

Commit 0bf7aa0

Browse files
🎨 pre-commit fixes
1 parent 156aa96 commit 0bf7aa0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/algorithms/StatePreparation.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,7 @@ template <typename T>
6363
// Each element of matrix A is
6464
// multiplied by whole Matrix B
6565
// resp and stored as Matrix C
66-
newMatrix[i * rowB + k][j * colB + l] =
67-
matrixA[i][j] * matrixB[k][l];
66+
newMatrix[i * rowB + k][j * colB + l] = matrixA[i][j] * matrixB[k][l];
6867
}
6968
}
7069
}

0 commit comments

Comments
 (0)