-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
irregular to regular #322
irregular to regular #322
Conversation
Eigen::Matrix<UInt, 2, 2> matrix; | ||
for (UInt i = 0; i < localI.size(); ++i) | ||
{ | ||
if (localI[i] == minI && localJ[i] == minJ) | ||
{ | ||
matrix(0, 0) = localNodes[i]; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the loop below is every element of the matrix assigned a value? If not then should it be initialised with some default set of values
// | ||
// Copyright (C) Stichting Deltares, 2011-2023. | ||
// |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Might be a year out of date
No description provided.