Skip to content

Commit aaeeef2

Browse files
Fix comments thanks to @vladimir-ch
1 parent a8a03af commit aaeeef2

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

SRC/classq.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
!>
4747
!> If scale * sqrt( sumsq ) > tbig then
4848
!> we require: scale >= sqrt( TINY*EPS ) / sbig on entry,
49-
!> and if scale * sqrt( sumsq ) < tsml then
49+
!> and if 0 < scale * sqrt( sumsq ) < tsml then
5050
!> we require: scale <= sqrt( HUGE ) / ssml on entry,
5151
!> where
5252
!> tbig -- upper threshold for values whose square is representable;

SRC/dlassq.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
!>
4747
!> If scale * sqrt( sumsq ) > tbig then
4848
!> we require: scale >= sqrt( TINY*EPS ) / sbig on entry,
49-
!> and if scale * sqrt( sumsq ) < tsml then
49+
!> and if 0 < scale * sqrt( sumsq ) < tsml then
5050
!> we require: scale <= sqrt( HUGE ) / ssml on entry,
5151
!> where
5252
!> tbig -- upper threshold for values whose square is representable;

SRC/slassq.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
!>
4747
!> If scale * sqrt( sumsq ) > tbig then
4848
!> we require: scale >= sqrt( TINY*EPS ) / sbig on entry,
49-
!> and if scale * sqrt( sumsq ) < tsml then
49+
!> and if 0 < scale * sqrt( sumsq ) < tsml then
5050
!> we require: scale <= sqrt( HUGE ) / ssml on entry,
5151
!> where
5252
!> tbig -- upper threshold for values whose square is representable;

SRC/zlassq.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
!>
4747
!> If scale * sqrt( sumsq ) > tbig then
4848
!> we require: scale >= sqrt( TINY*EPS ) / sbig on entry,
49-
!> and if scale * sqrt( sumsq ) < tsml then
49+
!> and if 0 < scale * sqrt( sumsq ) < tsml then
5050
!> we require: scale <= sqrt( HUGE ) / ssml on entry,
5151
!> where
5252
!> tbig -- upper threshold for values whose square is representable;

0 commit comments

Comments
 (0)