10
0
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-08-24 21:21:47 +02:00

Updated documentation

This commit is contained in:
Anthony Scemama 2024-06-20 17:27:21 +02:00
parent 70317b2a15
commit b6b169c1cd
2 changed files with 4 additions and 1 deletions

View File

@ -25,7 +25,10 @@ END_PROVIDER
! Last dimension of cholesky_ao is cholesky_ao_num
!
! https://mogp-emulator.readthedocs.io/en/latest/methods/proc/ProcPivotedCholesky.html
!
! https://doi.org/10.1016/j.apnum.2011.10.001 : Page 4, Algorithm 1
!
! https://www.diva-portal.org/smash/get/diva2:396223/FULLTEXT01.pdf
END_DOC
integer*8 :: ndim8

View File

@ -1856,7 +1856,7 @@ subroutine pivoted_cholesky( A, rank, tol, ndim, U)
!
! matrix A is destroyed inside this subroutine
! Cholesky vectors are stored in U
! dimension of U: U(1:rank, 1:n)
! dimension of U: U(1:n, 1:rank)
! U is allocated inside this subroutine
! rank is the number of Cholesky vectors depending on tol
!