LAPACK 3.12.1
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches

◆ lce()

logical function lce ( complex, dimension( * ) ri,
complex, dimension( * ) rj,
integer lr )

Definition at line 3441 of file cblat3.f.

3442*
3443* Tests if two arrays are identical.
3444*
3445* Auxiliary routine for test program for Level 3 Blas.
3446*
3447* -- Written on 8-February-1989.
3448* Jack Dongarra, Argonne National Laboratory.
3449* Iain Duff, AERE Harwell.
3450* Jeremy Du Croz, Numerical Algorithms Group Ltd.
3451* Sven Hammarling, Numerical Algorithms Group Ltd.
3452*
3453* .. Scalar Arguments ..
3454 INTEGER LR
3455* .. Array Arguments ..
3456 COMPLEX RI( * ), RJ( * )
3457* .. Local Scalars ..
3458 INTEGER I
3459* .. Executable Statements ..
3460 DO 10 i = 1, lr
3461 IF( ri( i ).NE.rj( i ) )
3462 $ GO TO 20
3463 10 CONTINUE
3464 lce = .true.
3465 GO TO 30
3466 20 CONTINUE
3467 lce = .false.
3468 30 RETURN
3469*
3470* End of LCE
3471*
logical function lce(ri, rj, lr)
Definition cblat2.f:3067
Here is the call graph for this function: