Skip to content

Commit 8caa3ff

Browse files
committed
implicit none in SRC/c
1 parent 4c76e9d commit 8caa3ff

File tree

456 files changed

+457
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

456 files changed

+457
-3
lines changed

SRC/cbbcsd.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -328,6 +328,7 @@ SUBROUTINE CBBCSD( JOBU1, JOBU2, JOBV1T, JOBV2T, TRANS, M, P,
328328
$ THETA, PHI, U1, LDU1, U2, LDU2, V1T, LDV1T,
329329
$ V2T, LDV2T, B11D, B11E, B12D, B12E, B21D, B21E,
330330
$ B22D, B22E, RWORK, LRWORK, INFO )
331+
IMPLICIT NONE
331332
*
332333
* -- LAPACK computational routine --
333334
* -- LAPACK is a software package provided by Univ. of Tennessee, --

SRC/cbdsqr.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,7 @@
230230
* =====================================================================
231231
SUBROUTINE CBDSQR( UPLO, N, NCVT, NRU, NCC, D, E, VT, LDVT, U,
232232
$ LDU, C, LDC, RWORK, INFO )
233+
IMPLICIT NONE
233234
*
234235
* -- LAPACK computational routine --
235236
* -- LAPACK is a software package provided by Univ. of Tennessee, --

SRC/cgbbrd.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,7 @@
188188
* =====================================================================
189189
SUBROUTINE CGBBRD( VECT, M, N, NCC, KL, KU, AB, LDAB, D, E, Q,
190190
$ LDQ, PT, LDPT, C, LDC, WORK, RWORK, INFO )
191+
IMPLICIT NONE
191192
*
192193
* -- LAPACK computational routine --
193194
* -- LAPACK is a software package provided by Univ. of Tennessee, --

SRC/cgbcon.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@
143143
SUBROUTINE CGBCON( NORM, N, KL, KU, AB, LDAB, IPIV, ANORM,
144144
$ RCOND,
145145
$ WORK, RWORK, INFO )
146+
IMPLICIT NONE
146147
*
147148
* -- LAPACK computational routine --
148149
* -- LAPACK is a software package provided by Univ. of Tennessee, --

SRC/cgbequ.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@
150150
SUBROUTINE CGBEQU( M, N, KL, KU, AB, LDAB, R, C, ROWCND,
151151
$ COLCND,
152152
$ AMAX, INFO )
153+
IMPLICIT NONE
153154
*
154155
* -- LAPACK computational routine --
155156
* -- LAPACK is a software package provided by Univ. of Tennessee, --

SRC/cgbequb.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@
157157
SUBROUTINE CGBEQUB( M, N, KL, KU, AB, LDAB, R, C, ROWCND,
158158
$ COLCND,
159159
$ AMAX, INFO )
160+
IMPLICIT NONE
160161
*
161162
* -- LAPACK computational routine --
162163
* -- LAPACK is a software package provided by Univ. of Tennessee, --

SRC/cgbrfs.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,7 @@ SUBROUTINE CGBRFS( TRANS, N, KL, KU, NRHS, AB, LDAB, AFB,
202202
$ LDAFB,
203203
$ IPIV, B, LDB, X, LDX, FERR, BERR, WORK, RWORK,
204204
$ INFO )
205+
IMPLICIT NONE
205206
*
206207
* -- LAPACK computational routine --
207208
* -- LAPACK is a software package provided by Univ. of Tennessee, --

SRC/cgbrfsx.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -436,6 +436,7 @@ SUBROUTINE CGBRFSX( TRANS, EQUED, N, KL, KU, NRHS, AB, LDAB,
436436
$ BERR, N_ERR_BNDS, ERR_BNDS_NORM,
437437
$ ERR_BNDS_COMP, NPARAMS, PARAMS, WORK, RWORK,
438438
$ INFO )
439+
IMPLICIT NONE
439440
*
440441
* -- LAPACK computational routine --
441442
* -- LAPACK is a software package provided by Univ. of Tennessee, --

SRC/cgbsv.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@
158158
* =====================================================================
159159
SUBROUTINE CGBSV( N, KL, KU, NRHS, AB, LDAB, IPIV, B, LDB,
160160
$ INFO )
161+
IMPLICIT NONE
161162
*
162163
* -- LAPACK driver routine --
163164
* -- LAPACK is a software package provided by Univ. of Tennessee, --

SRC/cgbsvx.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -365,6 +365,7 @@
365365
SUBROUTINE CGBSVX( FACT, TRANS, N, KL, KU, NRHS, AB, LDAB, AFB,
366366
$ LDAFB, IPIV, EQUED, R, C, B, LDB, X, LDX,
367367
$ RCOND, FERR, BERR, WORK, RWORK, INFO )
368+
IMPLICIT NONE
368369
*
369370
* -- LAPACK driver routine --
370371
* -- LAPACK is a software package provided by Univ. of Tennessee, --

0 commit comments

Comments
 (0)