LAPACK 3.12.1
LAPACK: Linear Algebra PACKage
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages

◆ lse()

logical function lse ( real, dimension( * ) ri,
real, dimension( * ) rj,
integer lr )

Definition at line 2713 of file sblat3.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 REAL 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 lse = .true.
2737 GO TO 30
2738 20 CONTINUE
2739 lse = .false.
2740 30 RETURN
2741*
2742* End of LSE
2743*
logical function lse(ri, rj, lr)
Definition sblat2.f:2970
Here is the call graph for this function: