Browse Source

Add quick return for N < 1 (Reference-LAPACK PR 837)

tags/v0.3.24
Martin Kroeker GitHub 2 years ago
parent
commit
447368783a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 0 deletions
  1. +5
    -0
      lapack-netlib/SRC/dlaruv.f
  2. +5
    -0
      lapack-netlib/SRC/slaruv.f

+ 5
- 0
lapack-netlib/SRC/dlaruv.f View File

@@ -382,6 +382,11 @@
$ 1537 /
* ..
* .. Executable Statements ..
*
* Quick return for N < 1
IF ( N < 1 ) THEN
RETURN
END IF
*
I1 = ISEED( 1 )
I2 = ISEED( 2 )


+ 5
- 0
lapack-netlib/SRC/slaruv.f View File

@@ -382,6 +382,11 @@
$ 1537 /
* ..
* .. Executable Statements ..
*
* Quick return for N < 1
IF ( N < 1 ) THEN
RETURN
END IF
*
I1 = ISEED( 1 )
I2 = ISEED( 2 )


Loading…
Cancel
Save