C_LAPACK: Fixes to make it compile with MSVC (#3605)
[platform/upstream/openblas.git] / lapack-netlib / SRC / DEPRECATED / dgegv.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 doublereal c_b27 = 1.;
518 static doublereal c_b38 = 0.;
519
520 /* > \brief <b> DGEEVX computes the eigenvalues and, optionally, the left and/or right eigenvectors for GE mat
521 rices</b> */
522
523 /*  =========== DOCUMENTATION =========== */
524
525 /* Online html documentation available at */
526 /*            http://www.netlib.org/lapack/explore-html/ */
527
528 /* > \htmlonly */
529 /* > Download DGEGV + dependencies */
530 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/dgegv.f
531 "> */
532 /* > [TGZ]</a> */
533 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/dgegv.f
534 "> */
535 /* > [ZIP]</a> */
536 /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/dgegv.f
537 "> */
538 /* > [TXT]</a> */
539 /* > \endhtmlonly */
540
541 /*  Definition: */
542 /*  =========== */
543
544 /*       SUBROUTINE DGEGV( JOBVL, JOBVR, N, A, LDA, B, LDB, ALPHAR, ALPHAI, */
545 /*                         BETA, VL, LDVL, VR, LDVR, WORK, LWORK, INFO ) */
546
547 /*       CHARACTER          JOBVL, JOBVR */
548 /*       INTEGER            INFO, LDA, LDB, LDVL, LDVR, LWORK, N */
549 /*       DOUBLE PRECISION   A( LDA, * ), ALPHAI( * ), ALPHAR( * ), */
550 /*      $                   B( LDB, * ), BETA( * ), VL( LDVL, * ), */
551 /*      $                   VR( LDVR, * ), WORK( * ) */
552
553
554 /* > \par Purpose: */
555 /*  ============= */
556 /* > */
557 /* > \verbatim */
558 /* > */
559 /* > This routine is deprecated and has been replaced by routine DGGEV. */
560 /* > */
561 /* > DGEGV computes the eigenvalues and, optionally, the left and/or right */
562 /* > eigenvectors of a real matrix pair (A,B). */
563 /* > Given two square matrices A and B, */
564 /* > the generalized nonsymmetric eigenvalue problem (GNEP) is to find the */
565 /* > eigenvalues lambda and corresponding (non-zero) eigenvectors x such */
566 /* > that */
567 /* > */
568 /* >    A*x = lambda*B*x. */
569 /* > */
570 /* > An alternate form is to find the eigenvalues mu and corresponding */
571 /* > eigenvectors y such that */
572 /* > */
573 /* >    mu*A*y = B*y. */
574 /* > */
575 /* > These two forms are equivalent with mu = 1/lambda and x = y if */
576 /* > neither lambda nor mu is zero.  In order to deal with the case that */
577 /* > lambda or mu is zero or small, two values alpha and beta are returned */
578 /* > for each eigenvalue, such that lambda = alpha/beta and */
579 /* > mu = beta/alpha. */
580 /* > */
581 /* > The vectors x and y in the above equations are right eigenvectors of */
582 /* > the matrix pair (A,B).  Vectors u and v satisfying */
583 /* > */
584 /* >    u**H*A = lambda*u**H*B  or  mu*v**H*A = v**H*B */
585 /* > */
586 /* > are left eigenvectors of (A,B). */
587 /* > */
588 /* > Note: this routine performs "full balancing" on A and B */
589 /* > \endverbatim */
590
591 /*  Arguments: */
592 /*  ========== */
593
594 /* > \param[in] JOBVL */
595 /* > \verbatim */
596 /* >          JOBVL is CHARACTER*1 */
597 /* >          = 'N':  do not compute the left generalized eigenvectors; */
598 /* >          = 'V':  compute the left generalized eigenvectors (returned */
599 /* >                  in VL). */
600 /* > \endverbatim */
601 /* > */
602 /* > \param[in] JOBVR */
603 /* > \verbatim */
604 /* >          JOBVR is CHARACTER*1 */
605 /* >          = 'N':  do not compute the right generalized eigenvectors; */
606 /* >          = 'V':  compute the right generalized eigenvectors (returned */
607 /* >                  in VR). */
608 /* > \endverbatim */
609 /* > */
610 /* > \param[in] N */
611 /* > \verbatim */
612 /* >          N is INTEGER */
613 /* >          The order of the matrices A, B, VL, and VR.  N >= 0. */
614 /* > \endverbatim */
615 /* > */
616 /* > \param[in,out] A */
617 /* > \verbatim */
618 /* >          A is DOUBLE PRECISION array, dimension (LDA, N) */
619 /* >          On entry, the matrix A. */
620 /* >          If JOBVL = 'V' or JOBVR = 'V', then on exit A */
621 /* >          contains the real Schur form of A from the generalized Schur */
622 /* >          factorization of the pair (A,B) after balancing. */
623 /* >          If no eigenvectors were computed, then only the diagonal */
624 /* >          blocks from the Schur form will be correct.  See DGGHRD and */
625 /* >          DHGEQZ for details. */
626 /* > \endverbatim */
627 /* > */
628 /* > \param[in] LDA */
629 /* > \verbatim */
630 /* >          LDA is INTEGER */
631 /* >          The leading dimension of A.  LDA >= f2cmax(1,N). */
632 /* > \endverbatim */
633 /* > */
634 /* > \param[in,out] B */
635 /* > \verbatim */
636 /* >          B is DOUBLE PRECISION array, dimension (LDB, N) */
637 /* >          On entry, the matrix B. */
638 /* >          If JOBVL = 'V' or JOBVR = 'V', then on exit B contains the */
639 /* >          upper triangular matrix obtained from B in the generalized */
640 /* >          Schur factorization of the pair (A,B) after balancing. */
641 /* >          If no eigenvectors were computed, then only those elements of */
642 /* >          B corresponding to the diagonal blocks from the Schur form of */
643 /* >          A will be correct.  See DGGHRD and DHGEQZ for details. */
644 /* > \endverbatim */
645 /* > */
646 /* > \param[in] LDB */
647 /* > \verbatim */
648 /* >          LDB is INTEGER */
649 /* >          The leading dimension of B.  LDB >= f2cmax(1,N). */
650 /* > \endverbatim */
651 /* > */
652 /* > \param[out] ALPHAR */
653 /* > \verbatim */
654 /* >          ALPHAR is DOUBLE PRECISION array, dimension (N) */
655 /* >          The real parts of each scalar alpha defining an eigenvalue of */
656 /* >          GNEP. */
657 /* > \endverbatim */
658 /* > */
659 /* > \param[out] ALPHAI */
660 /* > \verbatim */
661 /* >          ALPHAI is DOUBLE PRECISION array, dimension (N) */
662 /* >          The imaginary parts of each scalar alpha defining an */
663 /* >          eigenvalue of GNEP.  If ALPHAI(j) is zero, then the j-th */
664 /* >          eigenvalue is real; if positive, then the j-th and */
665 /* >          (j+1)-st eigenvalues are a complex conjugate pair, with */
666 /* >          ALPHAI(j+1) = -ALPHAI(j). */
667 /* > \endverbatim */
668 /* > */
669 /* > \param[out] BETA */
670 /* > \verbatim */
671 /* >          BETA is DOUBLE PRECISION array, dimension (N) */
672 /* >          The scalars beta that define the eigenvalues of GNEP. */
673 /* > */
674 /* >          Together, the quantities alpha = (ALPHAR(j),ALPHAI(j)) and */
675 /* >          beta = BETA(j) represent the j-th eigenvalue of the matrix */
676 /* >          pair (A,B), in one of the forms lambda = alpha/beta or */
677 /* >          mu = beta/alpha.  Since either lambda or mu may overflow, */
678 /* >          they should not, in general, be computed. */
679 /* > \endverbatim */
680 /* > */
681 /* > \param[out] VL */
682 /* > \verbatim */
683 /* >          VL is DOUBLE PRECISION array, dimension (LDVL,N) */
684 /* >          If JOBVL = 'V', the left eigenvectors u(j) are stored */
685 /* >          in the columns of VL, in the same order as their eigenvalues. */
686 /* >          If the j-th eigenvalue is real, then u(j) = VL(:,j). */
687 /* >          If the j-th and (j+1)-st eigenvalues form a complex conjugate */
688 /* >          pair, then */
689 /* >             u(j) = VL(:,j) + i*VL(:,j+1) */
690 /* >          and */
691 /* >            u(j+1) = VL(:,j) - i*VL(:,j+1). */
692 /* > */
693 /* >          Each eigenvector is scaled so that its largest component has */
694 /* >          abs(real part) + abs(imag. part) = 1, except for eigenvectors */
695 /* >          corresponding to an eigenvalue with alpha = beta = 0, which */
696 /* >          are set to zero. */
697 /* >          Not referenced if JOBVL = 'N'. */
698 /* > \endverbatim */
699 /* > */
700 /* > \param[in] LDVL */
701 /* > \verbatim */
702 /* >          LDVL is INTEGER */
703 /* >          The leading dimension of the matrix VL. LDVL >= 1, and */
704 /* >          if JOBVL = 'V', LDVL >= N. */
705 /* > \endverbatim */
706 /* > */
707 /* > \param[out] VR */
708 /* > \verbatim */
709 /* >          VR is DOUBLE PRECISION array, dimension (LDVR,N) */
710 /* >          If JOBVR = 'V', the right eigenvectors x(j) are stored */
711 /* >          in the columns of VR, in the same order as their eigenvalues. */
712 /* >          If the j-th eigenvalue is real, then x(j) = VR(:,j). */
713 /* >          If the j-th and (j+1)-st eigenvalues form a complex conjugate */
714 /* >          pair, then */
715 /* >            x(j) = VR(:,j) + i*VR(:,j+1) */
716 /* >          and */
717 /* >            x(j+1) = VR(:,j) - i*VR(:,j+1). */
718 /* > */
719 /* >          Each eigenvector is scaled so that its largest component has */
720 /* >          abs(real part) + abs(imag. part) = 1, except for eigenvalues */
721 /* >          corresponding to an eigenvalue with alpha = beta = 0, which */
722 /* >          are set to zero. */
723 /* >          Not referenced if JOBVR = 'N'. */
724 /* > \endverbatim */
725 /* > */
726 /* > \param[in] LDVR */
727 /* > \verbatim */
728 /* >          LDVR is INTEGER */
729 /* >          The leading dimension of the matrix VR. LDVR >= 1, and */
730 /* >          if JOBVR = 'V', LDVR >= N. */
731 /* > \endverbatim */
732 /* > */
733 /* > \param[out] WORK */
734 /* > \verbatim */
735 /* >          WORK is DOUBLE PRECISION array, dimension (MAX(1,LWORK)) */
736 /* >          On exit, if INFO = 0, WORK(1) returns the optimal LWORK. */
737 /* > \endverbatim */
738 /* > */
739 /* > \param[in] LWORK */
740 /* > \verbatim */
741 /* >          LWORK is INTEGER */
742 /* >          The dimension of the array WORK.  LWORK >= f2cmax(1,8*N). */
743 /* >          For good performance, LWORK must generally be larger. */
744 /* >          To compute the optimal value of LWORK, call ILAENV to get */
745 /* >          blocksizes (for DGEQRF, DORMQR, and DORGQR.)  Then compute: */
746 /* >          NB  -- MAX of the blocksizes for DGEQRF, DORMQR, and DORGQR; */
747 /* >          The optimal LWORK is: */
748 /* >              2*N + MAX( 6*N, N*(NB+1) ). */
749 /* > */
750 /* >          If LWORK = -1, then a workspace query is assumed; the routine */
751 /* >          only calculates the optimal size of the WORK array, returns */
752 /* >          this value as the first entry of the WORK array, and no error */
753 /* >          message related to LWORK is issued by XERBLA. */
754 /* > \endverbatim */
755 /* > */
756 /* > \param[out] INFO */
757 /* > \verbatim */
758 /* >          INFO is INTEGER */
759 /* >          = 0:  successful exit */
760 /* >          < 0:  if INFO = -i, the i-th argument had an illegal value. */
761 /* >          = 1,...,N: */
762 /* >                The QZ iteration failed.  No eigenvectors have been */
763 /* >                calculated, but ALPHAR(j), ALPHAI(j), and BETA(j) */
764 /* >                should be correct for j=INFO+1,...,N. */
765 /* >          > N:  errors that usually indicate LAPACK problems: */
766 /* >                =N+1: error return from DGGBAL */
767 /* >                =N+2: error return from DGEQRF */
768 /* >                =N+3: error return from DORMQR */
769 /* >                =N+4: error return from DORGQR */
770 /* >                =N+5: error return from DGGHRD */
771 /* >                =N+6: error return from DHGEQZ (other than failed */
772 /* >                                                iteration) */
773 /* >                =N+7: error return from DTGEVC */
774 /* >                =N+8: error return from DGGBAK (computing VL) */
775 /* >                =N+9: error return from DGGBAK (computing VR) */
776 /* >                =N+10: error return from DLASCL (various calls) */
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 December 2016 */
788
789 /* > \ingroup doubleGEeigen */
790
791 /* > \par Further Details: */
792 /*  ===================== */
793 /* > */
794 /* > \verbatim */
795 /* > */
796 /* >  Balancing */
797 /* >  --------- */
798 /* > */
799 /* >  This driver calls DGGBAL to both permute and scale rows and columns */
800 /* >  of A and B.  The permutations PL and PR are chosen so that PL*A*PR */
801 /* >  and PL*B*R will be upper triangular except for the diagonal blocks */
802 /* >  A(i:j,i:j) and B(i:j,i:j), with i and j as close together as */
803 /* >  possible.  The diagonal scaling matrices DL and DR are chosen so */
804 /* >  that the pair  DL*PL*A*PR*DR, DL*PL*B*PR*DR have elements close to */
805 /* >  one (except for the elements that start out zero.) */
806 /* > */
807 /* >  After the eigenvalues and eigenvectors of the balanced matrices */
808 /* >  have been computed, DGGBAK transforms the eigenvectors back to what */
809 /* >  they would have been (in perfect arithmetic) if they had not been */
810 /* >  balanced. */
811 /* > */
812 /* >  Contents of A and B on Exit */
813 /* >  -------- -- - --- - -- ---- */
814 /* > */
815 /* >  If any eigenvectors are computed (either JOBVL='V' or JOBVR='V' or */
816 /* >  both), then on exit the arrays A and B will contain the real Schur */
817 /* >  form[*] of the "balanced" versions of A and B.  If no eigenvectors */
818 /* >  are computed, then only the diagonal blocks will be correct. */
819 /* > */
820 /* >  [*] See DHGEQZ, DGEGS, or read the book "Matrix Computations", */
821 /* >      by Golub & van Loan, pub. by Johns Hopkins U. Press. */
822 /* > \endverbatim */
823 /* > */
824 /*  ===================================================================== */
825 /* Subroutine */ int dgegv_(char *jobvl, char *jobvr, integer *n, doublereal *
826         a, integer *lda, doublereal *b, integer *ldb, doublereal *alphar, 
827         doublereal *alphai, doublereal *beta, doublereal *vl, integer *ldvl, 
828         doublereal *vr, integer *ldvr, doublereal *work, integer *lwork, 
829         integer *info)
830 {
831     /* System generated locals */
832     integer a_dim1, a_offset, b_dim1, b_offset, vl_dim1, vl_offset, vr_dim1, 
833             vr_offset, i__1, i__2;
834     doublereal d__1, d__2, d__3, d__4;
835
836     /* Local variables */
837     doublereal absb, anrm, bnrm;
838     integer itau;
839     doublereal temp;
840     logical ilvl, ilvr;
841     integer lopt;
842     doublereal anrm1, anrm2, bnrm1, bnrm2, absai, scale, absar, sbeta;
843     extern logical lsame_(char *, char *);
844     integer ileft, iinfo, icols, iwork, irows, jc;
845     extern /* Subroutine */ int dggbak_(char *, char *, integer *, integer *, 
846             integer *, doublereal *, doublereal *, integer *, doublereal *, 
847             integer *, integer *);
848     integer nb;
849     extern /* Subroutine */ int dggbal_(char *, integer *, doublereal *, 
850             integer *, doublereal *, integer *, integer *, integer *, 
851             doublereal *, doublereal *, doublereal *, integer *);
852     integer in;
853     extern doublereal dlamch_(char *), dlange_(char *, integer *, 
854             integer *, doublereal *, integer *, doublereal *);
855     integer jr;
856     doublereal salfai;
857     extern /* Subroutine */ int dgghrd_(char *, char *, integer *, integer *, 
858             integer *, doublereal *, integer *, doublereal *, integer *, 
859             doublereal *, integer *, doublereal *, integer *, integer *), dlascl_(char *, integer *, integer *, doublereal 
860             *, doublereal *, integer *, integer *, doublereal *, integer *, 
861             integer *);
862     doublereal salfar;
863     extern /* Subroutine */ int dgeqrf_(integer *, integer *, doublereal *, 
864             integer *, doublereal *, doublereal *, integer *, integer *), 
865             dlacpy_(char *, integer *, integer *, doublereal *, integer *, 
866             doublereal *, integer *);
867     doublereal safmin;
868     extern /* Subroutine */ int dlaset_(char *, integer *, integer *, 
869             doublereal *, doublereal *, doublereal *, integer *);
870     doublereal safmax;
871     char chtemp[1];
872     logical ldumma[1];
873     extern /* Subroutine */ int dhgeqz_(char *, char *, char *, integer *, 
874             integer *, integer *, doublereal *, integer *, doublereal *, 
875             integer *, doublereal *, doublereal *, doublereal *, doublereal *,
876              integer *, doublereal *, integer *, doublereal *, integer *, 
877             integer *), dtgevc_(char *, char *, 
878             logical *, integer *, doublereal *, integer *, doublereal *, 
879             integer *, doublereal *, integer *, doublereal *, integer *, 
880             integer *, integer *, doublereal *, integer *), 
881             xerbla_(char *, integer *);
882     integer ijobvl, iright;
883     logical ilimit;
884     extern integer ilaenv_(integer *, char *, char *, integer *, integer *, 
885             integer *, integer *, ftnlen, ftnlen);
886     integer ijobvr;
887     extern /* Subroutine */ int dorgqr_(integer *, integer *, integer *, 
888             doublereal *, integer *, doublereal *, doublereal *, integer *, 
889             integer *);
890     doublereal onepls;
891     integer lwkmin, nb1, nb2, nb3;
892     extern /* Subroutine */ int dormqr_(char *, char *, integer *, integer *, 
893             integer *, doublereal *, integer *, doublereal *, doublereal *, 
894             integer *, doublereal *, integer *, integer *);
895     integer lwkopt;
896     logical lquery;
897     integer ihi, ilo;
898     doublereal eps;
899     logical ilv;
900
901
902 /*  -- LAPACK driver routine (version 3.7.0) -- */
903 /*  -- LAPACK is a software package provided by Univ. of Tennessee,    -- */
904 /*  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- */
905 /*     December 2016 */
906
907
908 /*  ===================================================================== */
909
910
911 /*     Decode the input arguments */
912
913     /* Parameter adjustments */
914     a_dim1 = *lda;
915     a_offset = 1 + a_dim1 * 1;
916     a -= a_offset;
917     b_dim1 = *ldb;
918     b_offset = 1 + b_dim1 * 1;
919     b -= b_offset;
920     --alphar;
921     --alphai;
922     --beta;
923     vl_dim1 = *ldvl;
924     vl_offset = 1 + vl_dim1 * 1;
925     vl -= vl_offset;
926     vr_dim1 = *ldvr;
927     vr_offset = 1 + vr_dim1 * 1;
928     vr -= vr_offset;
929     --work;
930
931     /* Function Body */
932     if (lsame_(jobvl, "N")) {
933         ijobvl = 1;
934         ilvl = FALSE_;
935     } else if (lsame_(jobvl, "V")) {
936         ijobvl = 2;
937         ilvl = TRUE_;
938     } else {
939         ijobvl = -1;
940         ilvl = FALSE_;
941     }
942
943     if (lsame_(jobvr, "N")) {
944         ijobvr = 1;
945         ilvr = FALSE_;
946     } else if (lsame_(jobvr, "V")) {
947         ijobvr = 2;
948         ilvr = TRUE_;
949     } else {
950         ijobvr = -1;
951         ilvr = FALSE_;
952     }
953     ilv = ilvl || ilvr;
954
955 /*     Test the input arguments */
956
957 /* Computing MAX */
958     i__1 = *n << 3;
959     lwkmin = f2cmax(i__1,1);
960     lwkopt = lwkmin;
961     work[1] = (doublereal) lwkopt;
962     lquery = *lwork == -1;
963     *info = 0;
964     if (ijobvl <= 0) {
965         *info = -1;
966     } else if (ijobvr <= 0) {
967         *info = -2;
968     } else if (*n < 0) {
969         *info = -3;
970     } else if (*lda < f2cmax(1,*n)) {
971         *info = -5;
972     } else if (*ldb < f2cmax(1,*n)) {
973         *info = -7;
974     } else if (*ldvl < 1 || ilvl && *ldvl < *n) {
975         *info = -12;
976     } else if (*ldvr < 1 || ilvr && *ldvr < *n) {
977         *info = -14;
978     } else if (*lwork < lwkmin && ! lquery) {
979         *info = -16;
980     }
981
982     if (*info == 0) {
983         nb1 = ilaenv_(&c__1, "DGEQRF", " ", n, n, &c_n1, &c_n1, (ftnlen)6, (
984                 ftnlen)1);
985         nb2 = ilaenv_(&c__1, "DORMQR", " ", n, n, n, &c_n1, (ftnlen)6, (
986                 ftnlen)1);
987         nb3 = ilaenv_(&c__1, "DORGQR", " ", n, n, n, &c_n1, (ftnlen)6, (
988                 ftnlen)1);
989 /* Computing MAX */
990         i__1 = f2cmax(nb1,nb2);
991         nb = f2cmax(i__1,nb3);
992 /* Computing MAX */
993         i__1 = *n * 6, i__2 = *n * (nb + 1);
994         lopt = (*n << 1) + f2cmax(i__1,i__2);
995         work[1] = (doublereal) lopt;
996     }
997
998     if (*info != 0) {
999         i__1 = -(*info);
1000         xerbla_("DGEGV ", &i__1);
1001         return 0;
1002     } else if (lquery) {
1003         return 0;
1004     }
1005
1006 /*     Quick return if possible */
1007
1008     if (*n == 0) {
1009         return 0;
1010     }
1011
1012 /*     Get machine constants */
1013
1014     eps = dlamch_("E") * dlamch_("B");
1015     safmin = dlamch_("S");
1016     safmin += safmin;
1017     safmax = 1. / safmin;
1018     onepls = eps * 4 + 1.;
1019
1020 /*     Scale A */
1021
1022     anrm = dlange_("M", n, n, &a[a_offset], lda, &work[1]);
1023     anrm1 = anrm;
1024     anrm2 = 1.;
1025     if (anrm < 1.) {
1026         if (safmax * anrm < 1.) {
1027             anrm1 = safmin;
1028             anrm2 = safmax * anrm;
1029         }
1030     }
1031
1032     if (anrm > 0.) {
1033         dlascl_("G", &c_n1, &c_n1, &anrm, &c_b27, n, n, &a[a_offset], lda, &
1034                 iinfo);
1035         if (iinfo != 0) {
1036             *info = *n + 10;
1037             return 0;
1038         }
1039     }
1040
1041 /*     Scale B */
1042
1043     bnrm = dlange_("M", n, n, &b[b_offset], ldb, &work[1]);
1044     bnrm1 = bnrm;
1045     bnrm2 = 1.;
1046     if (bnrm < 1.) {
1047         if (safmax * bnrm < 1.) {
1048             bnrm1 = safmin;
1049             bnrm2 = safmax * bnrm;
1050         }
1051     }
1052
1053     if (bnrm > 0.) {
1054         dlascl_("G", &c_n1, &c_n1, &bnrm, &c_b27, n, n, &b[b_offset], ldb, &
1055                 iinfo);
1056         if (iinfo != 0) {
1057             *info = *n + 10;
1058             return 0;
1059         }
1060     }
1061
1062 /*     Permute the matrix to make it more nearly triangular */
1063 /*     Workspace layout:  (8*N words -- "work" requires 6*N words) */
1064 /*        left_permutation, right_permutation, work... */
1065
1066     ileft = 1;
1067     iright = *n + 1;
1068     iwork = iright + *n;
1069     dggbal_("P", n, &a[a_offset], lda, &b[b_offset], ldb, &ilo, &ihi, &work[
1070             ileft], &work[iright], &work[iwork], &iinfo);
1071     if (iinfo != 0) {
1072         *info = *n + 1;
1073         goto L120;
1074     }
1075
1076 /*     Reduce B to triangular form, and initialize VL and/or VR */
1077 /*     Workspace layout:  ("work..." must have at least N words) */
1078 /*        left_permutation, right_permutation, tau, work... */
1079
1080     irows = ihi + 1 - ilo;
1081     if (ilv) {
1082         icols = *n + 1 - ilo;
1083     } else {
1084         icols = irows;
1085     }
1086     itau = iwork;
1087     iwork = itau + irows;
1088     i__1 = *lwork + 1 - iwork;
1089     dgeqrf_(&irows, &icols, &b[ilo + ilo * b_dim1], ldb, &work[itau], &work[
1090             iwork], &i__1, &iinfo);
1091     if (iinfo >= 0) {
1092 /* Computing MAX */
1093         i__1 = lwkopt, i__2 = (integer) work[iwork] + iwork - 1;
1094         lwkopt = f2cmax(i__1,i__2);
1095     }
1096     if (iinfo != 0) {
1097         *info = *n + 2;
1098         goto L120;
1099     }
1100
1101     i__1 = *lwork + 1 - iwork;
1102     dormqr_("L", "T", &irows, &icols, &irows, &b[ilo + ilo * b_dim1], ldb, &
1103             work[itau], &a[ilo + ilo * a_dim1], lda, &work[iwork], &i__1, &
1104             iinfo);
1105     if (iinfo >= 0) {
1106 /* Computing MAX */
1107         i__1 = lwkopt, i__2 = (integer) work[iwork] + iwork - 1;
1108         lwkopt = f2cmax(i__1,i__2);
1109     }
1110     if (iinfo != 0) {
1111         *info = *n + 3;
1112         goto L120;
1113     }
1114
1115     if (ilvl) {
1116         dlaset_("Full", n, n, &c_b38, &c_b27, &vl[vl_offset], ldvl)
1117                 ;
1118         i__1 = irows - 1;
1119         i__2 = irows - 1;
1120         dlacpy_("L", &i__1, &i__2, &b[ilo + 1 + ilo * b_dim1], ldb, &vl[ilo + 
1121                 1 + ilo * vl_dim1], ldvl);
1122         i__1 = *lwork + 1 - iwork;
1123         dorgqr_(&irows, &irows, &irows, &vl[ilo + ilo * vl_dim1], ldvl, &work[
1124                 itau], &work[iwork], &i__1, &iinfo);
1125         if (iinfo >= 0) {
1126 /* Computing MAX */
1127             i__1 = lwkopt, i__2 = (integer) work[iwork] + iwork - 1;
1128             lwkopt = f2cmax(i__1,i__2);
1129         }
1130         if (iinfo != 0) {
1131             *info = *n + 4;
1132             goto L120;
1133         }
1134     }
1135
1136     if (ilvr) {
1137         dlaset_("Full", n, n, &c_b38, &c_b27, &vr[vr_offset], ldvr)
1138                 ;
1139     }
1140
1141 /*     Reduce to generalized Hessenberg form */
1142
1143     if (ilv) {
1144
1145 /*        Eigenvectors requested -- work on whole matrix. */
1146
1147         dgghrd_(jobvl, jobvr, n, &ilo, &ihi, &a[a_offset], lda, &b[b_offset], 
1148                 ldb, &vl[vl_offset], ldvl, &vr[vr_offset], ldvr, &iinfo);
1149     } else {
1150         dgghrd_("N", "N", &irows, &c__1, &irows, &a[ilo + ilo * a_dim1], lda, 
1151                 &b[ilo + ilo * b_dim1], ldb, &vl[vl_offset], ldvl, &vr[
1152                 vr_offset], ldvr, &iinfo);
1153     }
1154     if (iinfo != 0) {
1155         *info = *n + 5;
1156         goto L120;
1157     }
1158
1159 /*     Perform QZ algorithm */
1160 /*     Workspace layout:  ("work..." must have at least 1 word) */
1161 /*        left_permutation, right_permutation, work... */
1162
1163     iwork = itau;
1164     if (ilv) {
1165         *(unsigned char *)chtemp = 'S';
1166     } else {
1167         *(unsigned char *)chtemp = 'E';
1168     }
1169     i__1 = *lwork + 1 - iwork;
1170     dhgeqz_(chtemp, jobvl, jobvr, n, &ilo, &ihi, &a[a_offset], lda, &b[
1171             b_offset], ldb, &alphar[1], &alphai[1], &beta[1], &vl[vl_offset], 
1172             ldvl, &vr[vr_offset], ldvr, &work[iwork], &i__1, &iinfo);
1173     if (iinfo >= 0) {
1174 /* Computing MAX */
1175         i__1 = lwkopt, i__2 = (integer) work[iwork] + iwork - 1;
1176         lwkopt = f2cmax(i__1,i__2);
1177     }
1178     if (iinfo != 0) {
1179         if (iinfo > 0 && iinfo <= *n) {
1180             *info = iinfo;
1181         } else if (iinfo > *n && iinfo <= *n << 1) {
1182             *info = iinfo - *n;
1183         } else {
1184             *info = *n + 6;
1185         }
1186         goto L120;
1187     }
1188
1189     if (ilv) {
1190
1191 /*        Compute Eigenvectors  (DTGEVC requires 6*N words of workspace) */
1192
1193         if (ilvl) {
1194             if (ilvr) {
1195                 *(unsigned char *)chtemp = 'B';
1196             } else {
1197                 *(unsigned char *)chtemp = 'L';
1198             }
1199         } else {
1200             *(unsigned char *)chtemp = 'R';
1201         }
1202
1203         dtgevc_(chtemp, "B", ldumma, n, &a[a_offset], lda, &b[b_offset], ldb, 
1204                 &vl[vl_offset], ldvl, &vr[vr_offset], ldvr, n, &in, &work[
1205                 iwork], &iinfo);
1206         if (iinfo != 0) {
1207             *info = *n + 7;
1208             goto L120;
1209         }
1210
1211 /*        Undo balancing on VL and VR, rescale */
1212
1213         if (ilvl) {
1214             dggbak_("P", "L", n, &ilo, &ihi, &work[ileft], &work[iright], n, &
1215                     vl[vl_offset], ldvl, &iinfo);
1216             if (iinfo != 0) {
1217                 *info = *n + 8;
1218                 goto L120;
1219             }
1220             i__1 = *n;
1221             for (jc = 1; jc <= i__1; ++jc) {
1222                 if (alphai[jc] < 0.) {
1223                     goto L50;
1224                 }
1225                 temp = 0.;
1226                 if (alphai[jc] == 0.) {
1227                     i__2 = *n;
1228                     for (jr = 1; jr <= i__2; ++jr) {
1229 /* Computing MAX */
1230                         d__2 = temp, d__3 = (d__1 = vl[jr + jc * vl_dim1], 
1231                                 abs(d__1));
1232                         temp = f2cmax(d__2,d__3);
1233 /* L10: */
1234                     }
1235                 } else {
1236                     i__2 = *n;
1237                     for (jr = 1; jr <= i__2; ++jr) {
1238 /* Computing MAX */
1239                         d__3 = temp, d__4 = (d__1 = vl[jr + jc * vl_dim1], 
1240                                 abs(d__1)) + (d__2 = vl[jr + (jc + 1) * 
1241                                 vl_dim1], abs(d__2));
1242                         temp = f2cmax(d__3,d__4);
1243 /* L20: */
1244                     }
1245                 }
1246                 if (temp < safmin) {
1247                     goto L50;
1248                 }
1249                 temp = 1. / temp;
1250                 if (alphai[jc] == 0.) {
1251                     i__2 = *n;
1252                     for (jr = 1; jr <= i__2; ++jr) {
1253                         vl[jr + jc * vl_dim1] *= temp;
1254 /* L30: */
1255                     }
1256                 } else {
1257                     i__2 = *n;
1258                     for (jr = 1; jr <= i__2; ++jr) {
1259                         vl[jr + jc * vl_dim1] *= temp;
1260                         vl[jr + (jc + 1) * vl_dim1] *= temp;
1261 /* L40: */
1262                     }
1263                 }
1264 L50:
1265                 ;
1266             }
1267         }
1268         if (ilvr) {
1269             dggbak_("P", "R", n, &ilo, &ihi, &work[ileft], &work[iright], n, &
1270                     vr[vr_offset], ldvr, &iinfo);
1271             if (iinfo != 0) {
1272                 *info = *n + 9;
1273                 goto L120;
1274             }
1275             i__1 = *n;
1276             for (jc = 1; jc <= i__1; ++jc) {
1277                 if (alphai[jc] < 0.) {
1278                     goto L100;
1279                 }
1280                 temp = 0.;
1281                 if (alphai[jc] == 0.) {
1282                     i__2 = *n;
1283                     for (jr = 1; jr <= i__2; ++jr) {
1284 /* Computing MAX */
1285                         d__2 = temp, d__3 = (d__1 = vr[jr + jc * vr_dim1], 
1286                                 abs(d__1));
1287                         temp = f2cmax(d__2,d__3);
1288 /* L60: */
1289                     }
1290                 } else {
1291                     i__2 = *n;
1292                     for (jr = 1; jr <= i__2; ++jr) {
1293 /* Computing MAX */
1294                         d__3 = temp, d__4 = (d__1 = vr[jr + jc * vr_dim1], 
1295                                 abs(d__1)) + (d__2 = vr[jr + (jc + 1) * 
1296                                 vr_dim1], abs(d__2));
1297                         temp = f2cmax(d__3,d__4);
1298 /* L70: */
1299                     }
1300                 }
1301                 if (temp < safmin) {
1302                     goto L100;
1303                 }
1304                 temp = 1. / temp;
1305                 if (alphai[jc] == 0.) {
1306                     i__2 = *n;
1307                     for (jr = 1; jr <= i__2; ++jr) {
1308                         vr[jr + jc * vr_dim1] *= temp;
1309 /* L80: */
1310                     }
1311                 } else {
1312                     i__2 = *n;
1313                     for (jr = 1; jr <= i__2; ++jr) {
1314                         vr[jr + jc * vr_dim1] *= temp;
1315                         vr[jr + (jc + 1) * vr_dim1] *= temp;
1316 /* L90: */
1317                     }
1318                 }
1319 L100:
1320                 ;
1321             }
1322         }
1323
1324 /*        End of eigenvector calculation */
1325
1326     }
1327
1328 /*     Undo scaling in alpha, beta */
1329
1330 /*     Note: this does not give the alpha and beta for the unscaled */
1331 /*     problem. */
1332
1333 /*     Un-scaling is limited to avoid underflow in alpha and beta */
1334 /*     if they are significant. */
1335
1336     i__1 = *n;
1337     for (jc = 1; jc <= i__1; ++jc) {
1338         absar = (d__1 = alphar[jc], abs(d__1));
1339         absai = (d__1 = alphai[jc], abs(d__1));
1340         absb = (d__1 = beta[jc], abs(d__1));
1341         salfar = anrm * alphar[jc];
1342         salfai = anrm * alphai[jc];
1343         sbeta = bnrm * beta[jc];
1344         ilimit = FALSE_;
1345         scale = 1.;
1346
1347 /*        Check for significant underflow in ALPHAI */
1348
1349 /* Computing MAX */
1350         d__1 = safmin, d__2 = eps * absar, d__1 = f2cmax(d__1,d__2), d__2 = eps *
1351                  absb;
1352         if (abs(salfai) < safmin && absai >= f2cmax(d__1,d__2)) {
1353             ilimit = TRUE_;
1354 /* Computing MAX */
1355             d__1 = onepls * safmin, d__2 = anrm2 * absai;
1356             scale = onepls * safmin / anrm1 / f2cmax(d__1,d__2);
1357
1358         } else if (salfai == 0.) {
1359
1360 /*           If insignificant underflow in ALPHAI, then make the */
1361 /*           conjugate eigenvalue real. */
1362
1363             if (alphai[jc] < 0. && jc > 1) {
1364                 alphai[jc - 1] = 0.;
1365             } else if (alphai[jc] > 0. && jc < *n) {
1366                 alphai[jc + 1] = 0.;
1367             }
1368         }
1369
1370 /*        Check for significant underflow in ALPHAR */
1371
1372 /* Computing MAX */
1373         d__1 = safmin, d__2 = eps * absai, d__1 = f2cmax(d__1,d__2), d__2 = eps *
1374                  absb;
1375         if (abs(salfar) < safmin && absar >= f2cmax(d__1,d__2)) {
1376             ilimit = TRUE_;
1377 /* Computing MAX */
1378 /* Computing MAX */
1379             d__3 = onepls * safmin, d__4 = anrm2 * absar;
1380             d__1 = scale, d__2 = onepls * safmin / anrm1 / f2cmax(d__3,d__4);
1381             scale = f2cmax(d__1,d__2);
1382         }
1383
1384 /*        Check for significant underflow in BETA */
1385
1386 /* Computing MAX */
1387         d__1 = safmin, d__2 = eps * absar, d__1 = f2cmax(d__1,d__2), d__2 = eps *
1388                  absai;
1389         if (abs(sbeta) < safmin && absb >= f2cmax(d__1,d__2)) {
1390             ilimit = TRUE_;
1391 /* Computing MAX */
1392 /* Computing MAX */
1393             d__3 = onepls * safmin, d__4 = bnrm2 * absb;
1394             d__1 = scale, d__2 = onepls * safmin / bnrm1 / f2cmax(d__3,d__4);
1395             scale = f2cmax(d__1,d__2);
1396         }
1397
1398 /*        Check for possible overflow when limiting scaling */
1399
1400         if (ilimit) {
1401 /* Computing MAX */
1402             d__1 = abs(salfar), d__2 = abs(salfai), d__1 = f2cmax(d__1,d__2), 
1403                     d__2 = abs(sbeta);
1404             temp = scale * safmin * f2cmax(d__1,d__2);
1405             if (temp > 1.) {
1406                 scale /= temp;
1407             }
1408             if (scale < 1.) {
1409                 ilimit = FALSE_;
1410             }
1411         }
1412
1413 /*        Recompute un-scaled ALPHAR, ALPHAI, BETA if necessary. */
1414
1415         if (ilimit) {
1416             salfar = scale * alphar[jc] * anrm;
1417             salfai = scale * alphai[jc] * anrm;
1418             sbeta = scale * beta[jc] * bnrm;
1419         }
1420         alphar[jc] = salfar;
1421         alphai[jc] = salfai;
1422         beta[jc] = sbeta;
1423 /* L110: */
1424     }
1425
1426 L120:
1427     work[1] = (doublereal) lwkopt;
1428
1429     return 0;
1430
1431 /*     End of DGEGV */
1432
1433 } /* dgegv_ */
1434