libMesh
Static Public Member Functions | List of all members
libMesh::Utility::do_pow< N, T > Struct Template Reference

An efficient template instantiation for raising to an arbitrary integer power. More...

#include <utility.h>

Static Public Member Functions

static T apply (const T &x)
 

Detailed Description

template<int N, typename T>
struct libMesh::Utility::do_pow< N, T >

An efficient template instantiation for raising to an arbitrary integer power.

Definition at line 205 of file utility.h.

Member Function Documentation

◆ apply()

template<int N, typename T >
static T libMesh::Utility::do_pow< N, T >::apply ( const T &  x)
inlinestatic

Definition at line 206 of file utility.h.

207  {
208  libmesh_assert(N>1);
209 
210  if (N%2) // odd exponent
211  return x * do_pow<N-1,T>::apply(x);
212 
213  const T xNover2 = do_pow<N/2,T>::apply(x);
214 
215  return xNover2*xNover2;
216  }

References libMesh::libmesh_assert().

Referenced by libMesh::Utility::pow().


The documentation for this struct was generated from the following file:
libMesh::libmesh_assert
libmesh_assert(ctx)
libMesh::Utility::do_pow::apply
static T apply(const T &x)
Definition: utility.h:206