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
The documentation for Commons Math's SparseGradient.multiply is
/** Compute this × a. * @param a element to multiply * @return a new element representing this × a * @throws NullArgumentException if {@code a} is {@code null}. */
The translated postcondition is result.equals(a).
This expression is type-correct, but the documentation says that the return value is fresh, so this should be translated into (!result.equals(this)) && (!result.equals(a)).
The text was updated successfully, but these errors were encountered:
The documentation for Commons Math's
SparseGradient.multiply
isThe translated postcondition is
result.equals(a)
.This expression is type-correct, but the documentation says that the return value is fresh, so this should be translated into
(!result.equals(this)) && (!result.equals(a))
.The text was updated successfully, but these errors were encountered: