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
On master, when creating jacobians, we assume that output elements are used in the ascending order. i.e.
```
output[0] = ...;
output[1] = ...;
```
is supported but
```
output[1] = ...;
output[0] = ...;
```
is not supported. We should not make such assumptions.
Fixesvgvassilev#479.
Minimum reproducible example:
The above example prints:
Result = {0.00, 6.00}
, which is wrongHowever if the order of assignment to outputs is correctly given:
The result is correct:
Result = {6.00, 1.00}
The text was updated successfully, but these errors were encountered: