You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current implementation of the cholesky decomposition involves lots of copying, like L = L.set(i, j, value). The whole thing would be a little bit more efficient if we operated on a S[][] instead of a Matrix<S>.
The text was updated successfully, but these errors were encountered:
The current implementation of the cholesky decomposition involves lots of copying, like
L = L.set(i, j, value)
. The whole thing would be a little bit more efficient if we operated on aS[][]
instead of aMatrix<S>
.The text was updated successfully, but these errors were encountered: