LAPACK  3.10.1
LAPACK: Linear Algebra PACKage

◆ lze()

logical function lze ( complex*16, dimension( * )  RI,
complex*16, dimension( * )  RJ,
integer  LR 
)

Definition at line 3046 of file zblat2.f.

3047 *
3048 * Tests if two arrays are identical.
3049 *
3050 * Auxiliary routine for test program for Level 2 Blas.
3051 *
3052 * -- Written on 10-August-1987.
3053 * Richard Hanson, Sandia National Labs.
3054 * Jeremy Du Croz, NAG Central Office.
3055 *
3056 * .. Scalar Arguments ..
3057  INTEGER LR
3058 * .. Array Arguments ..
3059  COMPLEX*16 RI( * ), RJ( * )
3060 * .. Local Scalars ..
3061  INTEGER I
3062 * .. Executable Statements ..
3063  DO 10 i = 1, lr
3064  IF( ri( i ).NE.rj( i ) )
3065  $ GO TO 20
3066  10 CONTINUE
3067  lze = .true.
3068  GO TO 30
3069  20 CONTINUE
3070  lze = .false.
3071  30 RETURN
3072 *
3073 * End of LZE
3074 *
logical function lze(RI, RJ, LR)
Definition: zblat2.f:3047
Here is the caller graph for this function: