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

◆ lde()

logical function lde ( double precision, dimension( * ) ri,
double precision, dimension( * ) rj,
integer lr )

Definition at line 2713 of file dblat3.f.

2714*
2715* Tests if two arrays are identical.
2716*
2717* Auxiliary routine for test program for Level 3 Blas.
2718*
2719* -- Written on 8-February-1989.
2720* Jack Dongarra, Argonne National Laboratory.
2721* Iain Duff, AERE Harwell.
2722* Jeremy Du Croz, Numerical Algorithms Group Ltd.
2723* Sven Hammarling, Numerical Algorithms Group Ltd.
2724*
2725* .. Scalar Arguments ..
2726 INTEGER LR
2727* .. Array Arguments ..
2728 DOUBLE PRECISION RI( * ), RJ( * )
2729* .. Local Scalars ..
2730 INTEGER I
2731* .. Executable Statements ..
2732 DO 10 i = 1, lr
2733 IF( ri( i ).NE.rj( i ) )
2734 $ GO TO 20
2735 10 CONTINUE
2736 lde = .true.
2737 GO TO 30
2738 20 CONTINUE
2739 lde = .false.
2740 30 RETURN
2741*
2742* End of LDE
2743*
logical function lde(ri, rj, lr)
Definition dblat2.f:2970
Here is the call graph for this function: