MOAB  4.9.3pre
Eigen::internal::qr_preconditioner_should_do_anything< MatrixType, QRPreconditioner, Case > Struct Template Reference

#include <JacobiSVD.h>

List of all members.

Public Types

enum  

Detailed Description

template<typename MatrixType, int QRPreconditioner, int Case>
struct Eigen::internal::qr_preconditioner_should_do_anything< MatrixType, QRPreconditioner, Case >

Definition at line 33 of file JacobiSVD.h.


Member Enumeration Documentation

template<typename MatrixType , int QRPreconditioner, int Case>
anonymous enum

Definition at line 35 of file JacobiSVD.h.

       { a = MatrixType::RowsAtCompileTime != Dynamic &&
             MatrixType::ColsAtCompileTime != Dynamic &&
             MatrixType::ColsAtCompileTime <= MatrixType::RowsAtCompileTime,
         b = MatrixType::RowsAtCompileTime != Dynamic &&
             MatrixType::ColsAtCompileTime != Dynamic &&
             MatrixType::RowsAtCompileTime <= MatrixType::ColsAtCompileTime,
         ret = !( (QRPreconditioner == NoQRPreconditioner) ||
                  (Case == PreconditionIfMoreColsThanRows && bool(a)) ||
                  (Case == PreconditionIfMoreRowsThanCols && bool(b)) )
  };

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