File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 1
- - fix all Pars so their [io] or [o] matches docs enough (#28) - thanks @wlmb for report
1
+ - fix Pars so their [io] or [o] matches docs enough - THIS CHANGES RETURN SIGNATURES (#28) - thanks @wlmb for report
2
+ - added [o] or [io] to Pars for real and complex: gtsv geev ggev gglse ggglm syevx/cheevx syevr/cheevr
3
+ - removed [io] from Pars in real and complex: trevc tgevc
2
4
3
5
0.42 2024-12-07
4
6
- fix t/cgtsv.t (#27) - thanks @wlmb
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ sub runtest {
17
17
($expected , my $expected_cplx ) = ref ($expected ) eq ' ARRAY' ? @$expected : ($expected , $expected );
18
18
if (defined $expected ) {
19
19
my ($got ) = $in -> $method (@{$extra ||[]});
20
- ok fapprox($got , $expected ), $method or diag " got(" .ref ($got )." ): $got " ;
20
+ ok fapprox($got , $expected ), $method or diag " got(" .ref ($got )." ): $got \n expected: $expected " ;
21
21
}
22
22
$_ = PDL-> topdl($_ )-> r2C for $in ;
23
23
my ($got ) = $in -> $method (map ref () && ref () ne ' CODE' ? $_ -> r2C : $_ , @{$extra ||[]});
You can’t perform that action at this time.
0 commit comments