Skip to content
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

MatrixFree fast hanging node constraints: simplify a check #15859

Merged
merged 1 commit into from Aug 8, 2023

Conversation

kronbichler
Copy link
Member

No description provided.

@peterrum peterrum merged commit a085042 into dealii:master Aug 8, 2023
15 checks passed
@kronbichler kronbichler deleted the simplify branch August 10, 2023 16:37
Comment on lines -866 to +870
if ([](const auto &supported_components) {
return std::none_of(supported_components.begin(),
supported_components.end(),
[](const auto &a) {
return *std::max_element(a.begin(), a.end());
});
}(supported_components))
if (std::none_of(supported_components.begin(),
supported_components.end(),
[](const auto &a) {
return *std::max_element(a.begin(), a.end());
}))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ha, that's a good one :-)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants