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

◆ lse()

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

Definition at line 2322 of file c_sblat3.f.

2323*
2324* Tests if two arrays are identical.
2325*
2326* Auxiliary routine for test program for Level 3 Blas.
2327*
2328* -- Written on 8-February-1989.
2329* Jack Dongarra, Argonne National Laboratory.
2330* Iain Duff, AERE Harwell.
2331* Jeremy Du Croz, Numerical Algorithms Group Ltd.
2332* Sven Hammarling, Numerical Algorithms Group Ltd.
2333*
2334* .. Scalar Arguments ..
2335 INTEGER LR
2336* .. Array Arguments ..
2337 REAL RI( * ), RJ( * )
2338* .. Local Scalars ..
2339 INTEGER I
2340* .. Executable Statements ..
2341 DO 10 i = 1, lr
2342 IF( ri( i ).NE.rj( i ) )
2343 $ GO TO 20
2344 10 CONTINUE
2345 lse = .true.
2346 GO TO 30
2347 20 CONTINUE
2348 lse = .false.
2349 30 RETURN
2350*
2351* End of LSE.
2352*
logical function lse(ri, rj, lr)
Definition sblat2.f:2970
Here is the call graph for this function: