C_LAPACK: Fixes to make it compile with MSVC (#3605)
[platform/upstream/openblas.git] / lapack-netlib / SRC / slahqr.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
517 /* > \brief \b SLAHQR computes the eigenvalues and Schur factorization of an upper Hessenberg matrix, using th
518 e double-shift/single-shift QR algorithm. */
519
520 /*  =========== DOCUMENTATION =========== */
521
522 /* Online html documentation available at */
523 /*            http://www.netlib.org/lapack/explore-html/ */
524
525 /* > \htmlonly */
526 /* > Download SLAHQR + dependencies */
527 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/slahqr.
528 f"> */
529 /* > [TGZ]</a> */
530 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/slahqr.
531 f"> */
532 /* > [ZIP]</a> */
533 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/slahqr.
534 f"> */
535 /* > [TXT]</a> */
536 /* > \endhtmlonly */
537
538 /*  Definition: */
539 /*  =========== */
540
541 /*       SUBROUTINE SLAHQR( WANTT, WANTZ, N, ILO, IHI, H, LDH, WR, WI, */
542 /*                          ILOZ, IHIZ, Z, LDZ, INFO ) */
543
544 /*       INTEGER            IHI, IHIZ, ILO, ILOZ, INFO, LDH, LDZ, N */
545 /*       LOGICAL            WANTT, WANTZ */
546 /*       REAL               H( LDH, * ), WI( * ), WR( * ), Z( LDZ, * ) */
547
548
549 /* > \par Purpose: */
550 /*  ============= */
551 /* > */
552 /* > \verbatim */
553 /* > */
554 /* >    SLAHQR is an auxiliary routine called by SHSEQR to update the */
555 /* >    eigenvalues and Schur decomposition already computed by SHSEQR, by */
556 /* >    dealing with the Hessenberg submatrix in rows and columns ILO to */
557 /* >    IHI. */
558 /* > \endverbatim */
559
560 /*  Arguments: */
561 /*  ========== */
562
563 /* > \param[in] WANTT */
564 /* > \verbatim */
565 /* >          WANTT is LOGICAL */
566 /* >          = .TRUE. : the full Schur form T is required; */
567 /* >          = .FALSE.: only eigenvalues are required. */
568 /* > \endverbatim */
569 /* > */
570 /* > \param[in] WANTZ */
571 /* > \verbatim */
572 /* >          WANTZ is LOGICAL */
573 /* >          = .TRUE. : the matrix of Schur vectors Z is required; */
574 /* >          = .FALSE.: Schur vectors are not required. */
575 /* > \endverbatim */
576 /* > */
577 /* > \param[in] N */
578 /* > \verbatim */
579 /* >          N is INTEGER */
580 /* >          The order of the matrix H.  N >= 0. */
581 /* > \endverbatim */
582 /* > */
583 /* > \param[in] ILO */
584 /* > \verbatim */
585 /* >          ILO is INTEGER */
586 /* > \endverbatim */
587 /* > */
588 /* > \param[in] IHI */
589 /* > \verbatim */
590 /* >          IHI is INTEGER */
591 /* >          It is assumed that H is already upper quasi-triangular in */
592 /* >          rows and columns IHI+1:N, and that H(ILO,ILO-1) = 0 (unless */
593 /* >          ILO = 1). SLAHQR works primarily with the Hessenberg */
594 /* >          submatrix in rows and columns ILO to IHI, but applies */
595 /* >          transformations to all of H if WANTT is .TRUE.. */
596 /* >          1 <= ILO <= f2cmax(1,IHI); IHI <= N. */
597 /* > \endverbatim */
598 /* > */
599 /* > \param[in,out] H */
600 /* > \verbatim */
601 /* >          H is REAL array, dimension (LDH,N) */
602 /* >          On entry, the upper Hessenberg matrix H. */
603 /* >          On exit, if INFO is zero and if WANTT is .TRUE., H is upper */
604 /* >          quasi-triangular in rows and columns ILO:IHI, with any */
605 /* >          2-by-2 diagonal blocks in standard form. If INFO is zero */
606 /* >          and WANTT is .FALSE., the contents of H are unspecified on */
607 /* >          exit.  The output state of H if INFO is nonzero is given */
608 /* >          below under the description of INFO. */
609 /* > \endverbatim */
610 /* > */
611 /* > \param[in] LDH */
612 /* > \verbatim */
613 /* >          LDH is INTEGER */
614 /* >          The leading dimension of the array H. LDH >= f2cmax(1,N). */
615 /* > \endverbatim */
616 /* > */
617 /* > \param[out] WR */
618 /* > \verbatim */
619 /* >          WR is REAL array, dimension (N) */
620 /* > \endverbatim */
621 /* > */
622 /* > \param[out] WI */
623 /* > \verbatim */
624 /* >          WI is REAL array, dimension (N) */
625 /* >          The real and imaginary parts, respectively, of the computed */
626 /* >          eigenvalues ILO to IHI are stored in the corresponding */
627 /* >          elements of WR and WI. If two eigenvalues are computed as a */
628 /* >          complex conjugate pair, they are stored in consecutive */
629 /* >          elements of WR and WI, say the i-th and (i+1)th, with */
630 /* >          WI(i) > 0 and WI(i+1) < 0. If WANTT is .TRUE., the */
631 /* >          eigenvalues are stored in the same order as on the diagonal */
632 /* >          of the Schur form returned in H, with WR(i) = H(i,i), and, if */
633 /* >          H(i:i+1,i:i+1) is a 2-by-2 diagonal block, */
634 /* >          WI(i) = sqrt(H(i+1,i)*H(i,i+1)) and WI(i+1) = -WI(i). */
635 /* > \endverbatim */
636 /* > */
637 /* > \param[in] ILOZ */
638 /* > \verbatim */
639 /* >          ILOZ is INTEGER */
640 /* > \endverbatim */
641 /* > */
642 /* > \param[in] IHIZ */
643 /* > \verbatim */
644 /* >          IHIZ is INTEGER */
645 /* >          Specify the rows of Z to which transformations must be */
646 /* >          applied if WANTZ is .TRUE.. */
647 /* >          1 <= ILOZ <= ILO; IHI <= IHIZ <= N. */
648 /* > \endverbatim */
649 /* > */
650 /* > \param[in,out] Z */
651 /* > \verbatim */
652 /* >          Z is REAL array, dimension (LDZ,N) */
653 /* >          If WANTZ is .TRUE., on entry Z must contain the current */
654 /* >          matrix Z of transformations accumulated by SHSEQR, and on */
655 /* >          exit Z has been updated; transformations are applied only to */
656 /* >          the submatrix Z(ILOZ:IHIZ,ILO:IHI). */
657 /* >          If WANTZ is .FALSE., Z is not referenced. */
658 /* > \endverbatim */
659 /* > */
660 /* > \param[in] LDZ */
661 /* > \verbatim */
662 /* >          LDZ is INTEGER */
663 /* >          The leading dimension of the array Z. LDZ >= f2cmax(1,N). */
664 /* > \endverbatim */
665 /* > */
666 /* > \param[out] INFO */
667 /* > \verbatim */
668 /* >          INFO is INTEGER */
669 /* >           = 0:   successful exit */
670 /* >           > 0:   If INFO = i, SLAHQR failed to compute all the */
671 /* >                  eigenvalues ILO to IHI in a total of 30 iterations */
672 /* >                  per eigenvalue; elements i+1:ihi of WR and WI */
673 /* >                  contain those eigenvalues which have been */
674 /* >                  successfully computed. */
675 /* > */
676 /* >                  If INFO > 0 and WANTT is .FALSE., then on exit, */
677 /* >                  the remaining unconverged eigenvalues are the */
678 /* >                  eigenvalues of the upper Hessenberg matrix rows */
679 /* >                  and columns ILO through INFO of the final, output */
680 /* >                  value of H. */
681 /* > */
682 /* >                  If INFO > 0 and WANTT is .TRUE., then on exit */
683 /* >          (*)       (initial value of H)*U  = U*(final value of H) */
684 /* >                  where U is an orthogonal matrix.    The final */
685 /* >                  value of H is upper Hessenberg and triangular in */
686 /* >                  rows and columns INFO+1 through IHI. */
687 /* > */
688 /* >                  If INFO > 0 and WANTZ is .TRUE., then on exit */
689 /* >                      (final value of Z)  = (initial value of Z)*U */
690 /* >                  where U is the orthogonal matrix in (*) */
691 /* >                  (regardless of the value of WANTT.) */
692 /* > \endverbatim */
693
694 /*  Authors: */
695 /*  ======== */
696
697 /* > \author Univ. of Tennessee */
698 /* > \author Univ. of California Berkeley */
699 /* > \author Univ. of Colorado Denver */
700 /* > \author NAG Ltd. */
701
702 /* > \date December 2016 */
703
704 /* > \ingroup realOTHERauxiliary */
705
706 /* > \par Further Details: */
707 /*  ===================== */
708 /* > */
709 /* > \verbatim */
710 /* > */
711 /* >     02-96 Based on modifications by */
712 /* >     David Day, Sandia National Laboratory, USA */
713 /* > */
714 /* >     12-04 Further modifications by */
715 /* >     Ralph Byers, University of Kansas, USA */
716 /* >     This is a modified version of SLAHQR from LAPACK version 3.0. */
717 /* >     It is (1) more robust against overflow and underflow and */
718 /* >     (2) adopts the more conservative Ahues & Tisseur stopping */
719 /* >     criterion (LAWN 122, 1997). */
720 /* > \endverbatim */
721 /* > */
722 /*  ===================================================================== */
723 /* Subroutine */ int slahqr_(logical *wantt, logical *wantz, integer *n, 
724         integer *ilo, integer *ihi, real *h__, integer *ldh, real *wr, real *
725         wi, integer *iloz, integer *ihiz, real *z__, integer *ldz, integer *
726         info)
727 {
728     /* System generated locals */
729     integer h_dim1, h_offset, z_dim1, z_offset, i__1, i__2, i__3, i__4;
730     real r__1, r__2, r__3, r__4;
731
732     /* Local variables */
733     extern /* Subroutine */ int srot_(integer *, real *, integer *, real *, 
734             integer *, real *, real *);
735     integer i__, j, k, l, m;
736     real s, v[3];
737     integer itmax, i1, i2;
738     extern /* Subroutine */ int scopy_(integer *, real *, integer *, real *, 
739             integer *);
740     real t1, t2, t3, v2, v3, aa, ab, ba, bb;
741     extern /* Subroutine */ int slanv2_(real *, real *, real *, real *, real *
742             , real *, real *, real *, real *, real *);
743     real h11, h12, h21, h22, cs;
744     integer nh;
745     extern /* Subroutine */ int slabad_(real *, real *);
746     real sn;
747     integer nr;
748     real tr;
749     extern real slamch_(char *);
750     integer nz;
751     real safmin;
752     extern /* Subroutine */ int slarfg_(integer *, real *, real *, integer *, 
753             real *);
754     real safmax, rtdisc, smlnum, det, h21s;
755     integer its;
756     real ulp, sum, tst, rt1i, rt2i, rt1r, rt2r;
757
758
759 /*  -- LAPACK auxiliary routine (version 3.7.0) -- */
760 /*  -- LAPACK is a software package provided by Univ. of Tennessee,    -- */
761 /*  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- */
762 /*     December 2016 */
763
764
765 /*  ========================================================= */
766
767
768     /* Parameter adjustments */
769     h_dim1 = *ldh;
770     h_offset = 1 + h_dim1 * 1;
771     h__ -= h_offset;
772     --wr;
773     --wi;
774     z_dim1 = *ldz;
775     z_offset = 1 + z_dim1 * 1;
776     z__ -= z_offset;
777
778     /* Function Body */
779     *info = 0;
780
781 /*     Quick return if possible */
782
783     if (*n == 0) {
784         return 0;
785     }
786     if (*ilo == *ihi) {
787         wr[*ilo] = h__[*ilo + *ilo * h_dim1];
788         wi[*ilo] = 0.f;
789         return 0;
790     }
791
792 /*     ==== clear out the trash ==== */
793     i__1 = *ihi - 3;
794     for (j = *ilo; j <= i__1; ++j) {
795         h__[j + 2 + j * h_dim1] = 0.f;
796         h__[j + 3 + j * h_dim1] = 0.f;
797 /* L10: */
798     }
799     if (*ilo <= *ihi - 2) {
800         h__[*ihi + (*ihi - 2) * h_dim1] = 0.f;
801     }
802
803     nh = *ihi - *ilo + 1;
804     nz = *ihiz - *iloz + 1;
805
806 /*     Set machine-dependent constants for the stopping criterion. */
807
808     safmin = slamch_("SAFE MINIMUM");
809     safmax = 1.f / safmin;
810     slabad_(&safmin, &safmax);
811     ulp = slamch_("PRECISION");
812     smlnum = safmin * ((real) nh / ulp);
813
814 /*     I1 and I2 are the indices of the first row and last column of H */
815 /*     to which transformations must be applied. If eigenvalues only are */
816 /*     being computed, I1 and I2 are set inside the main loop. */
817
818     if (*wantt) {
819         i1 = 1;
820         i2 = *n;
821     }
822
823 /*     ITMAX is the total number of QR iterations allowed. */
824
825     itmax = f2cmax(10,nh) * 30;
826
827 /*     The main loop begins here. I is the loop index and decreases from */
828 /*     IHI to ILO in steps of 1 or 2. Each iteration of the loop works */
829 /*     with the active submatrix in rows and columns L to I. */
830 /*     Eigenvalues I+1 to IHI have already converged. Either L = ILO or */
831 /*     H(L,L-1) is negligible so that the matrix splits. */
832
833     i__ = *ihi;
834 L20:
835     l = *ilo;
836     if (i__ < *ilo) {
837         goto L160;
838     }
839
840 /*     Perform QR iterations on rows and columns ILO to I until a */
841 /*     submatrix of order 1 or 2 splits off at the bottom because a */
842 /*     subdiagonal element has become negligible. */
843
844     i__1 = itmax;
845     for (its = 0; its <= i__1; ++its) {
846
847 /*        Look for a single small subdiagonal element. */
848
849         i__2 = l + 1;
850         for (k = i__; k >= i__2; --k) {
851             if ((r__1 = h__[k + (k - 1) * h_dim1], abs(r__1)) <= smlnum) {
852                 goto L40;
853             }
854             tst = (r__1 = h__[k - 1 + (k - 1) * h_dim1], abs(r__1)) + (r__2 = 
855                     h__[k + k * h_dim1], abs(r__2));
856             if (tst == 0.f) {
857                 if (k - 2 >= *ilo) {
858                     tst += (r__1 = h__[k - 1 + (k - 2) * h_dim1], abs(r__1));
859                 }
860                 if (k + 1 <= *ihi) {
861                     tst += (r__1 = h__[k + 1 + k * h_dim1], abs(r__1));
862                 }
863             }
864 /*           ==== The following is a conservative small subdiagonal */
865 /*           .    deflation  criterion due to Ahues & Tisseur (LAWN 122, */
866 /*           .    1997). It has better mathematical foundation and */
867 /*           .    improves accuracy in some cases.  ==== */
868             if ((r__1 = h__[k + (k - 1) * h_dim1], abs(r__1)) <= ulp * tst) {
869 /* Computing MAX */
870                 r__3 = (r__1 = h__[k + (k - 1) * h_dim1], abs(r__1)), r__4 = (
871                         r__2 = h__[k - 1 + k * h_dim1], abs(r__2));
872                 ab = f2cmax(r__3,r__4);
873 /* Computing MIN */
874                 r__3 = (r__1 = h__[k + (k - 1) * h_dim1], abs(r__1)), r__4 = (
875                         r__2 = h__[k - 1 + k * h_dim1], abs(r__2));
876                 ba = f2cmin(r__3,r__4);
877 /* Computing MAX */
878                 r__3 = (r__1 = h__[k + k * h_dim1], abs(r__1)), r__4 = (r__2 =
879                          h__[k - 1 + (k - 1) * h_dim1] - h__[k + k * h_dim1], 
880                         abs(r__2));
881                 aa = f2cmax(r__3,r__4);
882 /* Computing MIN */
883                 r__3 = (r__1 = h__[k + k * h_dim1], abs(r__1)), r__4 = (r__2 =
884                          h__[k - 1 + (k - 1) * h_dim1] - h__[k + k * h_dim1], 
885                         abs(r__2));
886                 bb = f2cmin(r__3,r__4);
887                 s = aa + ab;
888 /* Computing MAX */
889                 r__1 = smlnum, r__2 = ulp * (bb * (aa / s));
890                 if (ba * (ab / s) <= f2cmax(r__1,r__2)) {
891                     goto L40;
892                 }
893             }
894 /* L30: */
895         }
896 L40:
897         l = k;
898         if (l > *ilo) {
899
900 /*           H(L,L-1) is negligible */
901
902             h__[l + (l - 1) * h_dim1] = 0.f;
903         }
904
905 /*        Exit from loop if a submatrix of order 1 or 2 has split off. */
906
907         if (l >= i__ - 1) {
908             goto L150;
909         }
910
911 /*        Now the active submatrix is in rows and columns L to I. If */
912 /*        eigenvalues only are being computed, only the active submatrix */
913 /*        need be transformed. */
914
915         if (! (*wantt)) {
916             i1 = l;
917             i2 = i__;
918         }
919
920         if (its == 10) {
921
922 /*           Exceptional shift. */
923
924             s = (r__1 = h__[l + 1 + l * h_dim1], abs(r__1)) + (r__2 = h__[l + 
925                     2 + (l + 1) * h_dim1], abs(r__2));
926             h11 = s * .75f + h__[l + l * h_dim1];
927             h12 = s * -.4375f;
928             h21 = s;
929             h22 = h11;
930         } else if (its == 20) {
931
932 /*           Exceptional shift. */
933
934             s = (r__1 = h__[i__ + (i__ - 1) * h_dim1], abs(r__1)) + (r__2 = 
935                     h__[i__ - 1 + (i__ - 2) * h_dim1], abs(r__2));
936             h11 = s * .75f + h__[i__ + i__ * h_dim1];
937             h12 = s * -.4375f;
938             h21 = s;
939             h22 = h11;
940         } else {
941
942 /*           Prepare to use Francis' double shift */
943 /*           (i.e. 2nd degree generalized Rayleigh quotient) */
944
945             h11 = h__[i__ - 1 + (i__ - 1) * h_dim1];
946             h21 = h__[i__ + (i__ - 1) * h_dim1];
947             h12 = h__[i__ - 1 + i__ * h_dim1];
948             h22 = h__[i__ + i__ * h_dim1];
949         }
950         s = abs(h11) + abs(h12) + abs(h21) + abs(h22);
951         if (s == 0.f) {
952             rt1r = 0.f;
953             rt1i = 0.f;
954             rt2r = 0.f;
955             rt2i = 0.f;
956         } else {
957             h11 /= s;
958             h21 /= s;
959             h12 /= s;
960             h22 /= s;
961             tr = (h11 + h22) / 2.f;
962             det = (h11 - tr) * (h22 - tr) - h12 * h21;
963             rtdisc = sqrt((abs(det)));
964             if (det >= 0.f) {
965
966 /*              ==== complex conjugate shifts ==== */
967
968                 rt1r = tr * s;
969                 rt2r = rt1r;
970                 rt1i = rtdisc * s;
971                 rt2i = -rt1i;
972             } else {
973
974 /*              ==== real shifts (use only one of them)  ==== */
975
976                 rt1r = tr + rtdisc;
977                 rt2r = tr - rtdisc;
978                 if ((r__1 = rt1r - h22, abs(r__1)) <= (r__2 = rt2r - h22, abs(
979                         r__2))) {
980                     rt1r *= s;
981                     rt2r = rt1r;
982                 } else {
983                     rt2r *= s;
984                     rt1r = rt2r;
985                 }
986                 rt1i = 0.f;
987                 rt2i = 0.f;
988             }
989         }
990
991 /*        Look for two consecutive small subdiagonal elements. */
992
993         i__2 = l;
994         for (m = i__ - 2; m >= i__2; --m) {
995 /*           Determine the effect of starting the double-shift QR */
996 /*           iteration at row M, and see if this would make H(M,M-1) */
997 /*           negligible.  (The following uses scaling to avoid */
998 /*           overflows and most underflows.) */
999
1000             h21s = h__[m + 1 + m * h_dim1];
1001             s = (r__1 = h__[m + m * h_dim1] - rt2r, abs(r__1)) + abs(rt2i) + 
1002                     abs(h21s);
1003             h21s = h__[m + 1 + m * h_dim1] / s;
1004             v[0] = h21s * h__[m + (m + 1) * h_dim1] + (h__[m + m * h_dim1] - 
1005                     rt1r) * ((h__[m + m * h_dim1] - rt2r) / s) - rt1i * (rt2i 
1006                     / s);
1007             v[1] = h21s * (h__[m + m * h_dim1] + h__[m + 1 + (m + 1) * h_dim1]
1008                      - rt1r - rt2r);
1009             v[2] = h21s * h__[m + 2 + (m + 1) * h_dim1];
1010             s = abs(v[0]) + abs(v[1]) + abs(v[2]);
1011             v[0] /= s;
1012             v[1] /= s;
1013             v[2] /= s;
1014             if (m == l) {
1015                 goto L60;
1016             }
1017             if ((r__1 = h__[m + (m - 1) * h_dim1], abs(r__1)) * (abs(v[1]) + 
1018                     abs(v[2])) <= ulp * abs(v[0]) * ((r__2 = h__[m - 1 + (m - 
1019                     1) * h_dim1], abs(r__2)) + (r__3 = h__[m + m * h_dim1], 
1020                     abs(r__3)) + (r__4 = h__[m + 1 + (m + 1) * h_dim1], abs(
1021                     r__4)))) {
1022                 goto L60;
1023             }
1024 /* L50: */
1025         }
1026 L60:
1027
1028 /*        Double-shift QR step */
1029
1030         i__2 = i__ - 1;
1031         for (k = m; k <= i__2; ++k) {
1032
1033 /*           The first iteration of this loop determines a reflection G */
1034 /*           from the vector V and applies it from left and right to H, */
1035 /*           thus creating a nonzero bulge below the subdiagonal. */
1036
1037 /*           Each subsequent iteration determines a reflection G to */
1038 /*           restore the Hessenberg form in the (K-1)th column, and thus */
1039 /*           chases the bulge one step toward the bottom of the active */
1040 /*           submatrix. NR is the order of G. */
1041
1042 /* Computing MIN */
1043             i__3 = 3, i__4 = i__ - k + 1;
1044             nr = f2cmin(i__3,i__4);
1045             if (k > m) {
1046                 scopy_(&nr, &h__[k + (k - 1) * h_dim1], &c__1, v, &c__1);
1047             }
1048             slarfg_(&nr, v, &v[1], &c__1, &t1);
1049             if (k > m) {
1050                 h__[k + (k - 1) * h_dim1] = v[0];
1051                 h__[k + 1 + (k - 1) * h_dim1] = 0.f;
1052                 if (k < i__ - 1) {
1053                     h__[k + 2 + (k - 1) * h_dim1] = 0.f;
1054                 }
1055             } else if (m > l) {
1056 /*               ==== Use the following instead of */
1057 /*               .    H( K, K-1 ) = -H( K, K-1 ) to */
1058 /*               .    avoid a bug when v(2) and v(3) */
1059 /*               .    underflow. ==== */
1060                 h__[k + (k - 1) * h_dim1] *= 1.f - t1;
1061             }
1062             v2 = v[1];
1063             t2 = t1 * v2;
1064             if (nr == 3) {
1065                 v3 = v[2];
1066                 t3 = t1 * v3;
1067
1068 /*              Apply G from the left to transform the rows of the matrix */
1069 /*              in columns K to I2. */
1070
1071                 i__3 = i2;
1072                 for (j = k; j <= i__3; ++j) {
1073                     sum = h__[k + j * h_dim1] + v2 * h__[k + 1 + j * h_dim1] 
1074                             + v3 * h__[k + 2 + j * h_dim1];
1075                     h__[k + j * h_dim1] -= sum * t1;
1076                     h__[k + 1 + j * h_dim1] -= sum * t2;
1077                     h__[k + 2 + j * h_dim1] -= sum * t3;
1078 /* L70: */
1079                 }
1080
1081 /*              Apply G from the right to transform the columns of the */
1082 /*              matrix in rows I1 to f2cmin(K+3,I). */
1083
1084 /* Computing MIN */
1085                 i__4 = k + 3;
1086                 i__3 = f2cmin(i__4,i__);
1087                 for (j = i1; j <= i__3; ++j) {
1088                     sum = h__[j + k * h_dim1] + v2 * h__[j + (k + 1) * h_dim1]
1089                              + v3 * h__[j + (k + 2) * h_dim1];
1090                     h__[j + k * h_dim1] -= sum * t1;
1091                     h__[j + (k + 1) * h_dim1] -= sum * t2;
1092                     h__[j + (k + 2) * h_dim1] -= sum * t3;
1093 /* L80: */
1094                 }
1095
1096                 if (*wantz) {
1097
1098 /*                 Accumulate transformations in the matrix Z */
1099
1100                     i__3 = *ihiz;
1101                     for (j = *iloz; j <= i__3; ++j) {
1102                         sum = z__[j + k * z_dim1] + v2 * z__[j + (k + 1) * 
1103                                 z_dim1] + v3 * z__[j + (k + 2) * z_dim1];
1104                         z__[j + k * z_dim1] -= sum * t1;
1105                         z__[j + (k + 1) * z_dim1] -= sum * t2;
1106                         z__[j + (k + 2) * z_dim1] -= sum * t3;
1107 /* L90: */
1108                     }
1109                 }
1110             } else if (nr == 2) {
1111
1112 /*              Apply G from the left to transform the rows of the matrix */
1113 /*              in columns K to I2. */
1114
1115                 i__3 = i2;
1116                 for (j = k; j <= i__3; ++j) {
1117                     sum = h__[k + j * h_dim1] + v2 * h__[k + 1 + j * h_dim1];
1118                     h__[k + j * h_dim1] -= sum * t1;
1119                     h__[k + 1 + j * h_dim1] -= sum * t2;
1120 /* L100: */
1121                 }
1122
1123 /*              Apply G from the right to transform the columns of the */
1124 /*              matrix in rows I1 to f2cmin(K+3,I). */
1125
1126                 i__3 = i__;
1127                 for (j = i1; j <= i__3; ++j) {
1128                     sum = h__[j + k * h_dim1] + v2 * h__[j + (k + 1) * h_dim1]
1129                             ;
1130                     h__[j + k * h_dim1] -= sum * t1;
1131                     h__[j + (k + 1) * h_dim1] -= sum * t2;
1132 /* L110: */
1133                 }
1134
1135                 if (*wantz) {
1136
1137 /*                 Accumulate transformations in the matrix Z */
1138
1139                     i__3 = *ihiz;
1140                     for (j = *iloz; j <= i__3; ++j) {
1141                         sum = z__[j + k * z_dim1] + v2 * z__[j + (k + 1) * 
1142                                 z_dim1];
1143                         z__[j + k * z_dim1] -= sum * t1;
1144                         z__[j + (k + 1) * z_dim1] -= sum * t2;
1145 /* L120: */
1146                     }
1147                 }
1148             }
1149 /* L130: */
1150         }
1151
1152 /* L140: */
1153     }
1154
1155 /*     Failure to converge in remaining number of iterations */
1156
1157     *info = i__;
1158     return 0;
1159
1160 L150:
1161
1162     if (l == i__) {
1163
1164 /*        H(I,I-1) is negligible: one eigenvalue has converged. */
1165
1166         wr[i__] = h__[i__ + i__ * h_dim1];
1167         wi[i__] = 0.f;
1168     } else if (l == i__ - 1) {
1169
1170 /*        H(I-1,I-2) is negligible: a pair of eigenvalues have converged. */
1171
1172 /*        Transform the 2-by-2 submatrix to standard Schur form, */
1173 /*        and compute and store the eigenvalues. */
1174
1175         slanv2_(&h__[i__ - 1 + (i__ - 1) * h_dim1], &h__[i__ - 1 + i__ * 
1176                 h_dim1], &h__[i__ + (i__ - 1) * h_dim1], &h__[i__ + i__ * 
1177                 h_dim1], &wr[i__ - 1], &wi[i__ - 1], &wr[i__], &wi[i__], &cs, 
1178                 &sn);
1179
1180         if (*wantt) {
1181
1182 /*           Apply the transformation to the rest of H. */
1183
1184             if (i2 > i__) {
1185                 i__1 = i2 - i__;
1186                 srot_(&i__1, &h__[i__ - 1 + (i__ + 1) * h_dim1], ldh, &h__[
1187                         i__ + (i__ + 1) * h_dim1], ldh, &cs, &sn);
1188             }
1189             i__1 = i__ - i1 - 1;
1190             srot_(&i__1, &h__[i1 + (i__ - 1) * h_dim1], &c__1, &h__[i1 + i__ *
1191                      h_dim1], &c__1, &cs, &sn);
1192         }
1193         if (*wantz) {
1194
1195 /*           Apply the transformation to Z. */
1196
1197             srot_(&nz, &z__[*iloz + (i__ - 1) * z_dim1], &c__1, &z__[*iloz + 
1198                     i__ * z_dim1], &c__1, &cs, &sn);
1199         }
1200     }
1201
1202 /*     return to start of the main loop with new value of I. */
1203
1204     i__ = l - 1;
1205     goto L20;
1206
1207 L160:
1208     return 0;
1209
1210 /*     End of SLAHQR */
1211
1212 } /* slahqr_ */
1213