Prusa Slicer 2.6.0
Loading...
Searching...
No Matches
Eigen::internal::all_unroller< Derived, UnrollCount > Struct Template Reference

#include <src/eigen/Eigen/src/Core/BooleanRedux.h>

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 >

Member Typedef Documentation

◆ Traits

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

Member Enumeration Documentation

◆ anonymous enum

template<typename Derived , int UnrollCount>
anonymous enum
Enumerator
col 
row 
21 {
22 col = (UnrollCount-1) / Traits::RowsAtCompileTime,
23 row = (UnrollCount-1) % Traits::RowsAtCompileTime
24 };
@ col
Definition BooleanRedux.h:22
@ row
Definition BooleanRedux.h:23

Member Function Documentation

◆ run()

template<typename Derived , int UnrollCount>
static bool Eigen::internal::all_unroller< Derived, UnrollCount >::run ( const Derived &  mat)
inlinestatic
27 {
28 return all_unroller<Derived, UnrollCount-1>::run(mat) && mat.coeff(row, col);
29 }
static bool run(const Derived &mat)
Definition BooleanRedux.h:26

References Eigen::internal::all_unroller< Derived, UnrollCount >::col, Eigen::internal::all_unroller< Derived, UnrollCount >::row, and Eigen::internal::all_unroller< Derived, UnrollCount >::run().

Referenced by Eigen::internal::all_unroller< Derived, UnrollCount >::run().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

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