Skip to content

Commit a8a03af

Browse files
Remove unused notbig = .false. thanks to @vladimir-ch
1 parent e7d572c commit a8a03af

File tree

4 files changed

+0
-4
lines changed

4 files changed

+0
-4
lines changed

SRC/classq.f90

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,6 @@ subroutine CLASSQ( n, x, incx, scl, sumsq )
211211
if (ax > tbig) then
212212
! We assume scl >= sqrt( TINY*EPS ) / sbig
213213
abig = abig + (scl*sbig)**2 * sumsq
214-
notbig = .false.
215214
else if (ax < tsml) then
216215
! We assume scl <= sqrt( HUGE ) / ssml
217216
if (notbig) asml = asml + (scl*ssml)**2 * sumsq

SRC/dlassq.f90

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,6 @@ subroutine DLASSQ( n, x, incx, scl, sumsq )
202202
if (ax > tbig) then
203203
! We assume scl >= sqrt( TINY*EPS ) / sbig
204204
abig = abig + (scl*sbig)**2 * sumsq
205-
notbig = .false.
206205
else if (ax < tsml) then
207206
! We assume scl <= sqrt( HUGE ) / ssml
208207
if (notbig) asml = asml + (scl*ssml)**2 * sumsq

SRC/slassq.f90

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,6 @@ subroutine SLASSQ( n, x, incx, scl, sumsq )
202202
if (ax > tbig) then
203203
! We assume scl >= sqrt( TINY*EPS ) / sbig
204204
abig = abig + (scl*sbig)**2 * sumsq
205-
notbig = .false.
206205
else if (ax < tsml) then
207206
! We assume scl <= sqrt( HUGE ) / ssml
208207
if (notbig) asml = asml + (scl*ssml)**2 * sumsq

SRC/zlassq.f90

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,6 @@ subroutine ZLASSQ( n, x, incx, scl, sumsq )
211211
if (ax > tbig) then
212212
! We assume scl >= sqrt( TINY*EPS ) / sbig
213213
abig = abig + (scl*sbig)**2 * sumsq
214-
notbig = .false.
215214
else if (ax < tsml) then
216215
! We assume scl <= sqrt( HUGE ) / ssml
217216
if (notbig) asml = asml + (scl*ssml)**2 * sumsq

0 commit comments

Comments
 (0)