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

Fix an assertion. #14769

Merged
merged 1 commit into from
Feb 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 8 additions & 5 deletions include/deal.II/base/utilities.h
Original file line number Diff line number Diff line change
Expand Up @@ -968,17 +968,20 @@ namespace Utilities
inline T
fixed_power(const T x)
{
Assert(
!std::is_integral<T>::value || (N >= 0),
ExcMessage(
"The non-type template parameter N must be a non-negative integer for integral type T"));
Assert(((std::is_integral<T>::value == true) && (N >= 0)) ||
(std::is_integral<T>::value == false),
ExcMessage("If the type of the argument, T, is an integer type, "
"then the exponent N must be a non-negative integer "
"because the result would otherwise not be an integer."));

if (N == 0)
return T(1.);
else if (N < 0)
// For negative exponents, turn things into a positive exponent
return T(1.) / fixed_power<-N>(x);
else
// Use exponentiation by squaring:
// If we get here, we have a positive exponent. Compute the result
// by repeated squaring:
return ((N % 2 == 1) ? x * fixed_power<N / 2>(x * x) :
fixed_power<N / 2>(x * x));
}
Expand Down