Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

align documentation of BDSQR workspace with code #1029

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion SRC/cbdsqr.f
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,9 @@
*>
*> \param[out] RWORK
*> \verbatim
*> RWORK is REAL array, dimension (4*(N-1))
*> RWORK is REAL array, dimension (LRWORK)
*> LRWORK = 4*N, if NCVT = NRU = NCC = 0, and
*> LRWORK = 4*(N-1), otherwise
*> \endverbatim
*>
*> \param[out] INFO
Expand Down
4 changes: 3 additions & 1 deletion SRC/dbdsqr.f
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,9 @@
*>
*> \param[out] WORK
*> \verbatim
*> WORK is DOUBLE PRECISION array, dimension (4*(N-1))
*> WORK is DOUBLE PRECISION array, dimension (LWORK)
*> LWORK = 4*N, if NCVT = NRU = NCC = 0, and
*> LWORK = 4*(N-1), otherwise
*> \endverbatim
*>
*> \param[out] INFO
Expand Down
4 changes: 3 additions & 1 deletion SRC/sbdsqr.f
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,9 @@
*>
*> \param[out] WORK
*> \verbatim
*> WORK is REAL array, dimension (4*(N-1))
*> WORK is REAL array, dimension (LWORK)
*> LWORK = 4*N, if NCVT = NRU = NCC = 0, and
*> LWORK = 4*(N-1), otherwise
*> \endverbatim
*>
*> \param[out] INFO
Expand Down
4 changes: 3 additions & 1 deletion SRC/zbdsqr.f
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,9 @@
*>
*> \param[out] RWORK
*> \verbatim
*> RWORK is DOUBLE PRECISION array, dimension (4*(N-1))
*> RWORK is DOUBLE PRECISION array, dimension (LRWORK)
*> LRWORK = 4*N, if NCVT = NRU = NCC = 0, and
*> LRWORK = 4*(N-1), otherwise
*> \endverbatim
*>
*> \param[out] INFO
Expand Down
Loading