Skip to content

Commit 99fefbe

Browse files
committed
fix typo
1 parent 0d82f77 commit 99fefbe

File tree

4 files changed

+16
-12
lines changed

4 files changed

+16
-12
lines changed

SRC/clahqr.f

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,7 @@
194194
* =====================================================================
195195
SUBROUTINE CLAHQR( WANTT, WANTZ, N, ILO, IHI, H, LDH, W, ILOZ,
196196
$ IHIZ, Z, LDZ, INFO )
197+
IMPLICIT NONE
197198
*
198199
* -- LAPACK auxiliary routine (version 3.7.0) --
199200
* -- LAPACK is a software package provided by Univ. of Tennessee, --
@@ -317,9 +318,9 @@ SUBROUTINE CLAHQR( WANTT, WANTZ, N, ILO, IHI, H, LDH, W, ILOZ,
317318
*
318319
ITMAX = 30 * MAX( 10, NH )
319320
*
320-
* KDFL counts the number of iterations since a deflation
321+
* KDEFL counts the number of iterations since a deflation
321322
*
322-
KDFL = -2
323+
KDEFL = -2
323324
*
324325
* The main loop begins here. I is the loop index and decreases from
325326
* IHI to ILO in steps of 1. Each iteration of the loop works
@@ -564,7 +565,7 @@ SUBROUTINE CLAHQR( WANTT, WANTZ, N, ILO, IHI, H, LDH, W, ILOZ,
564565
*
565566
W( I ) = H( I, I )
566567
* reset deflation counter
567-
KDFL = 0
568+
KDEFL = 0
568569
*
569570
* return to start of the main loop with new value of I.
570571
*

SRC/dlahqr.f

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,7 @@
206206
* =====================================================================
207207
SUBROUTINE DLAHQR( WANTT, WANTZ, N, ILO, IHI, H, LDH, WR, WI,
208208
$ ILOZ, IHIZ, Z, LDZ, INFO )
209+
IMPLICIT NONE
209210
*
210211
* -- LAPACK auxiliary routine (version 3.7.0) --
211212
* -- LAPACK is a software package provided by Univ. of Tennessee, --
@@ -297,9 +298,9 @@ SUBROUTINE DLAHQR( WANTT, WANTZ, N, ILO, IHI, H, LDH, WR, WI,
297298
*
298299
ITMAX = 30 * MAX( 10, NH )
299300
*
300-
* KDFL counts the number of iterations since a deflation
301+
* KDEFL counts the number of iterations since a deflation
301302
*
302-
KDFL = -2
303+
KDEFL = -2
303304
*
304305
* The main loop begins here. I is the loop index and decreases from
305306
* IHI to ILO in steps of 1 or 2. Each iteration of the loop works
@@ -608,7 +609,7 @@ SUBROUTINE DLAHQR( WANTT, WANTZ, N, ILO, IHI, H, LDH, WR, WI,
608609
END IF
609610
END IF
610611
* reset deflation counter
611-
KDFL = 0
612+
KDEFL = 0
612613
*
613614
* return to start of the main loop with new value of I.
614615
*

SRC/slahqr.f

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,7 @@
206206
* =====================================================================
207207
SUBROUTINE SLAHQR( WANTT, WANTZ, N, ILO, IHI, H, LDH, WR, WI,
208208
$ ILOZ, IHIZ, Z, LDZ, INFO )
209+
IMPLICIT NONE
209210
*
210211
* -- LAPACK auxiliary routine (version 3.7.0) --
211212
* -- LAPACK is a software package provided by Univ. of Tennessee, --
@@ -297,9 +298,9 @@ SUBROUTINE SLAHQR( WANTT, WANTZ, N, ILO, IHI, H, LDH, WR, WI,
297298
*
298299
ITMAX = 30 * MAX( 10, NH )
299300
*
300-
* KDFL counts the number of iterations since a deflation
301+
* KDEFL counts the number of iterations since a deflation
301302
*
302-
KDFL = -2
303+
KDEFL = -2
303304
*
304305
* The main loop begins here. I is the loop index and decreases from
305306
* IHI to ILO in steps of 1 or 2. Each iteration of the loop works
@@ -607,7 +608,7 @@ SUBROUTINE SLAHQR( WANTT, WANTZ, N, ILO, IHI, H, LDH, WR, WI,
607608
END IF
608609
END IF
609610
* reset deflation counter
610-
KDFL = 0
611+
KDEFL = 0
611612
*
612613
* return to start of the main loop with new value of I.
613614
*

SRC/zlahqr.f

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,7 @@
194194
* =====================================================================
195195
SUBROUTINE ZLAHQR( WANTT, WANTZ, N, ILO, IHI, H, LDH, W, ILOZ,
196196
$ IHIZ, Z, LDZ, INFO )
197+
IMPLICIT NONE
197198
*
198199
* -- LAPACK auxiliary routine (version 3.7.0) --
199200
* -- LAPACK is a software package provided by Univ. of Tennessee, --
@@ -317,9 +318,9 @@ SUBROUTINE ZLAHQR( WANTT, WANTZ, N, ILO, IHI, H, LDH, W, ILOZ,
317318
*
318319
ITMAX = 30 * MAX( 10, NH )
319320
*
320-
* KDFL counts the number of iterations since a deflation
321+
* KDEFL counts the number of iterations since a deflation
321322
*
322-
KDFL = -2
323+
KDEFL = -2
323324
*
324325
* The main loop begins here. I is the loop index and decreases from
325326
* IHI to ILO in steps of 1. Each iteration of the loop works
@@ -565,7 +566,7 @@ SUBROUTINE ZLAHQR( WANTT, WANTZ, N, ILO, IHI, H, LDH, W, ILOZ,
565566
*
566567
W( I ) = H( I, I )
567568
* reset deflation counter
568-
KDFL = 0
569+
KDEFL = 0
569570
*
570571
* return to start of the main loop with new value of I.
571572
*

0 commit comments

Comments
 (0)