You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
>>>>> processing D:\a\octave-buildbot\octave-buildbot\octave-2025-02-11-02-23-w64\mingw64\share\octave\packages\symbolic-3.2.1\@sym\mldivide.m
***** warning <vpa backslash>
% vpa, nearly singular matrix
A = sym([1 2; 2 4]);
A(1,1) = vpa('1.001');
b = sym([1; 2]);
x = A \ b;
y = [sym(0); vpa('0.5')];
assert (isequal (x, y))
!!!!! warning failed.
Expected <vpa backslash>, but got <implicit conversion from string to real N-D array>
***** warning <vpa backslash>
% vpa, singular rhs
A = sym([1 2; 2 4]);
b = [vpa('1.01'); vpa('2')];
x = A \ b;
assert (all(isnan(x)))
!!!!! warning failed.
Expected <vpa backslash>, but got <implicit conversion from string to real N-D array>
[...]
>>>>> processing D:\a\octave-buildbot\octave-buildbot\octave-2025-02-11-02-23-w64\mingw64\share\octave\packages\symbolic-3.2.1\@sym\sym.m
***** warning <dangerous> x = sym (1/2);
!!!!! warning failed.
Expected <dangerous>, but got <concatenation of single and double quoted string objects creates a single quoted string object>
***** warning <dangerous> sym (1e16);
!!!!! warning failed.
Expected <dangerous>, but got <concatenation of single and double quoted string objects creates a single quoted string object>
***** warning <dangerous> sym (-1e16);
!!!!! warning failed.
Expected <dangerous>, but got <concatenation of single and double quoted string objects creates a single quoted string object>
***** warning <dangerous> sym (10.33);
!!!!! warning failed.
Expected <dangerous>, but got <concatenation of single and double quoted string objects creates a single quoted string object>
***** warning <dangerous> sym (-5.23);
!!!!! warning failed.
Expected <dangerous>, but got <concatenation of single and double quoted string objects creates a single quoted string object>
***** warning <dangerous> sym (sqrt (1.4142135623731));
!!!!! warning failed.
Expected <dangerous>, but got <concatenation of single and double quoted string objects creates a single quoted string object>
***** warning <dangerous> sym ([1.2 1.3]);
!!!!! warning failed.
Expected <dangerous>, but got <implicit conversion from string to real N-D array>
[...]
>>>>> processing D:\a\octave-buildbot\octave-buildbot\octave-2025-02-11-02-23-w64\mingw64\share\octave\packages\symbolic-3.2.1\@sym\toeplitz.m
***** warning <diagonal conflict>
% mismatch
syms x
B = toeplitz([10 x], [1 3 x]);
!!!!! warning failed.
Expected <diagonal conflict>, but got <implicit conversion from string to real N-D array>
***** warning <diagonal conflict>
% scalar
B = toeplitz(sym(2), 3);
assert (isequal (B, sym(2)))
!!!!! warning failed.
Expected <diagonal conflict>, but got <implicit conversion from string to real N-D array>
[...]
>>>>> processing D:\a\octave-buildbot\octave-buildbot\octave-2025-02-11-02-23-w64\mingw64\share\octave\packages\symbolic-3.2.1\vpa.m
***** xtest
% non-equality of vpa that "might be" be integers: Issue #1285
a = vpa ("123", 32);
b = vpa ("123", 64);
assert (~ logical (a == b))
!!!!! known failure
assert (!logical (a == b)) failed
***** warning <dangerous> vpa ('sqrt(2.0)');
!!!!! warning failed.
Expected <dangerous>, but got <concatenation of single and double quoted string objects creates a single quoted string object>
***** warning <dangerous>
a = vpa('2**0.5');
b = vpa(sqrt(sym(2)));
assert (isequal (a, b))
!!!!! warning failed.
Expected <dangerous>, but got <implicit conversion from string to real N-D array>
It looks like different warnings (or different wording?) are triggered with Octave 10 compared to previous versions.
The text was updated successfully, but these errors were encountered:
The CI is up and running again after the merge of the default branch to the stable branch in preparation of Octave 10.
With that, I see the following failing tests for the symbolic package:
https://github.com/gnu-octave/octave-buildbot/actions/runs/13273893349/job/37059415356#step:14:15753
Part of the verbose log:
It looks like different warnings (or different wording?) are triggered with Octave 10 compared to previous versions.
The text was updated successfully, but these errors were encountered: