C_LAPACK: Fixes to make it compile with MSVC (#3605)
[platform/upstream/openblas.git] / lapack-netlib / SRC / dstemr.c
1 #include <math.h>
2 #include <stdlib.h>
3 #include <string.h>
4 #include <stdio.h>
5 #include <complex.h>
6 #ifdef complex
7 #undef complex
8 #endif
9 #ifdef I
10 #undef I
11 #endif
12
13 #if defined(_WIN64)
14 typedef long long BLASLONG;
15 typedef unsigned long long BLASULONG;
16 #else
17 typedef long BLASLONG;
18 typedef unsigned long BLASULONG;
19 #endif
20
21 #ifdef LAPACK_ILP64
22 typedef BLASLONG blasint;
23 #if defined(_WIN64)
24 #define blasabs(x) llabs(x)
25 #else
26 #define blasabs(x) labs(x)
27 #endif
28 #else
29 typedef int blasint;
30 #define blasabs(x) abs(x)
31 #endif
32
33 typedef blasint integer;
34
35 typedef unsigned int uinteger;
36 typedef char *address;
37 typedef short int shortint;
38 typedef float real;
39 typedef double doublereal;
40 typedef struct { real r, i; } complex;
41 typedef struct { doublereal r, i; } doublecomplex;
42 #ifdef _MSC_VER
43 static inline _Fcomplex Cf(complex *z) {_Fcomplex zz={z->r , z->i}; return zz;}
44 static inline _Dcomplex Cd(doublecomplex *z) {_Dcomplex zz={z->r , z->i};return zz;}
45 static inline _Fcomplex * _pCf(complex *z) {return (_Fcomplex*)z;}
46 static inline _Dcomplex * _pCd(doublecomplex *z) {return (_Dcomplex*)z;}
47 #else
48 static inline _Complex float Cf(complex *z) {return z->r + z->i*_Complex_I;}
49 static inline _Complex double Cd(doublecomplex *z) {return z->r + z->i*_Complex_I;}
50 static inline _Complex float * _pCf(complex *z) {return (_Complex float*)z;}
51 static inline _Complex double * _pCd(doublecomplex *z) {return (_Complex double*)z;}
52 #endif
53 #define pCf(z) (*_pCf(z))
54 #define pCd(z) (*_pCd(z))
55 typedef int logical;
56 typedef short int shortlogical;
57 typedef char logical1;
58 typedef char integer1;
59
60 #define TRUE_ (1)
61 #define FALSE_ (0)
62
63 /* Extern is for use with -E */
64 #ifndef Extern
65 #define Extern extern
66 #endif
67
68 /* I/O stuff */
69
70 typedef int flag;
71 typedef int ftnlen;
72 typedef int ftnint;
73
74 /*external read, write*/
75 typedef struct
76 {       flag cierr;
77         ftnint ciunit;
78         flag ciend;
79         char *cifmt;
80         ftnint cirec;
81 } cilist;
82
83 /*internal read, write*/
84 typedef struct
85 {       flag icierr;
86         char *iciunit;
87         flag iciend;
88         char *icifmt;
89         ftnint icirlen;
90         ftnint icirnum;
91 } icilist;
92
93 /*open*/
94 typedef struct
95 {       flag oerr;
96         ftnint ounit;
97         char *ofnm;
98         ftnlen ofnmlen;
99         char *osta;
100         char *oacc;
101         char *ofm;
102         ftnint orl;
103         char *oblnk;
104 } olist;
105
106 /*close*/
107 typedef struct
108 {       flag cerr;
109         ftnint cunit;
110         char *csta;
111 } cllist;
112
113 /*rewind, backspace, endfile*/
114 typedef struct
115 {       flag aerr;
116         ftnint aunit;
117 } alist;
118
119 /* inquire */
120 typedef struct
121 {       flag inerr;
122         ftnint inunit;
123         char *infile;
124         ftnlen infilen;
125         ftnint  *inex;  /*parameters in standard's order*/
126         ftnint  *inopen;
127         ftnint  *innum;
128         ftnint  *innamed;
129         char    *inname;
130         ftnlen  innamlen;
131         char    *inacc;
132         ftnlen  inacclen;
133         char    *inseq;
134         ftnlen  inseqlen;
135         char    *indir;
136         ftnlen  indirlen;
137         char    *infmt;
138         ftnlen  infmtlen;
139         char    *inform;
140         ftnint  informlen;
141         char    *inunf;
142         ftnlen  inunflen;
143         ftnint  *inrecl;
144         ftnint  *innrec;
145         char    *inblank;
146         ftnlen  inblanklen;
147 } inlist;
148
149 #define VOID void
150
151 union Multitype {       /* for multiple entry points */
152         integer1 g;
153         shortint h;
154         integer i;
155         /* longint j; */
156         real r;
157         doublereal d;
158         complex c;
159         doublecomplex z;
160         };
161
162 typedef union Multitype Multitype;
163
164 struct Vardesc {        /* for Namelist */
165         char *name;
166         char *addr;
167         ftnlen *dims;
168         int  type;
169         };
170 typedef struct Vardesc Vardesc;
171
172 struct Namelist {
173         char *name;
174         Vardesc **vars;
175         int nvars;
176         };
177 typedef struct Namelist Namelist;
178
179 #define abs(x) ((x) >= 0 ? (x) : -(x))
180 #define dabs(x) (fabs(x))
181 #define f2cmin(a,b) ((a) <= (b) ? (a) : (b))
182 #define f2cmax(a,b) ((a) >= (b) ? (a) : (b))
183 #define dmin(a,b) (f2cmin(a,b))
184 #define dmax(a,b) (f2cmax(a,b))
185 #define bit_test(a,b)   ((a) >> (b) & 1)
186 #define bit_clear(a,b)  ((a) & ~((uinteger)1 << (b)))
187 #define bit_set(a,b)    ((a) |  ((uinteger)1 << (b)))
188
189 #define abort_() { sig_die("Fortran abort routine called", 1); }
190 #define c_abs(z) (cabsf(Cf(z)))
191 #define c_cos(R,Z) { pCf(R)=ccos(Cf(Z)); }
192 #ifdef _MSC_VER
193 #define c_div(c, a, b) {Cf(c)._Val[0] = (Cf(a)._Val[0]/Cf(b)._Val[0]); Cf(c)._Val[1]=(Cf(a)._Val[1]/Cf(b)._Val[1]);}
194 #define z_div(c, a, b) {Cd(c)._Val[0] = (Cd(a)._Val[0]/Cd(b)._Val[0]); Cd(c)._Val[1]=(Cd(a)._Val[1]/df(b)._Val[1]);}
195 #else
196 #define c_div(c, a, b) {pCf(c) = Cf(a)/Cf(b);}
197 #define z_div(c, a, b) {pCd(c) = Cd(a)/Cd(b);}
198 #endif
199 #define c_exp(R, Z) {pCf(R) = cexpf(Cf(Z));}
200 #define c_log(R, Z) {pCf(R) = clogf(Cf(Z));}
201 #define c_sin(R, Z) {pCf(R) = csinf(Cf(Z));}
202 //#define c_sqrt(R, Z) {*(R) = csqrtf(Cf(Z));}
203 #define c_sqrt(R, Z) {pCf(R) = csqrtf(Cf(Z));}
204 #define d_abs(x) (fabs(*(x)))
205 #define d_acos(x) (acos(*(x)))
206 #define d_asin(x) (asin(*(x)))
207 #define d_atan(x) (atan(*(x)))
208 #define d_atn2(x, y) (atan2(*(x),*(y)))
209 #define d_cnjg(R, Z) { pCd(R) = conj(Cd(Z)); }
210 #define r_cnjg(R, Z) { pCf(R) = conjf(Cf(Z)); }
211 #define d_cos(x) (cos(*(x)))
212 #define d_cosh(x) (cosh(*(x)))
213 #define d_dim(__a, __b) ( *(__a) > *(__b) ? *(__a) - *(__b) : 0.0 )
214 #define d_exp(x) (exp(*(x)))
215 #define d_imag(z) (cimag(Cd(z)))
216 #define r_imag(z) (cimagf(Cf(z)))
217 #define d_int(__x) (*(__x)>0 ? floor(*(__x)) : -floor(- *(__x)))
218 #define r_int(__x) (*(__x)>0 ? floor(*(__x)) : -floor(- *(__x)))
219 #define d_lg10(x) ( 0.43429448190325182765 * log(*(x)) )
220 #define r_lg10(x) ( 0.43429448190325182765 * log(*(x)) )
221 #define d_log(x) (log(*(x)))
222 #define d_mod(x, y) (fmod(*(x), *(y)))
223 #define u_nint(__x) ((__x)>=0 ? floor((__x) + .5) : -floor(.5 - (__x)))
224 #define d_nint(x) u_nint(*(x))
225 #define u_sign(__a,__b) ((__b) >= 0 ? ((__a) >= 0 ? (__a) : -(__a)) : -((__a) >= 0 ? (__a) : -(__a)))
226 #define d_sign(a,b) u_sign(*(a),*(b))
227 #define r_sign(a,b) u_sign(*(a),*(b))
228 #define d_sin(x) (sin(*(x)))
229 #define d_sinh(x) (sinh(*(x)))
230 #define d_sqrt(x) (sqrt(*(x)))
231 #define d_tan(x) (tan(*(x)))
232 #define d_tanh(x) (tanh(*(x)))
233 #define i_abs(x) abs(*(x))
234 #define i_dnnt(x) ((integer)u_nint(*(x)))
235 #define i_len(s, n) (n)
236 #define i_nint(x) ((integer)u_nint(*(x)))
237 #define i_sign(a,b) ((integer)u_sign((integer)*(a),(integer)*(b)))
238 #define pow_dd(ap, bp) ( pow(*(ap), *(bp)))
239 #define pow_si(B,E) spow_ui(*(B),*(E))
240 #define pow_ri(B,E) spow_ui(*(B),*(E))
241 #define pow_di(B,E) dpow_ui(*(B),*(E))
242 #define pow_zi(p, a, b) {pCd(p) = zpow_ui(Cd(a), *(b));}
243 #define pow_ci(p, a, b) {pCf(p) = cpow_ui(Cf(a), *(b));}
244 #define pow_zz(R,A,B) {pCd(R) = cpow(Cd(A),*(B));}
245 #define s_cat(lpp, rpp, rnp, np, llp) {         ftnlen i, nc, ll; char *f__rp, *lp;     ll = (llp); lp = (lpp);         for(i=0; i < (int)*(np); ++i) {                 nc = ll;                if((rnp)[i] < nc) nc = (rnp)[i];                ll -= nc;               f__rp = (rpp)[i];               while(--nc >= 0) *lp++ = *(f__rp)++;         }  while(--ll >= 0) *lp++ = ' '; }
246 #define s_cmp(a,b,c,d) ((integer)strncmp((a),(b),f2cmin((c),(d))))
247 #define s_copy(A,B,C,D) { int __i,__m; for (__i=0, __m=f2cmin((C),(D)); __i<__m && (B)[__i] != 0; ++__i) (A)[__i] = (B)[__i]; }
248 #define sig_die(s, kill) { exit(1); }
249 #define s_stop(s, n) {exit(0);}
250 static char junk[] = "\n@(#)LIBF77 VERSION 19990503\n";
251 #define z_abs(z) (cabs(Cd(z)))
252 #define z_exp(R, Z) {pCd(R) = cexp(Cd(Z));}
253 #define z_sqrt(R, Z) {pCd(R) = csqrt(Cd(Z));}
254 #define myexit_() break;
255 #define mycycle() continue;
256 #define myceiling(w) {ceil(w)}
257 #define myhuge(w) {HUGE_VAL}
258 //#define mymaxloc_(w,s,e,n) {if (sizeof(*(w)) == sizeof(double)) dmaxloc_((w),*(s),*(e),n); else dmaxloc_((w),*(s),*(e),n);}
259 #define mymaxloc(w,s,e,n) {dmaxloc_(w,*(s),*(e),n)}
260
261 /* procedure parameter types for -A and -C++ */
262
263 #define F2C_proc_par_types 1
264 #ifdef __cplusplus
265 typedef logical (*L_fp)(...);
266 #else
267 typedef logical (*L_fp)();
268 #endif
269
270 static float spow_ui(float x, integer n) {
271         float pow=1.0; unsigned long int u;
272         if(n != 0) {
273                 if(n < 0) n = -n, x = 1/x;
274                 for(u = n; ; ) {
275                         if(u & 01) pow *= x;
276                         if(u >>= 1) x *= x;
277                         else break;
278                 }
279         }
280         return pow;
281 }
282 static double dpow_ui(double x, integer n) {
283         double pow=1.0; unsigned long int u;
284         if(n != 0) {
285                 if(n < 0) n = -n, x = 1/x;
286                 for(u = n; ; ) {
287                         if(u & 01) pow *= x;
288                         if(u >>= 1) x *= x;
289                         else break;
290                 }
291         }
292         return pow;
293 }
294 #ifdef _MSC_VER
295 static _Fcomplex cpow_ui(complex x, integer n) {
296         complex pow={1.0,0.0}; unsigned long int u;
297                 if(n != 0) {
298                 if(n < 0) n = -n, x.r = 1/x.r, x.i=1/x.i;
299                 for(u = n; ; ) {
300                         if(u & 01) pow.r *= x.r, pow.i *= x.i;
301                         if(u >>= 1) x.r *= x.r, x.i *= x.i;
302                         else break;
303                 }
304         }
305         _Fcomplex p={pow.r, pow.i};
306         return p;
307 }
308 #else
309 static _Complex float cpow_ui(_Complex float x, integer n) {
310         _Complex float pow=1.0; unsigned long int u;
311         if(n != 0) {
312                 if(n < 0) n = -n, x = 1/x;
313                 for(u = n; ; ) {
314                         if(u & 01) pow *= x;
315                         if(u >>= 1) x *= x;
316                         else break;
317                 }
318         }
319         return pow;
320 }
321 #endif
322 #ifdef _MSC_VER
323 static _Dcomplex zpow_ui(_Dcomplex x, integer n) {
324         _Dcomplex pow={1.0,0.0}; unsigned long int u;
325         if(n != 0) {
326                 if(n < 0) n = -n, x._Val[0] = 1/x._Val[0], x._Val[1] =1/x._Val[1];
327                 for(u = n; ; ) {
328                         if(u & 01) pow._Val[0] *= x._Val[0], pow._Val[1] *= x._Val[1];
329                         if(u >>= 1) x._Val[0] *= x._Val[0], x._Val[1] *= x._Val[1];
330                         else break;
331                 }
332         }
333         _Dcomplex p = {pow._Val[0], pow._Val[1]};
334         return p;
335 }
336 #else
337 static _Complex double zpow_ui(_Complex double x, integer n) {
338         _Complex double pow=1.0; unsigned long int u;
339         if(n != 0) {
340                 if(n < 0) n = -n, x = 1/x;
341                 for(u = n; ; ) {
342                         if(u & 01) pow *= x;
343                         if(u >>= 1) x *= x;
344                         else break;
345                 }
346         }
347         return pow;
348 }
349 #endif
350 static integer pow_ii(integer x, integer n) {
351         integer pow; unsigned long int u;
352         if (n <= 0) {
353                 if (n == 0 || x == 1) pow = 1;
354                 else if (x != -1) pow = x == 0 ? 1/x : 0;
355                 else n = -n;
356         }
357         if ((n > 0) || !(n == 0 || x == 1 || x != -1)) {
358                 u = n;
359                 for(pow = 1; ; ) {
360                         if(u & 01) pow *= x;
361                         if(u >>= 1) x *= x;
362                         else break;
363                 }
364         }
365         return pow;
366 }
367 static integer dmaxloc_(double *w, integer s, integer e, integer *n)
368 {
369         double m; integer i, mi;
370         for(m=w[s-1], mi=s, i=s+1; i<=e; i++)
371                 if (w[i-1]>m) mi=i ,m=w[i-1];
372         return mi-s+1;
373 }
374 static integer smaxloc_(float *w, integer s, integer e, integer *n)
375 {
376         float m; integer i, mi;
377         for(m=w[s-1], mi=s, i=s+1; i<=e; i++)
378                 if (w[i-1]>m) mi=i ,m=w[i-1];
379         return mi-s+1;
380 }
381 static inline void cdotc_(complex *z, integer *n_, complex *x, integer *incx_, complex *y, integer *incy_) {
382         integer n = *n_, incx = *incx_, incy = *incy_, i;
383 #ifdef _MSC_VER
384         _Fcomplex zdotc = {0.0, 0.0};
385         if (incx == 1 && incy == 1) {
386                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
387                         zdotc._Val[0] += conjf(Cf(&x[i]))._Val[0] * Cf(&y[i])._Val[0];
388                         zdotc._Val[1] += conjf(Cf(&x[i]))._Val[1] * Cf(&y[i])._Val[1];
389                 }
390         } else {
391                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
392                         zdotc._Val[0] += conjf(Cf(&x[i*incx]))._Val[0] * Cf(&y[i*incy])._Val[0];
393                         zdotc._Val[1] += conjf(Cf(&x[i*incx]))._Val[1] * Cf(&y[i*incy])._Val[1];
394                 }
395         }
396         pCf(z) = zdotc;
397 }
398 #else
399         _Complex float zdotc = 0.0;
400         if (incx == 1 && incy == 1) {
401                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
402                         zdotc += conjf(Cf(&x[i])) * Cf(&y[i]);
403                 }
404         } else {
405                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
406                         zdotc += conjf(Cf(&x[i*incx])) * Cf(&y[i*incy]);
407                 }
408         }
409         pCf(z) = zdotc;
410 }
411 #endif
412 static inline void zdotc_(doublecomplex *z, integer *n_, doublecomplex *x, integer *incx_, doublecomplex *y, integer *incy_) {
413         integer n = *n_, incx = *incx_, incy = *incy_, i;
414 #ifdef _MSC_VER
415         _Dcomplex zdotc = {0.0, 0.0};
416         if (incx == 1 && incy == 1) {
417                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
418                         zdotc._Val[0] += conj(Cd(&x[i]))._Val[0] * Cd(&y[i])._Val[0];
419                         zdotc._Val[1] += conj(Cd(&x[i]))._Val[1] * Cd(&y[i])._Val[1];
420                 }
421         } else {
422                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
423                         zdotc._Val[0] += conj(Cd(&x[i*incx]))._Val[0] * Cd(&y[i*incy])._Val[0];
424                         zdotc._Val[1] += conj(Cd(&x[i*incx]))._Val[1] * Cd(&y[i*incy])._Val[1];
425                 }
426         }
427         pCd(z) = zdotc;
428 }
429 #else
430         _Complex double zdotc = 0.0;
431         if (incx == 1 && incy == 1) {
432                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
433                         zdotc += conj(Cd(&x[i])) * Cd(&y[i]);
434                 }
435         } else {
436                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
437                         zdotc += conj(Cd(&x[i*incx])) * Cd(&y[i*incy]);
438                 }
439         }
440         pCd(z) = zdotc;
441 }
442 #endif  
443 static inline void cdotu_(complex *z, integer *n_, complex *x, integer *incx_, complex *y, integer *incy_) {
444         integer n = *n_, incx = *incx_, incy = *incy_, i;
445 #ifdef _MSC_VER
446         _Fcomplex zdotc = {0.0, 0.0};
447         if (incx == 1 && incy == 1) {
448                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
449                         zdotc._Val[0] += Cf(&x[i])._Val[0] * Cf(&y[i])._Val[0];
450                         zdotc._Val[1] += Cf(&x[i])._Val[1] * Cf(&y[i])._Val[1];
451                 }
452         } else {
453                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
454                         zdotc._Val[0] += Cf(&x[i*incx])._Val[0] * Cf(&y[i*incy])._Val[0];
455                         zdotc._Val[1] += Cf(&x[i*incx])._Val[1] * Cf(&y[i*incy])._Val[1];
456                 }
457         }
458         pCf(z) = zdotc;
459 }
460 #else
461         _Complex float zdotc = 0.0;
462         if (incx == 1 && incy == 1) {
463                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
464                         zdotc += Cf(&x[i]) * Cf(&y[i]);
465                 }
466         } else {
467                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
468                         zdotc += Cf(&x[i*incx]) * Cf(&y[i*incy]);
469                 }
470         }
471         pCf(z) = zdotc;
472 }
473 #endif
474 static inline void zdotu_(doublecomplex *z, integer *n_, doublecomplex *x, integer *incx_, doublecomplex *y, integer *incy_) {
475         integer n = *n_, incx = *incx_, incy = *incy_, i;
476 #ifdef _MSC_VER
477         _Dcomplex zdotc = {0.0, 0.0};
478         if (incx == 1 && incy == 1) {
479                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
480                         zdotc._Val[0] += Cd(&x[i])._Val[0] * Cd(&y[i])._Val[0];
481                         zdotc._Val[1] += Cd(&x[i])._Val[1] * Cd(&y[i])._Val[1];
482                 }
483         } else {
484                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
485                         zdotc._Val[0] += Cd(&x[i*incx])._Val[0] * Cd(&y[i*incy])._Val[0];
486                         zdotc._Val[1] += Cd(&x[i*incx])._Val[1] * Cd(&y[i*incy])._Val[1];
487                 }
488         }
489         pCd(z) = zdotc;
490 }
491 #else
492         _Complex double zdotc = 0.0;
493         if (incx == 1 && incy == 1) {
494                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
495                         zdotc += Cd(&x[i]) * Cd(&y[i]);
496                 }
497         } else {
498                 for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
499                         zdotc += Cd(&x[i*incx]) * Cd(&y[i*incy]);
500                 }
501         }
502         pCd(z) = zdotc;
503 }
504 #endif
505 /*  -- translated by f2c (version 20000121).
506    You must link the resulting object file with the libraries:
507         -lf2c -lm   (in that order)
508 */
509
510
511
512
513 /* Table of constant values */
514
515 static integer c__1 = 1;
516 static doublereal c_b18 = .001;
517
518 /* > \brief \b DSTEMR */
519
520 /*  =========== DOCUMENTATION =========== */
521
522 /* Online html documentation available at */
523 /*            http://www.netlib.org/lapack/explore-html/ */
524
525 /* > \htmlonly */
526 /* > Download DSTEMR + dependencies */
527 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/dstemr.
528 f"> */
529 /* > [TGZ]</a> */
530 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/dstemr.
531 f"> */
532 /* > [ZIP]</a> */
533 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/dstemr.
534 f"> */
535 /* > [TXT]</a> */
536 /* > \endhtmlonly */
537
538 /*  Definition: */
539 /*  =========== */
540
541 /*       SUBROUTINE DSTEMR( JOBZ, RANGE, N, D, E, VL, VU, IL, IU, */
542 /*                          M, W, Z, LDZ, NZC, ISUPPZ, TRYRAC, WORK, LWORK, */
543 /*                          IWORK, LIWORK, INFO ) */
544
545 /*       CHARACTER          JOBZ, RANGE */
546 /*       LOGICAL            TRYRAC */
547 /*       INTEGER            IL, INFO, IU, LDZ, NZC, LIWORK, LWORK, M, N */
548 /*       DOUBLE PRECISION VL, VU */
549 /*       INTEGER            ISUPPZ( * ), IWORK( * ) */
550 /*       DOUBLE PRECISION   D( * ), E( * ), W( * ), WORK( * ) */
551 /*       DOUBLE PRECISION   Z( LDZ, * ) */
552
553
554 /* > \par Purpose: */
555 /*  ============= */
556 /* > */
557 /* > \verbatim */
558 /* > */
559 /* > DSTEMR computes selected eigenvalues and, optionally, eigenvectors */
560 /* > of a real symmetric tridiagonal matrix T. Any such unreduced matrix has */
561 /* > a well defined set of pairwise different real eigenvalues, the corresponding */
562 /* > real eigenvectors are pairwise orthogonal. */
563 /* > */
564 /* > The spectrum may be computed either completely or partially by specifying */
565 /* > either an interval (VL,VU] or a range of indices IL:IU for the desired */
566 /* > eigenvalues. */
567 /* > */
568 /* > Depending on the number of desired eigenvalues, these are computed either */
569 /* > by bisection or the dqds algorithm. Numerically orthogonal eigenvectors are */
570 /* > computed by the use of various suitable L D L^T factorizations near clusters */
571 /* > of close eigenvalues (referred to as RRRs, Relatively Robust */
572 /* > Representations). An informal sketch of the algorithm follows. */
573 /* > */
574 /* > For each unreduced block (submatrix) of T, */
575 /* >    (a) Compute T - sigma I  = L D L^T, so that L and D */
576 /* >        define all the wanted eigenvalues to high relative accuracy. */
577 /* >        This means that small relative changes in the entries of D and L */
578 /* >        cause only small relative changes in the eigenvalues and */
579 /* >        eigenvectors. The standard (unfactored) representation of the */
580 /* >        tridiagonal matrix T does not have this property in general. */
581 /* >    (b) Compute the eigenvalues to suitable accuracy. */
582 /* >        If the eigenvectors are desired, the algorithm attains full */
583 /* >        accuracy of the computed eigenvalues only right before */
584 /* >        the corresponding vectors have to be computed, see steps c) and d). */
585 /* >    (c) For each cluster of close eigenvalues, select a new */
586 /* >        shift close to the cluster, find a new factorization, and refine */
587 /* >        the shifted eigenvalues to suitable accuracy. */
588 /* >    (d) For each eigenvalue with a large enough relative separation compute */
589 /* >        the corresponding eigenvector by forming a rank revealing twisted */
590 /* >        factorization. Go back to (c) for any clusters that remain. */
591 /* > */
592 /* > For more details, see: */
593 /* > - Inderjit S. Dhillon and Beresford N. Parlett: "Multiple representations */
594 /* >   to compute orthogonal eigenvectors of symmetric tridiagonal matrices," */
595 /* >   Linear Algebra and its Applications, 387(1), pp. 1-28, August 2004. */
596 /* > - Inderjit Dhillon and Beresford Parlett: "Orthogonal Eigenvectors and */
597 /* >   Relative Gaps," SIAM Journal on Matrix Analysis and Applications, Vol. 25, */
598 /* >   2004.  Also LAPACK Working Note 154. */
599 /* > - Inderjit Dhillon: "A new O(n^2) algorithm for the symmetric */
600 /* >   tridiagonal eigenvalue/eigenvector problem", */
601 /* >   Computer Science Division Technical Report No. UCB/CSD-97-971, */
602 /* >   UC Berkeley, May 1997. */
603 /* > */
604 /* > Further Details */
605 /* > 1.DSTEMR works only on machines which follow IEEE-754 */
606 /* > floating-point standard in their handling of infinities and NaNs. */
607 /* > This permits the use of efficient inner loops avoiding a check for */
608 /* > zero divisors. */
609 /* > \endverbatim */
610
611 /*  Arguments: */
612 /*  ========== */
613
614 /* > \param[in] JOBZ */
615 /* > \verbatim */
616 /* >          JOBZ is CHARACTER*1 */
617 /* >          = 'N':  Compute eigenvalues only; */
618 /* >          = 'V':  Compute eigenvalues and eigenvectors. */
619 /* > \endverbatim */
620 /* > */
621 /* > \param[in] RANGE */
622 /* > \verbatim */
623 /* >          RANGE is CHARACTER*1 */
624 /* >          = 'A': all eigenvalues will be found. */
625 /* >          = 'V': all eigenvalues in the half-open interval (VL,VU] */
626 /* >                 will be found. */
627 /* >          = 'I': the IL-th through IU-th eigenvalues will be found. */
628 /* > \endverbatim */
629 /* > */
630 /* > \param[in] N */
631 /* > \verbatim */
632 /* >          N is INTEGER */
633 /* >          The order of the matrix.  N >= 0. */
634 /* > \endverbatim */
635 /* > */
636 /* > \param[in,out] D */
637 /* > \verbatim */
638 /* >          D is DOUBLE PRECISION array, dimension (N) */
639 /* >          On entry, the N diagonal elements of the tridiagonal matrix */
640 /* >          T. On exit, D is overwritten. */
641 /* > \endverbatim */
642 /* > */
643 /* > \param[in,out] E */
644 /* > \verbatim */
645 /* >          E is DOUBLE PRECISION array, dimension (N) */
646 /* >          On entry, the (N-1) subdiagonal elements of the tridiagonal */
647 /* >          matrix T in elements 1 to N-1 of E. E(N) need not be set on */
648 /* >          input, but is used internally as workspace. */
649 /* >          On exit, E is overwritten. */
650 /* > \endverbatim */
651 /* > */
652 /* > \param[in] VL */
653 /* > \verbatim */
654 /* >          VL is DOUBLE PRECISION */
655 /* > */
656 /* >          If RANGE='V', the lower bound of the interval to */
657 /* >          be searched for eigenvalues. VL < VU. */
658 /* >          Not referenced if RANGE = 'A' or 'I'. */
659 /* > \endverbatim */
660 /* > */
661 /* > \param[in] VU */
662 /* > \verbatim */
663 /* >          VU is DOUBLE PRECISION */
664 /* > */
665 /* >          If RANGE='V', the upper bound of the interval to */
666 /* >          be searched for eigenvalues. VL < VU. */
667 /* >          Not referenced if RANGE = 'A' or 'I'. */
668 /* > \endverbatim */
669 /* > */
670 /* > \param[in] IL */
671 /* > \verbatim */
672 /* >          IL is INTEGER */
673 /* > */
674 /* >          If RANGE='I', the index of the */
675 /* >          smallest eigenvalue to be returned. */
676 /* >          1 <= IL <= IU <= N, if N > 0. */
677 /* >          Not referenced if RANGE = 'A' or 'V'. */
678 /* > \endverbatim */
679 /* > */
680 /* > \param[in] IU */
681 /* > \verbatim */
682 /* >          IU is INTEGER */
683 /* > */
684 /* >          If RANGE='I', the index of the */
685 /* >          largest eigenvalue to be returned. */
686 /* >          1 <= IL <= IU <= N, if N > 0. */
687 /* >          Not referenced if RANGE = 'A' or 'V'. */
688 /* > \endverbatim */
689 /* > */
690 /* > \param[out] M */
691 /* > \verbatim */
692 /* >          M is INTEGER */
693 /* >          The total number of eigenvalues found.  0 <= M <= N. */
694 /* >          If RANGE = 'A', M = N, and if RANGE = 'I', M = IU-IL+1. */
695 /* > \endverbatim */
696 /* > */
697 /* > \param[out] W */
698 /* > \verbatim */
699 /* >          W is DOUBLE PRECISION array, dimension (N) */
700 /* >          The first M elements contain the selected eigenvalues in */
701 /* >          ascending order. */
702 /* > \endverbatim */
703 /* > */
704 /* > \param[out] Z */
705 /* > \verbatim */
706 /* >          Z is DOUBLE PRECISION array, dimension (LDZ, f2cmax(1,M) ) */
707 /* >          If JOBZ = 'V', and if INFO = 0, then the first M columns of Z */
708 /* >          contain the orthonormal eigenvectors of the matrix T */
709 /* >          corresponding to the selected eigenvalues, with the i-th */
710 /* >          column of Z holding the eigenvector associated with W(i). */
711 /* >          If JOBZ = 'N', then Z is not referenced. */
712 /* >          Note: the user must ensure that at least f2cmax(1,M) columns are */
713 /* >          supplied in the array Z; if RANGE = 'V', the exact value of M */
714 /* >          is not known in advance and can be computed with a workspace */
715 /* >          query by setting NZC = -1, see below. */
716 /* > \endverbatim */
717 /* > */
718 /* > \param[in] LDZ */
719 /* > \verbatim */
720 /* >          LDZ is INTEGER */
721 /* >          The leading dimension of the array Z.  LDZ >= 1, and if */
722 /* >          JOBZ = 'V', then LDZ >= f2cmax(1,N). */
723 /* > \endverbatim */
724 /* > */
725 /* > \param[in] NZC */
726 /* > \verbatim */
727 /* >          NZC is INTEGER */
728 /* >          The number of eigenvectors to be held in the array Z. */
729 /* >          If RANGE = 'A', then NZC >= f2cmax(1,N). */
730 /* >          If RANGE = 'V', then NZC >= the number of eigenvalues in (VL,VU]. */
731 /* >          If RANGE = 'I', then NZC >= IU-IL+1. */
732 /* >          If NZC = -1, then a workspace query is assumed; the */
733 /* >          routine calculates the number of columns of the array Z that */
734 /* >          are needed to hold the eigenvectors. */
735 /* >          This value is returned as the first entry of the Z array, and */
736 /* >          no error message related to NZC is issued by XERBLA. */
737 /* > \endverbatim */
738 /* > */
739 /* > \param[out] ISUPPZ */
740 /* > \verbatim */
741 /* >          ISUPPZ is INTEGER array, dimension ( 2*f2cmax(1,M) ) */
742 /* >          The support of the eigenvectors in Z, i.e., the indices */
743 /* >          indicating the nonzero elements in Z. The i-th computed eigenvector */
744 /* >          is nonzero only in elements ISUPPZ( 2*i-1 ) through */
745 /* >          ISUPPZ( 2*i ). This is relevant in the case when the matrix */
746 /* >          is split. ISUPPZ is only accessed when JOBZ is 'V' and N > 0. */
747 /* > \endverbatim */
748 /* > */
749 /* > \param[in,out] TRYRAC */
750 /* > \verbatim */
751 /* >          TRYRAC is LOGICAL */
752 /* >          If TRYRAC = .TRUE., indicates that the code should check whether */
753 /* >          the tridiagonal matrix defines its eigenvalues to high relative */
754 /* >          accuracy.  If so, the code uses relative-accuracy preserving */
755 /* >          algorithms that might be (a bit) slower depending on the matrix. */
756 /* >          If the matrix does not define its eigenvalues to high relative */
757 /* >          accuracy, the code can uses possibly faster algorithms. */
758 /* >          If TRYRAC = .FALSE., the code is not required to guarantee */
759 /* >          relatively accurate eigenvalues and can use the fastest possible */
760 /* >          techniques. */
761 /* >          On exit, a .TRUE. TRYRAC will be set to .FALSE. if the matrix */
762 /* >          does not define its eigenvalues to high relative accuracy. */
763 /* > \endverbatim */
764 /* > */
765 /* > \param[out] WORK */
766 /* > \verbatim */
767 /* >          WORK is DOUBLE PRECISION array, dimension (LWORK) */
768 /* >          On exit, if INFO = 0, WORK(1) returns the optimal */
769 /* >          (and minimal) LWORK. */
770 /* > \endverbatim */
771 /* > */
772 /* > \param[in] LWORK */
773 /* > \verbatim */
774 /* >          LWORK is INTEGER */
775 /* >          The dimension of the array WORK. LWORK >= f2cmax(1,18*N) */
776 /* >          if JOBZ = 'V', and LWORK >= f2cmax(1,12*N) if JOBZ = 'N'. */
777 /* >          If LWORK = -1, then a workspace query is assumed; the routine */
778 /* >          only calculates the optimal size of the WORK array, returns */
779 /* >          this value as the first entry of the WORK array, and no error */
780 /* >          message related to LWORK is issued by XERBLA. */
781 /* > \endverbatim */
782 /* > */
783 /* > \param[out] IWORK */
784 /* > \verbatim */
785 /* >          IWORK is INTEGER array, dimension (LIWORK) */
786 /* >          On exit, if INFO = 0, IWORK(1) returns the optimal LIWORK. */
787 /* > \endverbatim */
788 /* > */
789 /* > \param[in] LIWORK */
790 /* > \verbatim */
791 /* >          LIWORK is INTEGER */
792 /* >          The dimension of the array IWORK.  LIWORK >= f2cmax(1,10*N) */
793 /* >          if the eigenvectors are desired, and LIWORK >= f2cmax(1,8*N) */
794 /* >          if only the eigenvalues are to be computed. */
795 /* >          If LIWORK = -1, then a workspace query is assumed; the */
796 /* >          routine only calculates the optimal size of the IWORK array, */
797 /* >          returns this value as the first entry of the IWORK array, and */
798 /* >          no error message related to LIWORK is issued by XERBLA. */
799 /* > \endverbatim */
800 /* > */
801 /* > \param[out] INFO */
802 /* > \verbatim */
803 /* >          INFO is INTEGER */
804 /* >          On exit, INFO */
805 /* >          = 0:  successful exit */
806 /* >          < 0:  if INFO = -i, the i-th argument had an illegal value */
807 /* >          > 0:  if INFO = 1X, internal error in DLARRE, */
808 /* >                if INFO = 2X, internal error in DLARRV. */
809 /* >                Here, the digit X = ABS( IINFO ) < 10, where IINFO is */
810 /* >                the nonzero error code returned by DLARRE or */
811 /* >                DLARRV, respectively. */
812 /* > \endverbatim */
813
814 /*  Authors: */
815 /*  ======== */
816
817 /* > \author Univ. of Tennessee */
818 /* > \author Univ. of California Berkeley */
819 /* > \author Univ. of Colorado Denver */
820 /* > \author NAG Ltd. */
821
822 /* > \date June 2016 */
823
824 /* > \ingroup doubleOTHERcomputational */
825
826 /* > \par Contributors: */
827 /*  ================== */
828 /* > */
829 /* > Beresford Parlett, University of California, Berkeley, USA \n */
830 /* > Jim Demmel, University of California, Berkeley, USA \n */
831 /* > Inderjit Dhillon, University of Texas, Austin, USA \n */
832 /* > Osni Marques, LBNL/NERSC, USA \n */
833 /* > Christof Voemel, University of California, Berkeley, USA */
834
835 /*  ===================================================================== */
836 /* Subroutine */ int dstemr_(char *jobz, char *range, integer *n, doublereal *
837         d__, doublereal *e, doublereal *vl, doublereal *vu, integer *il, 
838         integer *iu, integer *m, doublereal *w, doublereal *z__, integer *ldz,
839          integer *nzc, integer *isuppz, logical *tryrac, doublereal *work, 
840         integer *lwork, integer *iwork, integer *liwork, integer *info)
841 {
842     /* System generated locals */
843     integer z_dim1, z_offset, i__1, i__2;
844     doublereal d__1, d__2;
845
846     /* Local variables */
847     integer indd, iend, jblk, wend;
848     doublereal rmin, rmax;
849     integer itmp;
850     doublereal tnrm;
851     extern /* Subroutine */ int dlae2_(doublereal *, doublereal *, doublereal 
852             *, doublereal *, doublereal *);
853     integer inde2, itmp2;
854     doublereal rtol1, rtol2;
855     integer i__, j;
856     extern /* Subroutine */ int dscal_(integer *, doublereal *, doublereal *, 
857             integer *);
858     doublereal scale;
859     integer indgp;
860     extern logical lsame_(char *, char *);
861     integer iinfo, iindw, ilast;
862     extern /* Subroutine */ int dcopy_(integer *, doublereal *, integer *, 
863             doublereal *, integer *), dswap_(integer *, doublereal *, integer 
864             *, doublereal *, integer *);
865     integer lwmin;
866     logical wantz;
867     doublereal r1, r2;
868     extern /* Subroutine */ int dlaev2_(doublereal *, doublereal *, 
869             doublereal *, doublereal *, doublereal *, doublereal *, 
870             doublereal *);
871     integer jj;
872     doublereal cs;
873     integer in;
874     extern doublereal dlamch_(char *);
875     logical alleig, indeig;
876     integer ibegin, iindbl;
877     doublereal sn, wl;
878     logical valeig;
879     extern /* Subroutine */ int dlarrc_(char *, integer *, doublereal *, 
880             doublereal *, doublereal *, doublereal *, doublereal *, integer *,
881              integer *, integer *, integer *), dlarre_(char *, 
882             integer *, doublereal *, doublereal *, integer *, integer *, 
883             doublereal *, doublereal *, doublereal *, doublereal *, 
884             doublereal *, doublereal *, integer *, integer *, integer *, 
885             doublereal *, doublereal *, doublereal *, integer *, integer *, 
886             doublereal *, doublereal *, doublereal *, integer *, integer *);
887     integer wbegin;
888     doublereal safmin, wu;
889     extern /* Subroutine */ int dlarrj_(integer *, doublereal *, doublereal *,
890              integer *, integer *, doublereal *, integer *, doublereal *, 
891             doublereal *, doublereal *, integer *, doublereal *, doublereal *,
892              integer *), xerbla_(char *, integer *, ftnlen);
893     doublereal bignum;
894     integer inderr, iindwk, indgrs, offset;
895     extern doublereal dlanst_(char *, integer *, doublereal *, doublereal *);
896     extern /* Subroutine */ int dlarrr_(integer *, doublereal *, doublereal *,
897              integer *), dlarrv_(integer *, doublereal *, doublereal *, 
898             doublereal *, doublereal *, doublereal *, integer *, integer *, 
899             integer *, integer *, doublereal *, doublereal *, doublereal *, 
900             doublereal *, doublereal *, doublereal *, integer *, integer *, 
901             doublereal *, doublereal *, integer *, integer *, doublereal *, 
902             integer *, integer *), dlasrt_(char *, integer *, doublereal *, 
903             integer *);
904     doublereal thresh;
905     integer iinspl, ifirst, indwrk, liwmin, nzcmin;
906     doublereal pivmin;
907     integer nsplit;
908     doublereal smlnum;
909     logical lquery, zquery;
910     integer iil, iiu;
911     doublereal eps, tmp;
912
913
914 /*  -- LAPACK computational routine (version 3.7.1) -- */
915 /*  -- LAPACK is a software package provided by Univ. of Tennessee,    -- */
916 /*  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- */
917 /*     June 2016 */
918
919
920 /*  ===================================================================== */
921
922
923 /*     Test the input parameters. */
924
925     /* Parameter adjustments */
926     --d__;
927     --e;
928     --w;
929     z_dim1 = *ldz;
930     z_offset = 1 + z_dim1 * 1;
931     z__ -= z_offset;
932     --isuppz;
933     --work;
934     --iwork;
935
936     /* Function Body */
937     wantz = lsame_(jobz, "V");
938     alleig = lsame_(range, "A");
939     valeig = lsame_(range, "V");
940     indeig = lsame_(range, "I");
941
942     lquery = *lwork == -1 || *liwork == -1;
943     zquery = *nzc == -1;
944 /*     DSTEMR needs WORK of size 6*N, IWORK of size 3*N. */
945 /*     In addition, DLARRE needs WORK of size 6*N, IWORK of size 5*N. */
946 /*     Furthermore, DLARRV needs WORK of size 12*N, IWORK of size 7*N. */
947     if (wantz) {
948         lwmin = *n * 18;
949         liwmin = *n * 10;
950     } else {
951 /*        need less workspace if only the eigenvalues are wanted */
952         lwmin = *n * 12;
953         liwmin = *n << 3;
954     }
955     wl = 0.;
956     wu = 0.;
957     iil = 0;
958     iiu = 0;
959     nsplit = 0;
960     if (valeig) {
961 /*        We do not reference VL, VU in the cases RANGE = 'I','A' */
962 /*        The interval (WL, WU] contains all the wanted eigenvalues. */
963 /*        It is either given by the user or computed in DLARRE. */
964         wl = *vl;
965         wu = *vu;
966     } else if (indeig) {
967 /*        We do not reference IL, IU in the cases RANGE = 'V','A' */
968         iil = *il;
969         iiu = *iu;
970     }
971
972     *info = 0;
973     if (! (wantz || lsame_(jobz, "N"))) {
974         *info = -1;
975     } else if (! (alleig || valeig || indeig)) {
976         *info = -2;
977     } else if (*n < 0) {
978         *info = -3;
979     } else if (valeig && *n > 0 && wu <= wl) {
980         *info = -7;
981     } else if (indeig && (iil < 1 || iil > *n)) {
982         *info = -8;
983     } else if (indeig && (iiu < iil || iiu > *n)) {
984         *info = -9;
985     } else if (*ldz < 1 || wantz && *ldz < *n) {
986         *info = -13;
987     } else if (*lwork < lwmin && ! lquery) {
988         *info = -17;
989     } else if (*liwork < liwmin && ! lquery) {
990         *info = -19;
991     }
992
993 /*     Get machine constants. */
994
995     safmin = dlamch_("Safe minimum");
996     eps = dlamch_("Precision");
997     smlnum = safmin / eps;
998     bignum = 1. / smlnum;
999     rmin = sqrt(smlnum);
1000 /* Computing MIN */
1001     d__1 = sqrt(bignum), d__2 = 1. / sqrt(sqrt(safmin));
1002     rmax = f2cmin(d__1,d__2);
1003
1004     if (*info == 0) {
1005         work[1] = (doublereal) lwmin;
1006         iwork[1] = liwmin;
1007
1008         if (wantz && alleig) {
1009             nzcmin = *n;
1010         } else if (wantz && valeig) {
1011             dlarrc_("T", n, vl, vu, &d__[1], &e[1], &safmin, &nzcmin, &itmp, &
1012                     itmp2, info);
1013         } else if (wantz && indeig) {
1014             nzcmin = iiu - iil + 1;
1015         } else {
1016 /*           WANTZ .EQ. FALSE. */
1017             nzcmin = 0;
1018         }
1019         if (zquery && *info == 0) {
1020             z__[z_dim1 + 1] = (doublereal) nzcmin;
1021         } else if (*nzc < nzcmin && ! zquery) {
1022             *info = -14;
1023         }
1024     }
1025     if (*info != 0) {
1026
1027         i__1 = -(*info);
1028         xerbla_("DSTEMR", &i__1, (ftnlen)6);
1029
1030         return 0;
1031     } else if (lquery || zquery) {
1032         return 0;
1033     }
1034
1035 /*     Handle N = 0, 1, and 2 cases immediately */
1036
1037     *m = 0;
1038     if (*n == 0) {
1039         return 0;
1040     }
1041
1042     if (*n == 1) {
1043         if (alleig || indeig) {
1044             *m = 1;
1045             w[1] = d__[1];
1046         } else {
1047             if (wl < d__[1] && wu >= d__[1]) {
1048                 *m = 1;
1049                 w[1] = d__[1];
1050             }
1051         }
1052         if (wantz && ! zquery) {
1053             z__[z_dim1 + 1] = 1.;
1054             isuppz[1] = 1;
1055             isuppz[2] = 1;
1056         }
1057         return 0;
1058     }
1059
1060     if (*n == 2) {
1061         if (! wantz) {
1062             dlae2_(&d__[1], &e[1], &d__[2], &r1, &r2);
1063         } else if (wantz && ! zquery) {
1064             dlaev2_(&d__[1], &e[1], &d__[2], &r1, &r2, &cs, &sn);
1065         }
1066         if (alleig || valeig && r2 > wl && r2 <= wu || indeig && iil == 1) {
1067             ++(*m);
1068             w[*m] = r2;
1069             if (wantz && ! zquery) {
1070                 z__[*m * z_dim1 + 1] = -sn;
1071                 z__[*m * z_dim1 + 2] = cs;
1072 /*              Note: At most one of SN and CS can be zero. */
1073                 if (sn != 0.) {
1074                     if (cs != 0.) {
1075                         isuppz[(*m << 1) - 1] = 1;
1076                         isuppz[*m * 2] = 2;
1077                     } else {
1078                         isuppz[(*m << 1) - 1] = 1;
1079                         isuppz[*m * 2] = 1;
1080                     }
1081                 } else {
1082                     isuppz[(*m << 1) - 1] = 2;
1083                     isuppz[*m * 2] = 2;
1084                 }
1085             }
1086         }
1087         if (alleig || valeig && r1 > wl && r1 <= wu || indeig && iiu == 2) {
1088             ++(*m);
1089             w[*m] = r1;
1090             if (wantz && ! zquery) {
1091                 z__[*m * z_dim1 + 1] = cs;
1092                 z__[*m * z_dim1 + 2] = sn;
1093 /*              Note: At most one of SN and CS can be zero. */
1094                 if (sn != 0.) {
1095                     if (cs != 0.) {
1096                         isuppz[(*m << 1) - 1] = 1;
1097                         isuppz[*m * 2] = 2;
1098                     } else {
1099                         isuppz[(*m << 1) - 1] = 1;
1100                         isuppz[*m * 2] = 1;
1101                     }
1102                 } else {
1103                     isuppz[(*m << 1) - 1] = 2;
1104                     isuppz[*m * 2] = 2;
1105                 }
1106             }
1107         }
1108     } else {
1109 /*     Continue with general N */
1110         indgrs = 1;
1111         inderr = (*n << 1) + 1;
1112         indgp = *n * 3 + 1;
1113         indd = (*n << 2) + 1;
1114         inde2 = *n * 5 + 1;
1115         indwrk = *n * 6 + 1;
1116
1117         iinspl = 1;
1118         iindbl = *n + 1;
1119         iindw = (*n << 1) + 1;
1120         iindwk = *n * 3 + 1;
1121
1122 /*        Scale matrix to allowable range, if necessary. */
1123 /*        The allowable range is related to the PIVMIN parameter; see the */
1124 /*        comments in DLARRD.  The preference for scaling small values */
1125 /*        up is heuristic; we expect users' matrices not to be close to the */
1126 /*        RMAX threshold. */
1127
1128         scale = 1.;
1129         tnrm = dlanst_("M", n, &d__[1], &e[1]);
1130         if (tnrm > 0. && tnrm < rmin) {
1131             scale = rmin / tnrm;
1132         } else if (tnrm > rmax) {
1133             scale = rmax / tnrm;
1134         }
1135         if (scale != 1.) {
1136             dscal_(n, &scale, &d__[1], &c__1);
1137             i__1 = *n - 1;
1138             dscal_(&i__1, &scale, &e[1], &c__1);
1139             tnrm *= scale;
1140             if (valeig) {
1141 /*              If eigenvalues in interval have to be found, */
1142 /*              scale (WL, WU] accordingly */
1143                 wl *= scale;
1144                 wu *= scale;
1145             }
1146         }
1147
1148 /*        Compute the desired eigenvalues of the tridiagonal after splitting */
1149 /*        into smaller subblocks if the corresponding off-diagonal elements */
1150 /*        are small */
1151 /*        THRESH is the splitting parameter for DLARRE */
1152 /*        A negative THRESH forces the old splitting criterion based on the */
1153 /*        size of the off-diagonal. A positive THRESH switches to splitting */
1154 /*        which preserves relative accuracy. */
1155
1156         if (*tryrac) {
1157 /*           Test whether the matrix warrants the more expensive relative approach. */
1158             dlarrr_(n, &d__[1], &e[1], &iinfo);
1159         } else {
1160 /*           The user does not care about relative accurately eigenvalues */
1161             iinfo = -1;
1162         }
1163 /*        Set the splitting criterion */
1164         if (iinfo == 0) {
1165             thresh = eps;
1166         } else {
1167             thresh = -eps;
1168 /*           relative accuracy is desired but T does not guarantee it */
1169             *tryrac = FALSE_;
1170         }
1171
1172         if (*tryrac) {
1173 /*           Copy original diagonal, needed to guarantee relative accuracy */
1174             dcopy_(n, &d__[1], &c__1, &work[indd], &c__1);
1175         }
1176 /*        Store the squares of the offdiagonal values of T */
1177         i__1 = *n - 1;
1178         for (j = 1; j <= i__1; ++j) {
1179 /* Computing 2nd power */
1180             d__1 = e[j];
1181             work[inde2 + j - 1] = d__1 * d__1;
1182 /* L5: */
1183         }
1184 /*        Set the tolerance parameters for bisection */
1185         if (! wantz) {
1186 /*           DLARRE computes the eigenvalues to full precision. */
1187             rtol1 = eps * 4.;
1188             rtol2 = eps * 4.;
1189         } else {
1190 /*           DLARRE computes the eigenvalues to less than full precision. */
1191 /*           DLARRV will refine the eigenvalue approximations, and we can */
1192 /*           need less accurate initial bisection in DLARRE. */
1193 /*           Note: these settings do only affect the subset case and DLARRE */
1194             rtol1 = sqrt(eps);
1195 /* Computing MAX */
1196             d__1 = sqrt(eps) * .005, d__2 = eps * 4.;
1197             rtol2 = f2cmax(d__1,d__2);
1198         }
1199         dlarre_(range, n, &wl, &wu, &iil, &iiu, &d__[1], &e[1], &work[inde2], 
1200                 &rtol1, &rtol2, &thresh, &nsplit, &iwork[iinspl], m, &w[1], &
1201                 work[inderr], &work[indgp], &iwork[iindbl], &iwork[iindw], &
1202                 work[indgrs], &pivmin, &work[indwrk], &iwork[iindwk], &iinfo);
1203         if (iinfo != 0) {
1204             *info = abs(iinfo) + 10;
1205             return 0;
1206         }
1207 /*        Note that if RANGE .NE. 'V', DLARRE computes bounds on the desired */
1208 /*        part of the spectrum. All desired eigenvalues are contained in */
1209 /*        (WL,WU] */
1210         if (wantz) {
1211
1212 /*           Compute the desired eigenvectors corresponding to the computed */
1213 /*           eigenvalues */
1214
1215             dlarrv_(n, &wl, &wu, &d__[1], &e[1], &pivmin, &iwork[iinspl], m, &
1216                     c__1, m, &c_b18, &rtol1, &rtol2, &w[1], &work[inderr], &
1217                     work[indgp], &iwork[iindbl], &iwork[iindw], &work[indgrs],
1218                      &z__[z_offset], ldz, &isuppz[1], &work[indwrk], &iwork[
1219                     iindwk], &iinfo);
1220             if (iinfo != 0) {
1221                 *info = abs(iinfo) + 20;
1222                 return 0;
1223             }
1224         } else {
1225 /*           DLARRE computes eigenvalues of the (shifted) root representation */
1226 /*           DLARRV returns the eigenvalues of the unshifted matrix. */
1227 /*           However, if the eigenvectors are not desired by the user, we need */
1228 /*           to apply the corresponding shifts from DLARRE to obtain the */
1229 /*           eigenvalues of the original matrix. */
1230             i__1 = *m;
1231             for (j = 1; j <= i__1; ++j) {
1232                 itmp = iwork[iindbl + j - 1];
1233                 w[j] += e[iwork[iinspl + itmp - 1]];
1234 /* L20: */
1235             }
1236         }
1237
1238         if (*tryrac) {
1239 /*           Refine computed eigenvalues so that they are relatively accurate */
1240 /*           with respect to the original matrix T. */
1241             ibegin = 1;
1242             wbegin = 1;
1243             i__1 = iwork[iindbl + *m - 1];
1244             for (jblk = 1; jblk <= i__1; ++jblk) {
1245                 iend = iwork[iinspl + jblk - 1];
1246                 in = iend - ibegin + 1;
1247                 wend = wbegin - 1;
1248 /*              check if any eigenvalues have to be refined in this block */
1249 L36:
1250                 if (wend < *m) {
1251                     if (iwork[iindbl + wend] == jblk) {
1252                         ++wend;
1253                         goto L36;
1254                     }
1255                 }
1256                 if (wend < wbegin) {
1257                     ibegin = iend + 1;
1258                     goto L39;
1259                 }
1260                 offset = iwork[iindw + wbegin - 1] - 1;
1261                 ifirst = iwork[iindw + wbegin - 1];
1262                 ilast = iwork[iindw + wend - 1];
1263                 rtol2 = eps * 4.;
1264                 dlarrj_(&in, &work[indd + ibegin - 1], &work[inde2 + ibegin - 
1265                         1], &ifirst, &ilast, &rtol2, &offset, &w[wbegin], &
1266                         work[inderr + wbegin - 1], &work[indwrk], &iwork[
1267                         iindwk], &pivmin, &tnrm, &iinfo);
1268                 ibegin = iend + 1;
1269                 wbegin = wend + 1;
1270 L39:
1271                 ;
1272             }
1273         }
1274
1275 /*        If matrix was scaled, then rescale eigenvalues appropriately. */
1276
1277         if (scale != 1.) {
1278             d__1 = 1. / scale;
1279             dscal_(m, &d__1, &w[1], &c__1);
1280         }
1281     }
1282
1283 /*     If eigenvalues are not in increasing order, then sort them, */
1284 /*     possibly along with eigenvectors. */
1285
1286     if (nsplit > 1 || *n == 2) {
1287         if (! wantz) {
1288             dlasrt_("I", m, &w[1], &iinfo);
1289             if (iinfo != 0) {
1290                 *info = 3;
1291                 return 0;
1292             }
1293         } else {
1294             i__1 = *m - 1;
1295             for (j = 1; j <= i__1; ++j) {
1296                 i__ = 0;
1297                 tmp = w[j];
1298                 i__2 = *m;
1299                 for (jj = j + 1; jj <= i__2; ++jj) {
1300                     if (w[jj] < tmp) {
1301                         i__ = jj;
1302                         tmp = w[jj];
1303                     }
1304 /* L50: */
1305                 }
1306                 if (i__ != 0) {
1307                     w[i__] = w[j];
1308                     w[j] = tmp;
1309                     if (wantz) {
1310                         dswap_(n, &z__[i__ * z_dim1 + 1], &c__1, &z__[j * 
1311                                 z_dim1 + 1], &c__1);
1312                         itmp = isuppz[(i__ << 1) - 1];
1313                         isuppz[(i__ << 1) - 1] = isuppz[(j << 1) - 1];
1314                         isuppz[(j << 1) - 1] = itmp;
1315                         itmp = isuppz[i__ * 2];
1316                         isuppz[i__ * 2] = isuppz[j * 2];
1317                         isuppz[j * 2] = itmp;
1318                     }
1319                 }
1320 /* L60: */
1321             }
1322         }
1323     }
1324
1325
1326     work[1] = (doublereal) lwmin;
1327     iwork[1] = liwmin;
1328     return 0;
1329
1330 /*     End of DSTEMR */
1331
1332 } /* dstemr_ */
1333