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
()
set()
If this is used in a threaded loop:
const auto normalized_value = (*grad_container[dim_index])(dof_id_elem) / volume; grad_container[dim_index]->set(dof_id_elem, normalized_value);
We get the following error:
libMesh terminating: Assertion `local_index < _local_size' failed. local_index = 24 _local_size = 0
which comes from the fact that the set function can set _local_size to 0.
set
_local_size
The text was updated successfully, but these errors were encountered:
operator()
Add a threading-related tests. (libMesh#3808)
d6fbb50
3c82b0a
Successfully merging a pull request may close this issue.
If this is used in a threaded loop:
We get the following error:
which comes from the fact that the
set
function can set_local_size
to 0.The text was updated successfully, but these errors were encountered: