Skip to content

Improving comments in GELQT3, LAPY2 and LAPY3 routines #573

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

Merged
merged 2 commits into from
Jun 4, 2021
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
2 changes: 1 addition & 1 deletion SRC/cgelqt3.f
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ RECURSIVE SUBROUTINE CGELQT3( M, N, A, LDA, T, LDT, INFO )
*
IF( M.EQ.1 ) THEN
*
* Compute Householder transform when N=1
* Compute Householder transform when M=1
*
CALL CLARFG( N, A, A( 1, MIN( 2, N ) ), LDA, T )
T(1,1)=CONJG(T(1,1))
Expand Down
2 changes: 1 addition & 1 deletion SRC/dgelqt3.f
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ RECURSIVE SUBROUTINE DGELQT3( M, N, A, LDA, T, LDT, INFO )
*
IF( M.EQ.1 ) THEN
*
* Compute Householder transform when N=1
* Compute Householder transform when M=1
*
CALL DLARFG( N, A, A( 1, MIN( 2, N ) ), LDA, T )
*
Expand Down
2 changes: 1 addition & 1 deletion SRC/dlapy2.f
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
*> \verbatim
*>
*> DLAPY2 returns sqrt(x**2+y**2), taking care not to cause unnecessary
*> overflow.
*> overflow and unnecessary underflow.
*> \endverbatim
*
* Arguments:
Expand Down
2 changes: 1 addition & 1 deletion SRC/dlapy3.f
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
*> \verbatim
*>
*> DLAPY3 returns sqrt(x**2+y**2+z**2), taking care not to cause
*> unnecessary overflow.
*> unnecessary overflow and unnecessary underflow.
*> \endverbatim
*
* Arguments:
Expand Down
2 changes: 1 addition & 1 deletion SRC/sgelqt3.f
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ RECURSIVE SUBROUTINE SGELQT3( M, N, A, LDA, T, LDT, INFO )
*
IF( M.EQ.1 ) THEN
*
* Compute Householder transform when N=1
* Compute Householder transform when M=1
*
CALL SLARFG( N, A, A( 1, MIN( 2, N ) ), LDA, T )
*
Expand Down
2 changes: 1 addition & 1 deletion SRC/slapy2.f
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
*> \verbatim
*>
*> SLAPY2 returns sqrt(x**2+y**2), taking care not to cause unnecessary
*> overflow.
*> overflow and unnecessary underflow.
*> \endverbatim
*
* Arguments:
Expand Down
2 changes: 1 addition & 1 deletion SRC/slapy3.f
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
*> \verbatim
*>
*> SLAPY3 returns sqrt(x**2+y**2+z**2), taking care not to cause
*> unnecessary overflow.
*> unnecessary overflow and unnecessary underflow.
*> \endverbatim
*
* Arguments:
Expand Down
2 changes: 1 addition & 1 deletion SRC/zgelqt3.f
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ RECURSIVE SUBROUTINE ZGELQT3( M, N, A, LDA, T, LDT, INFO )
*
IF( M.EQ.1 ) THEN
*
* Compute Householder transform when N=1
* Compute Householder transform when M=1
*
CALL ZLARFG( N, A, A( 1, MIN( 2, N ) ), LDA, T )
T(1,1)=CONJG(T(1,1))
Expand Down