MOAB  4.9.3pre
Eigen::internal::coeff_visitor< Derived > Struct Template Reference

Base class to implement min and max visitors. More...

#include <Visitor.h>

Inheritance diagram for Eigen::internal::coeff_visitor< Derived >:

List of all members.

Public Types

typedef Derived::Scalar Scalar

Public Member Functions

EIGEN_DEVICE_FUNC void init (const Scalar &value, Index i, Index j)

Public Attributes

Index row
Index col
Scalar res

Detailed Description

template<typename Derived>
struct Eigen::internal::coeff_visitor< Derived >

Base class to implement min and max visitors.

Definition at line 125 of file Visitor.h.


Member Typedef Documentation

template<typename Derived >
typedef Derived::Scalar Eigen::internal::coeff_visitor< Derived >::Scalar

Member Function Documentation

template<typename Derived >
EIGEN_DEVICE_FUNC void Eigen::internal::coeff_visitor< Derived >::init ( const Scalar value,
Index  i,
Index  j 
) [inline]

Definition at line 131 of file Visitor.h.

  {
    res = value;
    row = i;
    col = j;
  }

Member Data Documentation

template<typename Derived >
Index Eigen::internal::coeff_visitor< Derived >::col

Definition at line 128 of file Visitor.h.

template<typename Derived >
Scalar Eigen::internal::coeff_visitor< Derived >::res

Definition at line 129 of file Visitor.h.

template<typename Derived >
Index Eigen::internal::coeff_visitor< Derived >::row

Definition at line 128 of file Visitor.h.


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