Skip to content

Commit 9215888

Browse files
committed
add note in Changes that Pars changes affect return signatures - #28
1 parent 7ddcd97 commit 9215888

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Changes

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
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
24

35
0.42 2024-12-07
46
- fix t/cgtsv.t (#27) - thanks @wlmb

t/1.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ sub runtest {
1717
($expected, my $expected_cplx) = ref($expected) eq 'ARRAY' ? @$expected : ($expected, $expected);
1818
if (defined $expected) {
1919
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\nexpected:$expected";
2121
}
2222
$_ = PDL->topdl($_)->r2C for $in;
2323
my ($got) = $in->$method(map ref() && ref() ne 'CODE' ? $_->r2C : $_, @{$extra||[]});

0 commit comments

Comments
 (0)