We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In the Blocking2D.cpp of folder ig/src ,
I think lines 95-96: Node n3 = get<Node>(AN3); n1.add(b);
Node n3 = get<Node>(AN3); n1.add(b);
should be replace by Node n3 = get<Node>(AN3); n3.add(b);
Node n3 = get<Node>(AN3); n3.add(b);
for(int j = 0; j<getNbDiscretizationI(); j++){
the limit should be on getNbDiscretizationJ()
getNbDiscretizationJ()
The text was updated successfully, but these errors were encountered:
Branch issue-340-Potential_mistake_in_Blocking2D_structure_when_a_new_block_is_created created!
Sorry, something went wrong.
claireroche
No branches or pull requests
In the Blocking2D.cpp of folder ig/src ,
I think lines 95-96:
Node n3 = get<Node>(AN3); n1.add(b);
should be replace by
Node n3 = get<Node>(AN3); n3.add(b);
for(int j = 0; j<getNbDiscretizationI(); j++){
the limit should be on
getNbDiscretizationJ()
The text was updated successfully, but these errors were encountered: