Skip to content

Commit

Permalink
remove recursive qualifier
Browse files Browse the repository at this point in the history
  • Loading branch information
akohlmey committed Nov 9, 2024
1 parent 8ef2b6e commit 35a1c51
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion fortran/dgetrf2.f
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
*> \ingroup getrf2
*
* =====================================================================
RECURSIVE SUBROUTINE DGETRF2( M, N, A, LDA, IPIV, INFO )
SUBROUTINE DGETRF2( M, N, A, LDA, IPIV, INFO )
*
* -- LAPACK computational routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
2 changes: 1 addition & 1 deletion fortran/dpotrf2.f
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
*> \ingroup potrf2
*
* =====================================================================
RECURSIVE SUBROUTINE DPOTRF2( UPLO, N, A, LDA, INFO )
SUBROUTINE DPOTRF2( UPLO, N, A, LDA, INFO )
*
* -- LAPACK computational routine --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
2 changes: 1 addition & 1 deletion fortran/zgetrf2.f
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
*> \ingroup complex16GEcomputational
*
* =====================================================================
RECURSIVE SUBROUTINE ZGETRF2( M, N, A, LDA, IPIV, INFO )
SUBROUTINE ZGETRF2( M, N, A, LDA, IPIV, INFO )
*
* -- LAPACK computational routine (version 3.7.0) --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down
2 changes: 1 addition & 1 deletion fortran/zpotrf2.f
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
*> \ingroup complex16POcomputational
*
* =====================================================================
RECURSIVE SUBROUTINE ZPOTRF2( UPLO, N, A, LDA, INFO )
SUBROUTINE ZPOTRF2( UPLO, N, A, LDA, INFO )
*
* -- LAPACK computational routine (version 3.7.0) --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
Expand Down

0 comments on commit 35a1c51

Please sign in to comment.