55 IMPLICIT NONE
56
57
58
59
60
61
62 CHARACTER*3 PATH
63 INTEGER NUNIT
64
65
66
67
68
69 INTEGER NMAX
70 parameter( nmax = 2 )
71
72
73 INTEGER I, INFO, J
74
75
76 COMPLEX A( NMAX, NMAX ), T( NMAX, NMAX ), W( NMAX ),
77 $ B( NMAX, NMAX ), C( NMAX, NMAX )
78
79
82
83
84 LOGICAL LERR, OK
85 CHARACTER*32 SRNAMT
86 INTEGER INFOT, NOUT
87
88
89 COMMON / infoc / infot, nout, ok, lerr
90 COMMON / srnamc / srnamt
91
92
93 INTRINSIC real, cmplx
94
95
96
97 nout = nunit
98 WRITE( nout, fmt = * )
99
100
101
102 DO j = 1, nmax
103 DO i = 1, nmax
104 a( i, j ) = 1.e0 / cmplx( real( i+j ), 0.e0 )
105 c( i, j ) = 1.e0 / cmplx( real( i+j ), 0.e0 )
106 t( i, j ) = 1.e0 / cmplx( real( i+j ), 0.e0 )
107 END DO
108 w( j ) = 0.e0
109 END DO
110 ok = .true.
111
112
113
114
115
116 srnamt = 'CTPLQT'
117 infot = 1
118 CALL ctplqt( -1, 1, 0, 1, a, 1, b, 1, t, 1, w, info )
119 CALL chkxer(
'CTPLQT', infot, nout, lerr, ok )
120 infot = 2
121 CALL ctplqt( 1, -1, 0, 1, a, 1, b, 1, t, 1, w, info )
122 CALL chkxer(
'CTPLQT', infot, nout, lerr, ok )
123 infot = 3
124 CALL ctplqt( 0, 1, -1, 1, a, 1, b, 1, t, 1, w, info )
125 CALL chkxer(
'CTPLQT', infot, nout, lerr, ok )
126 infot = 3
127 CALL ctplqt( 0, 1, 1, 1, a, 1, b, 1, t, 1, w, info )
128 CALL chkxer(
'CTPLQT', infot, nout, lerr, ok )
129 infot = 4
130 CALL ctplqt( 0, 1, 0, 0, a, 1, b, 1, t, 1, w, info )
131 CALL chkxer(
'CTPLQT', infot, nout, lerr, ok )
132 infot = 4
133 CALL ctplqt( 1, 1, 0, 2, a, 1, b, 1, t, 1, w, info )
134 CALL chkxer(
'CTPLQT', infot, nout, lerr, ok )
135 infot = 6
136 CALL ctplqt( 2, 1, 0, 2, a, 1, b, 1, t, 1, w, info )
137 CALL chkxer(
'CTPLQT', infot, nout, lerr, ok )
138 infot = 8
139 CALL ctplqt( 2, 1, 0, 1, a, 2, b, 1, t, 1, w, info )
140 CALL chkxer(
'CTPLQT', infot, nout, lerr, ok )
141 infot = 10
142 CALL ctplqt( 2, 2, 1, 2, a, 2, b, 2, t, 1, w, info )
143 CALL chkxer(
'CTPLQT', infot, nout, lerr, ok )
144
145
146
147 srnamt = 'CTPLQT2'
148 infot = 1
149 CALL ctplqt2( -1, 0, 0, a, 1, b, 1, t, 1, info )
150 CALL chkxer(
'CTPLQT2', infot, nout, lerr, ok )
151 infot = 2
152 CALL ctplqt2( 0, -1, 0, a, 1, b, 1, t, 1, info )
153 CALL chkxer(
'CTPLQT2', infot, nout, lerr, ok )
154 infot = 3
155 CALL ctplqt2( 0, 0, -1, a, 1, b, 1, t, 1, info )
156 CALL chkxer(
'CTPLQT2', infot, nout, lerr, ok )
157 infot = 5
158 CALL ctplqt2( 2, 2, 0, a, 1, b, 2, t, 2, info )
159 CALL chkxer(
'CTPLQT2', infot, nout, lerr, ok )
160 infot = 7
161 CALL ctplqt2( 2, 2, 0, a, 2, b, 1, t, 2, info )
162 CALL chkxer(
'CTPLQT2', infot, nout, lerr, ok )
163 infot = 9
164 CALL ctplqt2( 2, 2, 0, a, 2, b, 2, t, 1, info )
165 CALL chkxer(
'CTPLQT2', infot, nout, lerr, ok )
166
167
168
169 srnamt = 'CTPMLQT'
170 infot = 1
171 CALL ctpmlqt(
'/',
'N', 0, 0, 0, 0, 1, a, 1, t, 1, b, 1, c, 1,
172 $ w, info )
173 CALL chkxer(
'CTPMLQT', infot, nout, lerr, ok )
174 infot = 2
175 CALL ctpmlqt(
'L',
'/', 0, 0, 0, 0, 1, a, 1, t, 1, b, 1, c, 1,
176 $ w, info )
177 CALL chkxer(
'CTPMLQT', infot, nout, lerr, ok )
178 infot = 3
179 CALL ctpmlqt(
'L',
'N', -1, 0, 0, 0, 1, a, 1, t, 1, b, 1, c, 1,
180 $ w, info )
181 CALL chkxer(
'CTPMLQT', infot, nout, lerr, ok )
182 infot = 4
183 CALL ctpmlqt(
'L',
'N', 0, -1, 0, 0, 1, a, 1, t, 1, b, 1, c, 1,
184 $ w, info )
185 CALL chkxer(
'CTPMLQT', infot, nout, lerr, ok )
186 infot = 5
187 CALL ctpmlqt(
'L',
'N', 0, 0, -1, 0, 1, a, 1, t, 1, b, 1, c, 1,
188 $ w, info )
189 infot = 6
190 CALL ctpmlqt(
'L',
'N', 0, 0, 0, -1, 1, a, 1, t, 1, b, 1, c, 1,
191 $ w, info )
192 CALL chkxer(
'CTPMLQT', infot, nout, lerr, ok )
193 infot = 7
194 CALL ctpmlqt(
'L',
'N', 0, 0, 0, 0, 0, a, 1, t, 1, b, 1, c, 1,
195 $ w, info )
196 CALL chkxer(
'CTPMLQT', infot, nout, lerr, ok )
197 infot = 9
198 CALL ctpmlqt(
'R',
'N', 2, 2, 2, 1, 1, a, 1, t, 1, b, 1, c, 1,
199 $ w, info )
200 CALL chkxer(
'CTPMLQT', infot, nout, lerr, ok )
201 infot = 11
202 CALL ctpmlqt(
'R',
'N', 1, 1, 1, 1, 1, a, 1, t, 0, b, 1, c, 1,
203 $ w, info )
204 CALL chkxer(
'CTPMLQT', infot, nout, lerr, ok )
205 infot = 13
206 CALL ctpmlqt(
'L',
'N', 1, 1, 1, 1, 1, a, 1, t, 1, b, 0, c, 1,
207 $ w, info )
208 CALL chkxer(
'CTPMLQT', infot, nout, lerr, ok )
209 infot = 15
210 CALL ctpmlqt(
'L',
'N', 1, 1, 1, 1, 1, a, 1, t, 1, b, 1, c, 0,
211 $ w, info )
212 CALL chkxer(
'CTPMLQT', infot, nout, lerr, ok )
213
214
215
216 CALL alaesm( path, ok, nout )
217
218 RETURN
219
220
221
subroutine alaesm(path, ok, nout)
ALAESM
subroutine chkxer(srnamt, infot, nout, lerr, ok)
subroutine ctplqt2(m, n, l, a, lda, b, ldb, t, ldt, info)
CTPLQT2
subroutine ctplqt(m, n, l, mb, a, lda, b, ldb, t, ldt, work, info)
CTPLQT
subroutine ctpmlqt(side, trans, m, n, k, l, mb, v, ldv, t, ldt, a, lda, b, ldb, work, info)
CTPMLQT