MOAB  4.9.3pre
Eigen::internal::redux_novec_unroller< Func, Derived, Start, Length > Struct Template Reference

#include <Redux.h>

Inheritance diagram for Eigen::internal::redux_novec_unroller< Func, Derived, Start, Length >:

List of all members.

Public Types

enum  { HalfLength = Length/2 }
typedef Derived::Scalar Scalar

Static Public Member Functions

static EIGEN_DEVICE_FUNC
EIGEN_STRONG_INLINE Scalar 
run (const Derived &mat, const Func &func)

Detailed Description

template<typename Func, typename Derived, int Start, int Length>
struct Eigen::internal::redux_novec_unroller< Func, Derived, Start, Length >

Definition at line 90 of file Redux.h.


Member Typedef Documentation

template<typename Func, typename Derived, int Start, int Length>
typedef Derived::Scalar Eigen::internal::redux_novec_unroller< Func, Derived, Start, Length >::Scalar

Definition at line 96 of file Redux.h.


Member Enumeration Documentation

template<typename Func, typename Derived, int Start, int Length>
anonymous enum
Enumerator:
HalfLength 

Definition at line 92 of file Redux.h.

       {
    HalfLength = Length/2
  };

Member Function Documentation

template<typename Func, typename Derived, int Start, int Length>
static EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Scalar Eigen::internal::redux_novec_unroller< Func, Derived, Start, Length >::run ( const Derived &  mat,
const Func &  func 
) [inline, static]

Definition at line 99 of file Redux.h.

  {
    return func(redux_novec_unroller<Func, Derived, Start, HalfLength>::run(mat,func),
                redux_novec_unroller<Func, Derived, Start+HalfLength, Length-HalfLength>::run(mat,func));
  }

The documentation for this struct was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines