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

◆ lse()

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

Definition at line 2340 of file c_sblat3.f.

2341*
2342* Tests if two arrays are identical.
2343*
2344* Auxiliary routine for test program for Level 3 Blas.
2345*
2346* -- Written on 8-February-1989.
2347* Jack Dongarra, Argonne National Laboratory.
2348* Iain Duff, AERE Harwell.
2349* Jeremy Du Croz, Numerical Algorithms Group Ltd.
2350* Sven Hammarling, Numerical Algorithms Group Ltd.
2351*
2352* .. Scalar Arguments ..
2353 INTEGER LR
2354* .. Array Arguments ..
2355 REAL RI( * ), RJ( * )
2356* .. Local Scalars ..
2357 INTEGER I
2358* .. Executable Statements ..
2359 DO 10 i = 1, lr
2360 IF( ri( i ).NE.rj( i ) )
2361 $ GO TO 20
2362 10 CONTINUE
2363 lse = .true.
2364 GO TO 30
2365 20 CONTINUE
2366 lse = .false.
2367 30 RETURN
2368*
2369* End of LSE.
2370*
logical function lse(ri, rj, lr)
Definition sblat2.f:2970
Here is the call graph for this function: