Eigen::internal::scalar_fuzzy_impl< bool > Struct Reference

#include <MathFunctions.h>

Public Types

typedef bool RealScalar
 

Static Public Member Functions

template<typename OtherScalar >
static EIGEN_DEVICE_FUNC bool isMuchSmallerThan (const bool &x, const bool &, const bool &)
 
static EIGEN_DEVICE_FUNC bool isApprox (bool x, bool y, bool)
 
static EIGEN_DEVICE_FUNC bool isApproxOrLessThan (const bool &x, const bool &y, const bool &)
 

Member Typedef Documentation

◆ RealScalar

Member Function Documentation

◆ isApprox()

static EIGEN_DEVICE_FUNC bool Eigen::internal::scalar_fuzzy_impl< bool >::isApprox ( bool  x,
bool  y,
bool   
)
inlinestatic
1949 { return x == y; }
const Scalar & y
Definition: RandomImpl.h:36
list x
Definition: plotDoE.py:28

References plotDoE::x, and Eigen::internal::y.

◆ isApproxOrLessThan()

static EIGEN_DEVICE_FUNC bool Eigen::internal::scalar_fuzzy_impl< bool >::isApproxOrLessThan ( const bool x,
const bool y,
const bool  
)
inlinestatic
1951  {
1952  return (!x) || y;
1953  }

References plotDoE::x, and Eigen::internal::y.

◆ isMuchSmallerThan()

template<typename OtherScalar >
static EIGEN_DEVICE_FUNC bool Eigen::internal::scalar_fuzzy_impl< bool >::isMuchSmallerThan ( const bool x,
const bool ,
const bool  
)
inlinestatic
1945  {
1946  return !x;
1947  }

References plotDoE::x.


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