C_LAPACK: Fixes to make it compile with MSVC (#3605)
[platform/upstream/openblas.git] / lapack-netlib / SRC / dstebz.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 integer c_n1 = -1;
517 static integer c__3 = 3;
518 static integer c__2 = 2;
519 static integer c__0 = 0;
520
521 /* > \brief \b DSTEBZ */
522
523 /*  =========== DOCUMENTATION =========== */
524
525 /* Online html documentation available at */
526 /*            http://www.netlib.org/lapack/explore-html/ */
527
528 /* > \htmlonly */
529 /* > Download DSTEBZ + dependencies */
530 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/dstebz.
531 f"> */
532 /* > [TGZ]</a> */
533 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/dstebz.
534 f"> */
535 /* > [ZIP]</a> */
536 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/dstebz.
537 f"> */
538 /* > [TXT]</a> */
539 /* > \endhtmlonly */
540
541 /*  Definition: */
542 /*  =========== */
543
544 /*       SUBROUTINE DSTEBZ( RANGE, ORDER, N, VL, VU, IL, IU, ABSTOL, D, E, */
545 /*                          M, NSPLIT, W, IBLOCK, ISPLIT, WORK, IWORK, */
546 /*                          INFO ) */
547
548 /*       CHARACTER          ORDER, RANGE */
549 /*       INTEGER            IL, INFO, IU, M, N, NSPLIT */
550 /*       DOUBLE PRECISION   ABSTOL, VL, VU */
551 /*       INTEGER            IBLOCK( * ), ISPLIT( * ), IWORK( * ) */
552 /*       DOUBLE PRECISION   D( * ), E( * ), W( * ), WORK( * ) */
553
554
555 /* > \par Purpose: */
556 /*  ============= */
557 /* > */
558 /* > \verbatim */
559 /* > */
560 /* > DSTEBZ computes the eigenvalues of a symmetric tridiagonal */
561 /* > matrix T.  The user may ask for all eigenvalues, all eigenvalues */
562 /* > in the half-open interval (VL, VU], or the IL-th through IU-th */
563 /* > eigenvalues. */
564 /* > */
565 /* > To avoid overflow, the matrix must be scaled so that its */
566 /* > largest element is no greater than overflow**(1/2) * underflow**(1/4) in absolute value, and for greatest
567  */
568 /* > accuracy, it should not be much smaller than that. */
569 /* > */
570 /* > See W. Kahan "Accurate Eigenvalues of a Symmetric Tridiagonal */
571 /* > Matrix", Report CS41, Computer Science Dept., Stanford */
572 /* > University, July 21, 1966. */
573 /* > \endverbatim */
574
575 /*  Arguments: */
576 /*  ========== */
577
578 /* > \param[in] RANGE */
579 /* > \verbatim */
580 /* >          RANGE is CHARACTER*1 */
581 /* >          = 'A': ("All")   all eigenvalues will be found. */
582 /* >          = 'V': ("Value") all eigenvalues in the half-open interval */
583 /* >                           (VL, VU] will be found. */
584 /* >          = 'I': ("Index") the IL-th through IU-th eigenvalues (of the */
585 /* >                           entire matrix) will be found. */
586 /* > \endverbatim */
587 /* > */
588 /* > \param[in] ORDER */
589 /* > \verbatim */
590 /* >          ORDER is CHARACTER*1 */
591 /* >          = 'B': ("By Block") the eigenvalues will be grouped by */
592 /* >                              split-off block (see IBLOCK, ISPLIT) and */
593 /* >                              ordered from smallest to largest within */
594 /* >                              the block. */
595 /* >          = 'E': ("Entire matrix") */
596 /* >                              the eigenvalues for the entire matrix */
597 /* >                              will be ordered from smallest to */
598 /* >                              largest. */
599 /* > \endverbatim */
600 /* > */
601 /* > \param[in] N */
602 /* > \verbatim */
603 /* >          N is INTEGER */
604 /* >          The order of the tridiagonal matrix T.  N >= 0. */
605 /* > \endverbatim */
606 /* > */
607 /* > \param[in] VL */
608 /* > \verbatim */
609 /* >          VL is DOUBLE PRECISION */
610 /* > */
611 /* >          If RANGE='V', the lower bound of the interval to */
612 /* >          be searched for eigenvalues.  Eigenvalues less than or equal */
613 /* >          to VL, or greater than VU, will not be returned.  VL < VU. */
614 /* >          Not referenced if RANGE = 'A' or 'I'. */
615 /* > \endverbatim */
616 /* > */
617 /* > \param[in] VU */
618 /* > \verbatim */
619 /* >          VU is DOUBLE PRECISION */
620 /* > */
621 /* >          If RANGE='V', the upper bound of the interval to */
622 /* >          be searched for eigenvalues.  Eigenvalues less than or equal */
623 /* >          to VL, or greater than VU, will not be returned.  VL < VU. */
624 /* >          Not referenced if RANGE = 'A' or 'I'. */
625 /* > \endverbatim */
626 /* > */
627 /* > \param[in] IL */
628 /* > \verbatim */
629 /* >          IL is INTEGER */
630 /* > */
631 /* >          If RANGE='I', the index of the */
632 /* >          smallest eigenvalue to be returned. */
633 /* >          1 <= IL <= IU <= N, if N > 0; IL = 1 and IU = 0 if N = 0. */
634 /* >          Not referenced if RANGE = 'A' or 'V'. */
635 /* > \endverbatim */
636 /* > */
637 /* > \param[in] IU */
638 /* > \verbatim */
639 /* >          IU is INTEGER */
640 /* > */
641 /* >          If RANGE='I', the index of the */
642 /* >          largest eigenvalue to be returned. */
643 /* >          1 <= IL <= IU <= N, if N > 0; IL = 1 and IU = 0 if N = 0. */
644 /* >          Not referenced if RANGE = 'A' or 'V'. */
645 /* > \endverbatim */
646 /* > */
647 /* > \param[in] ABSTOL */
648 /* > \verbatim */
649 /* >          ABSTOL is DOUBLE PRECISION */
650 /* >          The absolute tolerance for the eigenvalues.  An eigenvalue */
651 /* >          (or cluster) is considered to be located if it has been */
652 /* >          determined to lie in an interval whose width is ABSTOL or */
653 /* >          less.  If ABSTOL is less than or equal to zero, then ULP*|T| */
654 /* >          will be used, where |T| means the 1-norm of T. */
655 /* > */
656 /* >          Eigenvalues will be computed most accurately when ABSTOL is */
657 /* >          set to twice the underflow threshold 2*DLAMCH('S'), not zero. */
658 /* > \endverbatim */
659 /* > */
660 /* > \param[in] D */
661 /* > \verbatim */
662 /* >          D is DOUBLE PRECISION array, dimension (N) */
663 /* >          The n diagonal elements of the tridiagonal matrix T. */
664 /* > \endverbatim */
665 /* > */
666 /* > \param[in] E */
667 /* > \verbatim */
668 /* >          E is DOUBLE PRECISION array, dimension (N-1) */
669 /* >          The (n-1) off-diagonal elements of the tridiagonal matrix T. */
670 /* > \endverbatim */
671 /* > */
672 /* > \param[out] M */
673 /* > \verbatim */
674 /* >          M is INTEGER */
675 /* >          The actual number of eigenvalues found. 0 <= M <= N. */
676 /* >          (See also the description of INFO=2,3.) */
677 /* > \endverbatim */
678 /* > */
679 /* > \param[out] NSPLIT */
680 /* > \verbatim */
681 /* >          NSPLIT is INTEGER */
682 /* >          The number of diagonal blocks in the matrix T. */
683 /* >          1 <= NSPLIT <= N. */
684 /* > \endverbatim */
685 /* > */
686 /* > \param[out] W */
687 /* > \verbatim */
688 /* >          W is DOUBLE PRECISION array, dimension (N) */
689 /* >          On exit, the first M elements of W will contain the */
690 /* >          eigenvalues.  (DSTEBZ may use the remaining N-M elements as */
691 /* >          workspace.) */
692 /* > \endverbatim */
693 /* > */
694 /* > \param[out] IBLOCK */
695 /* > \verbatim */
696 /* >          IBLOCK is INTEGER array, dimension (N) */
697 /* >          At each row/column j where E(j) is zero or small, the */
698 /* >          matrix T is considered to split into a block diagonal */
699 /* >          matrix.  On exit, if INFO = 0, IBLOCK(i) specifies to which */
700 /* >          block (from 1 to the number of blocks) the eigenvalue W(i) */
701 /* >          belongs.  (DSTEBZ may use the remaining N-M elements as */
702 /* >          workspace.) */
703 /* > \endverbatim */
704 /* > */
705 /* > \param[out] ISPLIT */
706 /* > \verbatim */
707 /* >          ISPLIT is INTEGER array, dimension (N) */
708 /* >          The splitting points, at which T breaks up into submatrices. */
709 /* >          The first submatrix consists of rows/columns 1 to ISPLIT(1), */
710 /* >          the second of rows/columns ISPLIT(1)+1 through ISPLIT(2), */
711 /* >          etc., and the NSPLIT-th consists of rows/columns */
712 /* >          ISPLIT(NSPLIT-1)+1 through ISPLIT(NSPLIT)=N. */
713 /* >          (Only the first NSPLIT elements will actually be used, but */
714 /* >          since the user cannot know a priori what value NSPLIT will */
715 /* >          have, N words must be reserved for ISPLIT.) */
716 /* > \endverbatim */
717 /* > */
718 /* > \param[out] WORK */
719 /* > \verbatim */
720 /* >          WORK is DOUBLE PRECISION array, dimension (4*N) */
721 /* > \endverbatim */
722 /* > */
723 /* > \param[out] IWORK */
724 /* > \verbatim */
725 /* >          IWORK is INTEGER array, dimension (3*N) */
726 /* > \endverbatim */
727 /* > */
728 /* > \param[out] INFO */
729 /* > \verbatim */
730 /* >          INFO is INTEGER */
731 /* >          = 0:  successful exit */
732 /* >          < 0:  if INFO = -i, the i-th argument had an illegal value */
733 /* >          > 0:  some or all of the eigenvalues failed to converge or */
734 /* >                were not computed: */
735 /* >                =1 or 3: Bisection failed to converge for some */
736 /* >                        eigenvalues; these eigenvalues are flagged by a */
737 /* >                        negative block number.  The effect is that the */
738 /* >                        eigenvalues may not be as accurate as the */
739 /* >                        absolute and relative tolerances.  This is */
740 /* >                        generally caused by unexpectedly inaccurate */
741 /* >                        arithmetic. */
742 /* >                =2 or 3: RANGE='I' only: Not all of the eigenvalues */
743 /* >                        IL:IU were found. */
744 /* >                        Effect: M < IU+1-IL */
745 /* >                        Cause:  non-monotonic arithmetic, causing the */
746 /* >                                Sturm sequence to be non-monotonic. */
747 /* >                        Cure:   recalculate, using RANGE='A', and pick */
748 /* >                                out eigenvalues IL:IU.  In some cases, */
749 /* >                                increasing the PARAMETER "FUDGE" may */
750 /* >                                make things work. */
751 /* >                = 4:    RANGE='I', and the Gershgorin interval */
752 /* >                        initially used was too small.  No eigenvalues */
753 /* >                        were computed. */
754 /* >                        Probable cause: your machine has sloppy */
755 /* >                                        floating-point arithmetic. */
756 /* >                        Cure: Increase the PARAMETER "FUDGE", */
757 /* >                              recompile, and try again. */
758 /* > \endverbatim */
759
760 /* > \par Internal Parameters: */
761 /*  ========================= */
762 /* > */
763 /* > \verbatim */
764 /* >  RELFAC  DOUBLE PRECISION, default = 2.0e0 */
765 /* >          The relative tolerance.  An interval (a,b] lies within */
766 /* >          "relative tolerance" if  b-a < RELFAC*ulp*f2cmax(|a|,|b|), */
767 /* >          where "ulp" is the machine precision (distance from 1 to */
768 /* >          the next larger floating point number.) */
769 /* > */
770 /* >  FUDGE   DOUBLE PRECISION, default = 2 */
771 /* >          A "fudge factor" to widen the Gershgorin intervals.  Ideally, */
772 /* >          a value of 1 should work, but on machines with sloppy */
773 /* >          arithmetic, this needs to be larger.  The default for */
774 /* >          publicly released versions should be large enough to handle */
775 /* >          the worst machine around.  Note that this has no effect */
776 /* >          on accuracy of the solution. */
777 /* > \endverbatim */
778
779 /*  Authors: */
780 /*  ======== */
781
782 /* > \author Univ. of Tennessee */
783 /* > \author Univ. of California Berkeley */
784 /* > \author Univ. of Colorado Denver */
785 /* > \author NAG Ltd. */
786
787 /* > \date June 2016 */
788
789 /* > \ingroup auxOTHERcomputational */
790
791 /*  ===================================================================== */
792 /* Subroutine */ int dstebz_(char *range, char *order, integer *n, doublereal 
793         *vl, doublereal *vu, integer *il, integer *iu, doublereal *abstol, 
794         doublereal *d__, doublereal *e, integer *m, integer *nsplit, 
795         doublereal *w, integer *iblock, integer *isplit, doublereal *work, 
796         integer *iwork, integer *info)
797 {
798     /* System generated locals */
799     integer i__1, i__2, i__3;
800     doublereal d__1, d__2, d__3, d__4, d__5;
801
802     /* Local variables */
803     integer iend, ioff, iout, itmp1, j, jdisc;
804     extern logical lsame_(char *, char *);
805     integer iinfo;
806     doublereal atoli;
807     integer iwoff;
808     doublereal bnorm;
809     integer itmax;
810     doublereal wkill, rtoli, tnorm;
811     integer ib, jb, ie, je, nb;
812     doublereal gl;
813     integer im, in;
814     extern doublereal dlamch_(char *);
815     integer ibegin;
816     doublereal gu;
817     integer iw;
818     extern /* Subroutine */ int dlaebz_(integer *, integer *, integer *, 
819             integer *, integer *, integer *, doublereal *, doublereal *, 
820             doublereal *, doublereal *, doublereal *, doublereal *, integer *,
821              doublereal *, doublereal *, integer *, integer *, doublereal *, 
822             integer *, integer *);
823     doublereal wl;
824     integer irange, idiscl;
825     doublereal safemn, wu;
826     integer idumma[1];
827     extern integer ilaenv_(integer *, char *, char *, integer *, integer *, 
828             integer *, integer *, ftnlen, ftnlen);
829     extern /* Subroutine */ int xerbla_(char *, integer *, ftnlen);
830     integer idiscu, iorder;
831     logical ncnvrg;
832     doublereal pivmin;
833     logical toofew;
834     integer nwl;
835     doublereal ulp, wlu, wul;
836     integer nwu;
837     doublereal tmp1, tmp2;
838
839
840 /*  -- LAPACK computational routine (version 3.7.0) -- */
841 /*  -- LAPACK is a software package provided by Univ. of Tennessee,    -- */
842 /*  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- */
843 /*     June 2016 */
844
845
846 /*  ===================================================================== */
847
848
849     /* Parameter adjustments */
850     --iwork;
851     --work;
852     --isplit;
853     --iblock;
854     --w;
855     --e;
856     --d__;
857
858     /* Function Body */
859     *info = 0;
860
861 /*     Decode RANGE */
862
863     if (lsame_(range, "A")) {
864         irange = 1;
865     } else if (lsame_(range, "V")) {
866         irange = 2;
867     } else if (lsame_(range, "I")) {
868         irange = 3;
869     } else {
870         irange = 0;
871     }
872
873 /*     Decode ORDER */
874
875     if (lsame_(order, "B")) {
876         iorder = 2;
877     } else if (lsame_(order, "E")) {
878         iorder = 1;
879     } else {
880         iorder = 0;
881     }
882
883 /*     Check for Errors */
884
885     if (irange <= 0) {
886         *info = -1;
887     } else if (iorder <= 0) {
888         *info = -2;
889     } else if (*n < 0) {
890         *info = -3;
891     } else if (irange == 2) {
892         if (*vl >= *vu) {
893             *info = -5;
894         }
895     } else if (irange == 3 && (*il < 1 || *il > f2cmax(1,*n))) {
896         *info = -6;
897     } else if (irange == 3 && (*iu < f2cmin(*n,*il) || *iu > *n)) {
898         *info = -7;
899     }
900
901     if (*info != 0) {
902         i__1 = -(*info);
903         xerbla_("DSTEBZ", &i__1, (ftnlen)6);
904         return 0;
905     }
906
907 /*     Initialize error flags */
908
909     *info = 0;
910     ncnvrg = FALSE_;
911     toofew = FALSE_;
912
913 /*     Quick return if possible */
914
915     *m = 0;
916     if (*n == 0) {
917         return 0;
918     }
919
920 /*     Simplifications: */
921
922     if (irange == 3 && *il == 1 && *iu == *n) {
923         irange = 1;
924     }
925
926 /*     Get machine constants */
927 /*     NB is the minimum vector length for vector bisection, or 0 */
928 /*     if only scalar is to be done. */
929
930     safemn = dlamch_("S");
931     ulp = dlamch_("P");
932     rtoli = ulp * 2.;
933     nb = ilaenv_(&c__1, "DSTEBZ", " ", n, &c_n1, &c_n1, &c_n1, (ftnlen)6, (
934             ftnlen)1);
935     if (nb <= 1) {
936         nb = 0;
937     }
938
939 /*     Special Case when N=1 */
940
941     if (*n == 1) {
942         *nsplit = 1;
943         isplit[1] = 1;
944         if (irange == 2 && (*vl >= d__[1] || *vu < d__[1])) {
945             *m = 0;
946         } else {
947             w[1] = d__[1];
948             iblock[1] = 1;
949             *m = 1;
950         }
951         return 0;
952     }
953
954 /*     Compute Splitting Points */
955
956     *nsplit = 1;
957     work[*n] = 0.;
958     pivmin = 1.;
959
960     i__1 = *n;
961     for (j = 2; j <= i__1; ++j) {
962 /* Computing 2nd power */
963         d__1 = e[j - 1];
964         tmp1 = d__1 * d__1;
965 /* Computing 2nd power */
966         d__2 = ulp;
967         if ((d__1 = d__[j] * d__[j - 1], abs(d__1)) * (d__2 * d__2) + safemn 
968                 > tmp1) {
969             isplit[*nsplit] = j - 1;
970             ++(*nsplit);
971             work[j - 1] = 0.;
972         } else {
973             work[j - 1] = tmp1;
974             pivmin = f2cmax(pivmin,tmp1);
975         }
976 /* L10: */
977     }
978     isplit[*nsplit] = *n;
979     pivmin *= safemn;
980
981 /*     Compute Interval and ATOLI */
982
983     if (irange == 3) {
984
985 /*        RANGE='I': Compute the interval containing eigenvalues */
986 /*                   IL through IU. */
987
988 /*        Compute Gershgorin interval for entire (split) matrix */
989 /*        and use it as the initial interval */
990
991         gu = d__[1];
992         gl = d__[1];
993         tmp1 = 0.;
994
995         i__1 = *n - 1;
996         for (j = 1; j <= i__1; ++j) {
997             tmp2 = sqrt(work[j]);
998 /* Computing MAX */
999             d__1 = gu, d__2 = d__[j] + tmp1 + tmp2;
1000             gu = f2cmax(d__1,d__2);
1001 /* Computing MIN */
1002             d__1 = gl, d__2 = d__[j] - tmp1 - tmp2;
1003             gl = f2cmin(d__1,d__2);
1004             tmp1 = tmp2;
1005 /* L20: */
1006         }
1007
1008 /* Computing MAX */
1009         d__1 = gu, d__2 = d__[*n] + tmp1;
1010         gu = f2cmax(d__1,d__2);
1011 /* Computing MIN */
1012         d__1 = gl, d__2 = d__[*n] - tmp1;
1013         gl = f2cmin(d__1,d__2);
1014 /* Computing MAX */
1015         d__1 = abs(gl), d__2 = abs(gu);
1016         tnorm = f2cmax(d__1,d__2);
1017         gl = gl - tnorm * 2.1 * ulp * *n - pivmin * 4.2000000000000002;
1018         gu = gu + tnorm * 2.1 * ulp * *n + pivmin * 2.1;
1019
1020 /*        Compute Iteration parameters */
1021
1022         itmax = (integer) ((log(tnorm + pivmin) - log(pivmin)) / log(2.)) + 2;
1023         if (*abstol <= 0.) {
1024             atoli = ulp * tnorm;
1025         } else {
1026             atoli = *abstol;
1027         }
1028
1029         work[*n + 1] = gl;
1030         work[*n + 2] = gl;
1031         work[*n + 3] = gu;
1032         work[*n + 4] = gu;
1033         work[*n + 5] = gl;
1034         work[*n + 6] = gu;
1035         iwork[1] = -1;
1036         iwork[2] = -1;
1037         iwork[3] = *n + 1;
1038         iwork[4] = *n + 1;
1039         iwork[5] = *il - 1;
1040         iwork[6] = *iu;
1041
1042         dlaebz_(&c__3, &itmax, n, &c__2, &c__2, &nb, &atoli, &rtoli, &pivmin, 
1043                 &d__[1], &e[1], &work[1], &iwork[5], &work[*n + 1], &work[*n 
1044                 + 5], &iout, &iwork[1], &w[1], &iblock[1], &iinfo);
1045
1046         if (iwork[6] == *iu) {
1047             wl = work[*n + 1];
1048             wlu = work[*n + 3];
1049             nwl = iwork[1];
1050             wu = work[*n + 4];
1051             wul = work[*n + 2];
1052             nwu = iwork[4];
1053         } else {
1054             wl = work[*n + 2];
1055             wlu = work[*n + 4];
1056             nwl = iwork[2];
1057             wu = work[*n + 3];
1058             wul = work[*n + 1];
1059             nwu = iwork[3];
1060         }
1061
1062         if (nwl < 0 || nwl >= *n || nwu < 1 || nwu > *n) {
1063             *info = 4;
1064             return 0;
1065         }
1066     } else {
1067
1068 /*        RANGE='A' or 'V' -- Set ATOLI */
1069
1070 /* Computing MAX */
1071         d__3 = abs(d__[1]) + abs(e[1]), d__4 = (d__1 = d__[*n], abs(d__1)) + (
1072                 d__2 = e[*n - 1], abs(d__2));
1073         tnorm = f2cmax(d__3,d__4);
1074
1075         i__1 = *n - 1;
1076         for (j = 2; j <= i__1; ++j) {
1077 /* Computing MAX */
1078             d__4 = tnorm, d__5 = (d__1 = d__[j], abs(d__1)) + (d__2 = e[j - 1]
1079                     , abs(d__2)) + (d__3 = e[j], abs(d__3));
1080             tnorm = f2cmax(d__4,d__5);
1081 /* L30: */
1082         }
1083
1084         if (*abstol <= 0.) {
1085             atoli = ulp * tnorm;
1086         } else {
1087             atoli = *abstol;
1088         }
1089
1090         if (irange == 2) {
1091             wl = *vl;
1092             wu = *vu;
1093         } else {
1094             wl = 0.;
1095             wu = 0.;
1096         }
1097     }
1098
1099 /*     Find Eigenvalues -- Loop Over Blocks and recompute NWL and NWU. */
1100 /*     NWL accumulates the number of eigenvalues .le. WL, */
1101 /*     NWU accumulates the number of eigenvalues .le. WU */
1102
1103     *m = 0;
1104     iend = 0;
1105     *info = 0;
1106     nwl = 0;
1107     nwu = 0;
1108
1109     i__1 = *nsplit;
1110     for (jb = 1; jb <= i__1; ++jb) {
1111         ioff = iend;
1112         ibegin = ioff + 1;
1113         iend = isplit[jb];
1114         in = iend - ioff;
1115
1116         if (in == 1) {
1117
1118 /*           Special Case -- IN=1 */
1119
1120             if (irange == 1 || wl >= d__[ibegin] - pivmin) {
1121                 ++nwl;
1122             }
1123             if (irange == 1 || wu >= d__[ibegin] - pivmin) {
1124                 ++nwu;
1125             }
1126             if (irange == 1 || wl < d__[ibegin] - pivmin && wu >= d__[ibegin] 
1127                     - pivmin) {
1128                 ++(*m);
1129                 w[*m] = d__[ibegin];
1130                 iblock[*m] = jb;
1131             }
1132         } else {
1133
1134 /*           General Case -- IN > 1 */
1135
1136 /*           Compute Gershgorin Interval */
1137 /*           and use it as the initial interval */
1138
1139             gu = d__[ibegin];
1140             gl = d__[ibegin];
1141             tmp1 = 0.;
1142
1143             i__2 = iend - 1;
1144             for (j = ibegin; j <= i__2; ++j) {
1145                 tmp2 = (d__1 = e[j], abs(d__1));
1146 /* Computing MAX */
1147                 d__1 = gu, d__2 = d__[j] + tmp1 + tmp2;
1148                 gu = f2cmax(d__1,d__2);
1149 /* Computing MIN */
1150                 d__1 = gl, d__2 = d__[j] - tmp1 - tmp2;
1151                 gl = f2cmin(d__1,d__2);
1152                 tmp1 = tmp2;
1153 /* L40: */
1154             }
1155
1156 /* Computing MAX */
1157             d__1 = gu, d__2 = d__[iend] + tmp1;
1158             gu = f2cmax(d__1,d__2);
1159 /* Computing MIN */
1160             d__1 = gl, d__2 = d__[iend] - tmp1;
1161             gl = f2cmin(d__1,d__2);
1162 /* Computing MAX */
1163             d__1 = abs(gl), d__2 = abs(gu);
1164             bnorm = f2cmax(d__1,d__2);
1165             gl = gl - bnorm * 2.1 * ulp * in - pivmin * 2.1;
1166             gu = gu + bnorm * 2.1 * ulp * in + pivmin * 2.1;
1167
1168 /*           Compute ATOLI for the current submatrix */
1169
1170             if (*abstol <= 0.) {
1171 /* Computing MAX */
1172                 d__1 = abs(gl), d__2 = abs(gu);
1173                 atoli = ulp * f2cmax(d__1,d__2);
1174             } else {
1175                 atoli = *abstol;
1176             }
1177
1178             if (irange > 1) {
1179                 if (gu < wl) {
1180                     nwl += in;
1181                     nwu += in;
1182                     goto L70;
1183                 }
1184                 gl = f2cmax(gl,wl);
1185                 gu = f2cmin(gu,wu);
1186                 if (gl >= gu) {
1187                     goto L70;
1188                 }
1189             }
1190
1191 /*           Set Up Initial Interval */
1192
1193             work[*n + 1] = gl;
1194             work[*n + in + 1] = gu;
1195             dlaebz_(&c__1, &c__0, &in, &in, &c__1, &nb, &atoli, &rtoli, &
1196                     pivmin, &d__[ibegin], &e[ibegin], &work[ibegin], idumma, &
1197                     work[*n + 1], &work[*n + (in << 1) + 1], &im, &iwork[1], &
1198                     w[*m + 1], &iblock[*m + 1], &iinfo);
1199
1200             nwl += iwork[1];
1201             nwu += iwork[in + 1];
1202             iwoff = *m - iwork[1];
1203
1204 /*           Compute Eigenvalues */
1205
1206             itmax = (integer) ((log(gu - gl + pivmin) - log(pivmin)) / log(2.)
1207                     ) + 2;
1208             dlaebz_(&c__2, &itmax, &in, &in, &c__1, &nb, &atoli, &rtoli, &
1209                     pivmin, &d__[ibegin], &e[ibegin], &work[ibegin], idumma, &
1210                     work[*n + 1], &work[*n + (in << 1) + 1], &iout, &iwork[1],
1211                      &w[*m + 1], &iblock[*m + 1], &iinfo);
1212
1213 /*           Copy Eigenvalues Into W and IBLOCK */
1214 /*           Use -JB for block number for unconverged eigenvalues. */
1215
1216             i__2 = iout;
1217             for (j = 1; j <= i__2; ++j) {
1218                 tmp1 = (work[j + *n] + work[j + in + *n]) * .5;
1219
1220 /*              Flag non-convergence. */
1221
1222                 if (j > iout - iinfo) {
1223                     ncnvrg = TRUE_;
1224                     ib = -jb;
1225                 } else {
1226                     ib = jb;
1227                 }
1228                 i__3 = iwork[j + in] + iwoff;
1229                 for (je = iwork[j] + 1 + iwoff; je <= i__3; ++je) {
1230                     w[je] = tmp1;
1231                     iblock[je] = ib;
1232 /* L50: */
1233                 }
1234 /* L60: */
1235             }
1236
1237             *m += im;
1238         }
1239 L70:
1240         ;
1241     }
1242
1243 /*     If RANGE='I', then (WL,WU) contains eigenvalues NWL+1,...,NWU */
1244 /*     If NWL+1 < IL or NWU > IU, discard extra eigenvalues. */
1245
1246     if (irange == 3) {
1247         im = 0;
1248         idiscl = *il - 1 - nwl;
1249         idiscu = nwu - *iu;
1250
1251         if (idiscl > 0 || idiscu > 0) {
1252             i__1 = *m;
1253             for (je = 1; je <= i__1; ++je) {
1254                 if (w[je] <= wlu && idiscl > 0) {
1255                     --idiscl;
1256                 } else if (w[je] >= wul && idiscu > 0) {
1257                     --idiscu;
1258                 } else {
1259                     ++im;
1260                     w[im] = w[je];
1261                     iblock[im] = iblock[je];
1262                 }
1263 /* L80: */
1264             }
1265             *m = im;
1266         }
1267         if (idiscl > 0 || idiscu > 0) {
1268
1269 /*           Code to deal with effects of bad arithmetic: */
1270 /*           Some low eigenvalues to be discarded are not in (WL,WLU], */
1271 /*           or high eigenvalues to be discarded are not in (WUL,WU] */
1272 /*           so just kill off the smallest IDISCL/largest IDISCU */
1273 /*           eigenvalues, by simply finding the smallest/largest */
1274 /*           eigenvalue(s). */
1275
1276 /*           (If N(w) is monotone non-decreasing, this should never */
1277 /*               happen.) */
1278
1279             if (idiscl > 0) {
1280                 wkill = wu;
1281                 i__1 = idiscl;
1282                 for (jdisc = 1; jdisc <= i__1; ++jdisc) {
1283                     iw = 0;
1284                     i__2 = *m;
1285                     for (je = 1; je <= i__2; ++je) {
1286                         if (iblock[je] != 0 && (w[je] < wkill || iw == 0)) {
1287                             iw = je;
1288                             wkill = w[je];
1289                         }
1290 /* L90: */
1291                     }
1292                     iblock[iw] = 0;
1293 /* L100: */
1294                 }
1295             }
1296             if (idiscu > 0) {
1297
1298                 wkill = wl;
1299                 i__1 = idiscu;
1300                 for (jdisc = 1; jdisc <= i__1; ++jdisc) {
1301                     iw = 0;
1302                     i__2 = *m;
1303                     for (je = 1; je <= i__2; ++je) {
1304                         if (iblock[je] != 0 && (w[je] > wkill || iw == 0)) {
1305                             iw = je;
1306                             wkill = w[je];
1307                         }
1308 /* L110: */
1309                     }
1310                     iblock[iw] = 0;
1311 /* L120: */
1312                 }
1313             }
1314             im = 0;
1315             i__1 = *m;
1316             for (je = 1; je <= i__1; ++je) {
1317                 if (iblock[je] != 0) {
1318                     ++im;
1319                     w[im] = w[je];
1320                     iblock[im] = iblock[je];
1321                 }
1322 /* L130: */
1323             }
1324             *m = im;
1325         }
1326         if (idiscl < 0 || idiscu < 0) {
1327             toofew = TRUE_;
1328         }
1329     }
1330
1331 /*     If ORDER='B', do nothing -- the eigenvalues are already sorted */
1332 /*        by block. */
1333 /*     If ORDER='E', sort the eigenvalues from smallest to largest */
1334
1335     if (iorder == 1 && *nsplit > 1) {
1336         i__1 = *m - 1;
1337         for (je = 1; je <= i__1; ++je) {
1338             ie = 0;
1339             tmp1 = w[je];
1340             i__2 = *m;
1341             for (j = je + 1; j <= i__2; ++j) {
1342                 if (w[j] < tmp1) {
1343                     ie = j;
1344                     tmp1 = w[j];
1345                 }
1346 /* L140: */
1347             }
1348
1349             if (ie != 0) {
1350                 itmp1 = iblock[ie];
1351                 w[ie] = w[je];
1352                 iblock[ie] = iblock[je];
1353                 w[je] = tmp1;
1354                 iblock[je] = itmp1;
1355             }
1356 /* L150: */
1357         }
1358     }
1359
1360     *info = 0;
1361     if (ncnvrg) {
1362         ++(*info);
1363     }
1364     if (toofew) {
1365         *info += 2;
1366     }
1367     return 0;
1368
1369 /*     End of DSTEBZ */
1370
1371 } /* dstebz_ */
1372