Skip to content

Commit

Permalink
fix intent in xlaqz1
Browse files Browse the repository at this point in the history
  • Loading branch information
thijssteel committed Feb 14, 2021
1 parent e29a36b commit 9e18f6b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
12 changes: 6 additions & 6 deletions SRC/dlaqz1.f
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
*
* Arguments
* INTEGER, INTENT( IN ) :: LDA, LDB
* DOUBLE PRECISION, INTENT( IN ) :: A( LDA, * ), B( LDB, * )
* DOUBLE PRECISION, INTENT( OUT ) :: SR1, SR2, SI, BETA1, BETA2,
* $ V( * )
* DOUBLE PRECISION, INTENT( IN ) :: A( LDA, * ), B( LDB, * ), SR1,
* $ SR2, SI, BETA1, BETA2
* DOUBLE PRECISION, INTENT( OUT ) :: V( * )
* ..
*
*
Expand Down Expand Up @@ -128,9 +128,9 @@ SUBROUTINE DLAQZ1( A, LDA, B, LDB, SR1, SR2, SI, BETA1, BETA2,
*
* Arguments
INTEGER, INTENT( IN ) :: LDA, LDB
DOUBLE PRECISION, INTENT( IN ) :: A( LDA, * ), B( LDB, * )
DOUBLE PRECISION, INTENT( OUT ) :: SR1, SR2, SI, BETA1, BETA2,
$ V( * )
DOUBLE PRECISION, INTENT( IN ) :: A( LDA, * ), B( LDB, * ), SR1,
$ SR2, SI, BETA1, BETA2
DOUBLE PRECISION, INTENT( OUT ) :: V( * )
*
* Parameters
DOUBLE PRECISION :: ZERO, ONE, HALF
Expand Down
10 changes: 6 additions & 4 deletions SRC/slaqz1.f
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@
*
* Arguments
* INTEGER, INTENT( IN ) :: LDA, LDB
* REAL, INTENT( IN ) :: A( LDA, * ), B( LDB, * )
* REAL, INTENT( OUT ) :: SR1, SR2, SI, BETA1, BETA2, V( * )
* REAL, INTENT( IN ) :: A( LDA, * ), B( LDB, * ), SR1, SR2, SI,
* $ BETA1, BETA2
* REAL, INTENT( OUT ) :: V( * )
* ..
*
*
Expand Down Expand Up @@ -127,8 +128,9 @@ SUBROUTINE SLAQZ1( A, LDA, B, LDB, SR1, SR2, SI, BETA1, BETA2,
*
* Arguments
INTEGER, INTENT( IN ) :: LDA, LDB
REAL, INTENT( IN ) :: A( LDA, * ), B( LDB, * )
REAL, INTENT( OUT ) :: SR1, SR2, SI, BETA1, BETA2, V( * )
REAL, INTENT( IN ) :: A( LDA, * ), B( LDB, * ), SR1, SR2, SI,
$ BETA1, BETA2
REAL, INTENT( OUT ) :: V( * )
*
* Parameters
REAL :: ZERO, ONE, HALF
Expand Down

0 comments on commit 9e18f6b

Please sign in to comment.