Skip to content

Commit 146846c

Browse files
2 parents cdaaea2 + 0bf7aa0 commit 146846c

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)