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
I would like to report a issue with the method antiDiag() defined in the FullStorage class. If I
didn't misuse it, its not correctly implemented. For it to work, I had to make
adjustments in its code. Currently its function body is composed of the
following:
Hi Michael,
I would like to report a issue with the method antiDiag() defined in the FullStorage class. If I
didn't misuse it, its not correctly implemented. For it to work, I had to make
adjustments in its code. Currently its function body is composed of the
following:
IndexType row_ = (d>0) ? 0 : -d;
IndexType col_ = (d>0) ? d : 0;
I replaced this content with the following, making it work as expected (//***
points out changed lines):
IndexType row_ = (d<0) ? 0 : d; //***
IndexType col_ = (d<0) ? -d : 0; //***
I hope you guys keep up this great work.
The text was updated successfully, but these errors were encountered: