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 2637 of file c_cblat3.f.

2638*
2639* Tests if two arrays are identical.
2640*
2641* Auxiliary routine for test program for Level 3 Blas.
2642*
2643* -- Written on 8-February-1989.
2644* Jack Dongarra, Argonne National Laboratory.
2645* Iain Duff, AERE Harwell.
2646* Jeremy Du Croz, Numerical Algorithms Group Ltd.
2647* Sven Hammarling, Numerical Algorithms Group Ltd.
2648*
2649* .. Scalar Arguments ..
2650 INTEGER LR
2651* .. Array Arguments ..
2652 COMPLEX RI( * ), RJ( * )
2653* .. Local Scalars ..
2654 INTEGER I
2655* .. Executable Statements ..
2656 DO 10 i = 1, lr
2657 IF( ri( i ).NE.rj( i ) )
2658 $ GO TO 20
2659 10 CONTINUE
2660 lce = .true.
2661 GO TO 30
2662 20 CONTINUE
2663 lce = .false.
2664 30 RETURN
2665*
2666* End of LCE.
2667*
logical function lce(ri, rj, lr)
Definition cblat2.f:3067
Here is the call graph for this function: