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 287 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 288 of file utility.h.

References libMesh::libmesh_assert().

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

289  {
290  libmesh_assert(N>1);
291 
292  if (N%2) // odd exponent
293  return x * do_pow<N-1,T>::apply(x);
294 
295  const T xNover2 = do_pow<N/2,T>::apply(x);
296 
297  return xNover2*xNover2;
298  }
libmesh_assert(ctx)
static T apply(const T &x)
Definition: utility.h:288

The documentation for this struct was generated from the following file: