Skip to content
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/classq.f90
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ subroutine CLASSQ( n, x, incx, scl, sumsq )
end if
else
!
! Otherwise all values are mid-range
! Otherwise all values are mid-range or zero
!
scl = one
sumsq = amed
Expand Down
3 changes: 3 additions & 0 deletions SRC/dcombssq.f
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ SUBROUTINE DCOMBSSQ( V1, V2 )
PARAMETER ( ZERO = 0.0D+0 )
* ..
* .. Executable Statements ..
*
* A zero sum V2 shall not modify the scaling factor of V1
IF( V2( 2 ).EQ.ZERO ) RETURN
*
IF( V1( 1 ).GE.V2( 1 ) ) THEN
IF( V1( 1 ).NE.ZERO ) THEN
Expand Down
2 changes: 1 addition & 1 deletion SRC/dlassq.f90
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ subroutine DLASSQ( n, x, incx, scl, sumsq )
end if
else
!
! Otherwise all values are mid-range
! Otherwise all values are mid-range or zero
!
scl = one
sumsq = amed
Expand Down
3 changes: 3 additions & 0 deletions SRC/scombssq.f
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ SUBROUTINE SCOMBSSQ( V1, V2 )
PARAMETER ( ZERO = 0.0D+0 )
* ..
* .. Executable Statements ..
*
* A zero sum V2 shall not modify the scaling factor of V1
IF( V2( 2 ).EQ.ZERO ) RETURN
*
IF( V1( 1 ).GE.V2( 1 ) ) THEN
IF( V1( 1 ).NE.ZERO ) THEN
Expand Down
2 changes: 1 addition & 1 deletion SRC/slassq.f90
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ subroutine SLASSQ( n, x, incx, scl, sumsq )
end if
else
!
! Otherwise all values are mid-range
! Otherwise all values are mid-range or zero
!
scl = one
sumsq = amed
Expand Down
2 changes: 1 addition & 1 deletion SRC/zlassq.f90
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ subroutine ZLASSQ( n, x, incx, scl, sumsq )
end if
else
!
! Otherwise all values are mid-range
! Otherwise all values are mid-range or zero
!
scl = one
sumsq = amed
Expand Down