Skip to content

Commit 8b992fb

Browse files
committed
code fixed: wrong intrinsic function in CABS1 definition in ZTREVC3
1 parent 39f707d commit 8b992fb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

SRC/ztrevc3.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,13 +286,13 @@ SUBROUTINE ZTREVC3( SIDE, HOWMNY, SELECT, N, T, LDT, VL, LDVL, VR,
286286
$ ZGEMM, DLABAD, ZLASET, ZLACPY
287287
* ..
288288
* .. Intrinsic Functions ..
289-
INTRINSIC ABS, DBLE, DCMPLX, CONJG, AIMAG, MAX
289+
INTRINSIC ABS, DBLE, DCMPLX, CONJG, DIMAG, MAX
290290
* ..
291291
* .. Statement Functions ..
292292
DOUBLE PRECISION CABS1
293293
* ..
294294
* .. Statement Function definitions ..
295-
CABS1( CDUM ) = ABS( DBLE( CDUM ) ) + ABS( AIMAG( CDUM ) )
295+
CABS1( CDUM ) = ABS( DBLE( CDUM ) ) + ABS( DIMAG( CDUM ) )
296296
* ..
297297
* .. Executable Statements ..
298298
*

0 commit comments

Comments
 (0)