MOAB  4.9.3pre
Eigen::internal::all_unroller< Derived, UnrollCount > Struct Template Reference

#include <BooleanRedux.h>

List of all members.

Public Types

enum  { col = (UnrollCount-1) / Traits::RowsAtCompileTime, row = (UnrollCount-1) % Traits::RowsAtCompileTime }
typedef Derived::ExpressionTraits Traits

Static Public Member Functions

static bool run (const Derived &mat)

Detailed Description

template<typename Derived, int UnrollCount>
struct Eigen::internal::all_unroller< Derived, UnrollCount >

Definition at line 18 of file BooleanRedux.h.


Member Typedef Documentation

template<typename Derived , int UnrollCount>
typedef Derived::ExpressionTraits Eigen::internal::all_unroller< Derived, UnrollCount >::Traits

Definition at line 20 of file BooleanRedux.h.


Member Enumeration Documentation

template<typename Derived , int UnrollCount>
anonymous enum
Enumerator:
col 
row 

Definition at line 21 of file BooleanRedux.h.

       {
    col = (UnrollCount-1) / Traits::RowsAtCompileTime,
    row = (UnrollCount-1) % Traits::RowsAtCompileTime
  };

Member Function Documentation

template<typename Derived , int UnrollCount>
static bool Eigen::internal::all_unroller< Derived, UnrollCount >::run ( const Derived &  mat) [inline, static]

Definition at line 26 of file BooleanRedux.h.

  {
    return all_unroller<Derived, UnrollCount-1>::run(mat) && mat.coeff(row, col);
  }

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