Skip to content

Commit 53a49de

Browse files
authored
Merge pull request #573 from weslleyspereira/minor-fixes
Improving comments in GELQT3, LAPY2 and LAPY3 routines
2 parents ecaf399 + 8fca89b commit 53a49de

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

SRC/cgelqt3.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ RECURSIVE SUBROUTINE CGELQT3( M, N, A, LDA, T, LDT, INFO )
157157
*
158158
IF( M.EQ.1 ) THEN
159159
*
160-
* Compute Householder transform when N=1
160+
* Compute Householder transform when M=1
161161
*
162162
CALL CLARFG( N, A, A( 1, MIN( 2, N ) ), LDA, T )
163163
T(1,1)=CONJG(T(1,1))

SRC/dgelqt3.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ RECURSIVE SUBROUTINE DGELQT3( M, N, A, LDA, T, LDT, INFO )
171171
*
172172
IF( M.EQ.1 ) THEN
173173
*
174-
* Compute Householder transform when N=1
174+
* Compute Householder transform when M=1
175175
*
176176
CALL DLARFG( N, A, A( 1, MIN( 2, N ) ), LDA, T )
177177
*

SRC/dlapy2.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
*> \verbatim
3232
*>
3333
*> DLAPY2 returns sqrt(x**2+y**2), taking care not to cause unnecessary
34-
*> overflow.
34+
*> overflow and unnecessary underflow.
3535
*> \endverbatim
3636
*
3737
* Arguments:

SRC/dlapy3.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
*> \verbatim
3232
*>
3333
*> DLAPY3 returns sqrt(x**2+y**2+z**2), taking care not to cause
34-
*> unnecessary overflow.
34+
*> unnecessary overflow and unnecessary underflow.
3535
*> \endverbatim
3636
*
3737
* Arguments:

SRC/sgelqt3.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ RECURSIVE SUBROUTINE SGELQT3( M, N, A, LDA, T, LDT, INFO )
156156
*
157157
IF( M.EQ.1 ) THEN
158158
*
159-
* Compute Householder transform when N=1
159+
* Compute Householder transform when M=1
160160
*
161161
CALL SLARFG( N, A, A( 1, MIN( 2, N ) ), LDA, T )
162162
*

SRC/slapy2.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
*> \verbatim
3232
*>
3333
*> SLAPY2 returns sqrt(x**2+y**2), taking care not to cause unnecessary
34-
*> overflow.
34+
*> overflow and unnecessary underflow.
3535
*> \endverbatim
3636
*
3737
* Arguments:

SRC/slapy3.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
*> \verbatim
3232
*>
3333
*> SLAPY3 returns sqrt(x**2+y**2+z**2), taking care not to cause
34-
*> unnecessary overflow.
34+
*> unnecessary overflow and unnecessary underflow.
3535
*> \endverbatim
3636
*
3737
* Arguments:

SRC/zgelqt3.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ RECURSIVE SUBROUTINE ZGELQT3( M, N, A, LDA, T, LDT, INFO )
172172
*
173173
IF( M.EQ.1 ) THEN
174174
*
175-
* Compute Householder transform when N=1
175+
* Compute Householder transform when M=1
176176
*
177177
CALL ZLARFG( N, A, A( 1, MIN( 2, N ) ), LDA, T )
178178
T(1,1)=CONJG(T(1,1))

0 commit comments

Comments
 (0)