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