@@ -2188,7 +2188,7 @@ for (geevx, ggev, ggev3, elty) in
2188
2188
function ggev! (jobvl:: AbstractChar , jobvr:: AbstractChar , A:: AbstractMatrix{$elty} , B:: AbstractMatrix{$elty} )
2189
2189
require_one_based_indexing (A, B)
2190
2190
chkstride1 (A,B)
2191
- n, m = checksquare (A,B )
2191
+ n, m = map ( checksquare, (A, B) )
2192
2192
if n != m
2193
2193
throw (DimensionMismatch (lazy " A has dimensions $(size(A)), and B has dimensions $(size(B)), but A and B must have the same size" ))
2194
2194
end
@@ -2252,7 +2252,7 @@ for (geevx, ggev, ggev3, elty) in
2252
2252
function ggev3! (jobvl:: AbstractChar , jobvr:: AbstractChar , A:: AbstractMatrix{$elty} , B:: AbstractMatrix{$elty} )
2253
2253
require_one_based_indexing (A, B)
2254
2254
chkstride1 (A,B)
2255
- n, m = checksquare (A,B )
2255
+ n, m = map ( checksquare, (A, B) )
2256
2256
if n != m
2257
2257
throw (DimensionMismatch (lazy " A has dimensions $(size(A)), and B has dimensions $(size(B)), but A and B must have the same size" ))
2258
2258
end
@@ -2403,7 +2403,7 @@ for (geevx, ggev, ggev3, elty, relty) in
2403
2403
function ggev! (jobvl:: AbstractChar , jobvr:: AbstractChar , A:: AbstractMatrix{$elty} , B:: AbstractMatrix{$elty} )
2404
2404
require_one_based_indexing (A, B)
2405
2405
chkstride1 (A, B)
2406
- n, m = checksquare (A, B)
2406
+ n, m = map ( checksquare, (A, B) )
2407
2407
if n != m
2408
2408
throw (DimensionMismatch (lazy " A has dimensions $(size(A)), and B has dimensions $(size(B)), but A and B must have the same size" ))
2409
2409
end
@@ -2468,7 +2468,7 @@ for (geevx, ggev, ggev3, elty, relty) in
2468
2468
function ggev3! (jobvl:: AbstractChar , jobvr:: AbstractChar , A:: AbstractMatrix{$elty} , B:: AbstractMatrix{$elty} )
2469
2469
require_one_based_indexing (A, B)
2470
2470
chkstride1 (A, B)
2471
- n, m = checksquare (A, B)
2471
+ n, m = map ( checksquare, (A, B) )
2472
2472
if n != m
2473
2473
throw (DimensionMismatch (lazy " A has dimensions $(size(A)), and B has dimensions $(size(B)), but A and B must have the same size" ))
2474
2474
end
@@ -5492,7 +5492,7 @@ for (syev, syevr, syevd, sygvd, elty) in
5492
5492
@chkvalidparam 2 jobz (' N' , ' V' )
5493
5493
chkuplo (uplo)
5494
5494
chkstride1 (A, B)
5495
- n, m = checksquare (A, B)
5495
+ n, m = map ( checksquare, (A, B) )
5496
5496
if n != m
5497
5497
throw (DimensionMismatch (lazy " dimensions of A, ($n,$n), and B, ($m,$m), must match" ))
5498
5498
end
@@ -5708,7 +5708,7 @@ for (syev, syevr, syevd, sygvd, elty, relty) in
5708
5708
chkstride1 (A, B)
5709
5709
chkuplofinite (A, uplo)
5710
5710
chkuplofinite (B, uplo)
5711
- n, m = checksquare (A, B)
5711
+ n, m = map ( checksquare, (A, B) )
5712
5712
if n != m
5713
5713
throw (DimensionMismatch (lazy " dimensions of A, ($n,$n), and B, ($m,$m), must match" ))
5714
5714
end
@@ -6485,7 +6485,7 @@ for (gees, gges, gges3, elty) in
6485
6485
@chkvalidparam 1 jobvsl (' N' , ' V' )
6486
6486
@chkvalidparam 2 jobvsr (' N' , ' V' )
6487
6487
chkstride1 (A, B)
6488
- n, m = checksquare (A, B)
6488
+ n, m = map ( checksquare, (A, B) )
6489
6489
if n != m
6490
6490
throw (DimensionMismatch (lazy " dimensions of A, ($n,$n), and B, ($m,$m), must match" ))
6491
6491
end
@@ -6537,7 +6537,7 @@ for (gees, gges, gges3, elty) in
6537
6537
@chkvalidparam 1 jobvsl (' N' , ' V' )
6538
6538
@chkvalidparam 2 jobvsr (' N' , ' V' )
6539
6539
chkstride1 (A, B)
6540
- n, m = checksquare (A, B)
6540
+ n, m = map ( checksquare, (A, B) )
6541
6541
if n != m
6542
6542
throw (DimensionMismatch (lazy " dimensions of A, ($n,$n), and B, ($m,$m), must match" ))
6543
6543
end
@@ -6637,7 +6637,7 @@ for (gees, gges, gges3, elty, relty) in
6637
6637
@chkvalidparam 1 jobvsl (' N' , ' V' )
6638
6638
@chkvalidparam 2 jobvsr (' N' , ' V' )
6639
6639
chkstride1 (A, B)
6640
- n, m = checksquare (A, B)
6640
+ n, m = map ( checksquare, (A, B) )
6641
6641
if n != m
6642
6642
throw (DimensionMismatch (lazy " dimensions of A, ($n,$n), and B, ($m,$m), must match" ))
6643
6643
end
@@ -6690,7 +6690,7 @@ for (gees, gges, gges3, elty, relty) in
6690
6690
@chkvalidparam 1 jobvsl (' N' , ' V' )
6691
6691
@chkvalidparam 2 jobvsr (' N' , ' V' )
6692
6692
chkstride1 (A, B)
6693
- n, m = checksquare (A, B)
6693
+ n, m = map ( checksquare, (A, B) )
6694
6694
if n != m
6695
6695
throw (DimensionMismatch (lazy " dimensions of A, ($n,$n), and B, ($m,$m), must match" ))
6696
6696
end
0 commit comments