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
Applies changes from @zerothi at #225
  • Loading branch information
weslleyspereira committed May 24, 2023
commit 8db97d347dc9b887a01f1b56dd2b346937b9d9ed
5 changes: 5 additions & 0 deletions SRC/dlaruv.f
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,11 @@ SUBROUTINE DLARUV( ISEED, N, X )
$ 1537 /
* ..
* .. Executable Statements ..
*
* Quick return for N < 1
IF ( N < 1 ) THEN
RETURN
END IF
*
I1 = ISEED( 1 )
I2 = ISEED( 2 )
Expand Down
5 changes: 5 additions & 0 deletions SRC/slaruv.f
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,11 @@ SUBROUTINE SLARUV( ISEED, N, X )
$ 1537 /
* ..
* .. Executable Statements ..
*
* Quick return for N < 1
IF ( N < 1 ) THEN
RETURN
END IF
*
I1 = ISEED( 1 )
I2 = ISEED( 2 )
Expand Down