Skip to content

Commit

Permalink
Remove unused notbig = .false. thanks to @vladimir-ch
Browse files Browse the repository at this point in the history
  • Loading branch information
weslleyspereira committed Jun 24, 2021
1 parent e7d572c commit a8a03af
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion SRC/classq.f90
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,6 @@ subroutine CLASSQ( n, x, incx, scl, sumsq )
if (ax > tbig) then
! We assume scl >= sqrt( TINY*EPS ) / sbig
abig = abig + (scl*sbig)**2 * sumsq
notbig = .false.
else if (ax < tsml) then
! We assume scl <= sqrt( HUGE ) / ssml
if (notbig) asml = asml + (scl*ssml)**2 * sumsq
Expand Down
1 change: 0 additions & 1 deletion SRC/dlassq.f90
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,6 @@ subroutine DLASSQ( n, x, incx, scl, sumsq )
if (ax > tbig) then
! We assume scl >= sqrt( TINY*EPS ) / sbig
abig = abig + (scl*sbig)**2 * sumsq
notbig = .false.
else if (ax < tsml) then
! We assume scl <= sqrt( HUGE ) / ssml
if (notbig) asml = asml + (scl*ssml)**2 * sumsq
Expand Down
1 change: 0 additions & 1 deletion SRC/slassq.f90
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,6 @@ subroutine SLASSQ( n, x, incx, scl, sumsq )
if (ax > tbig) then
! We assume scl >= sqrt( TINY*EPS ) / sbig
abig = abig + (scl*sbig)**2 * sumsq
notbig = .false.
else if (ax < tsml) then
! We assume scl <= sqrt( HUGE ) / ssml
if (notbig) asml = asml + (scl*ssml)**2 * sumsq
Expand Down
1 change: 0 additions & 1 deletion SRC/zlassq.f90
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,6 @@ subroutine ZLASSQ( n, x, incx, scl, sumsq )
if (ax > tbig) then
! We assume scl >= sqrt( TINY*EPS ) / sbig
abig = abig + (scl*sbig)**2 * sumsq
notbig = .false.
else if (ax < tsml) then
! We assume scl <= sqrt( HUGE ) / ssml
if (notbig) asml = asml + (scl*ssml)**2 * sumsq
Expand Down

0 comments on commit a8a03af

Please sign in to comment.