IgANet
IgANets - Isogeometric Analysis Networks
Loading...
Searching...
No Matches
integer_pow.hpp
Go to the documentation of this file.
1
15
#pragma once
16
17
namespace
iganet
{
18
namespace
utils {
19
22
template
<
int
E,
int
N>
struct
integer_pow
{
23
enum
{
value
= E *
integer_pow
<E, N - 1>
::value
};
24
};
25
26
template
<
int
E>
struct
integer_pow
<E, 0> {
27
enum
{
value
= 1 };
28
};
30
31
}
// namespace utils
32
}
// namespace iganet
iganet
Definition
boundary.hpp:22
iganet::utils::integer_pow
Computes the power of integer E to the N at compile time.
Definition
integer_pow.hpp:22
iganet::utils::integer_pow::value
@ value
Definition
integer_pow.hpp:23
include
utils
integer_pow.hpp
Generated on Fri Aug 8 2025 14:38:20 for IgANet by
1.9.8