Home | History | Annotate | Download | only in Core

Lines Matching refs:Real

25   * \li A typedef \a Real, giving the "real part" type of \a T. If \a T is already real,
26 * then \a Real is just a typedef to \a T. If \a T is \c std::complex<U> then \a Real
45 * \li An epsilon() function which, unlike std::numeric_limits::epsilon(), returns a \a Real instead of a \a T.
63 typedef T Real;
71 static inline Real epsilon() { return std::numeric_limits<T>::epsilon(); }
72 static inline Real dummy_precision()
75 return Real(0);
111 typedef _Real Real;
116 AddCost = 2 * NumTraits<Real>::AddCost,
117 MulCost = 4 * NumTraits<Real>::MulCost + 2 * NumTraits<Real>::AddCost
120 static inline Real epsilon() { return NumTraits<Real>::epsilon(); }
121 static inline Real dummy_precision() { return NumTraits<Real>::dummy_precision(); }
128 typedef typename NumTraits<Scalar>::Real RealScalar;
129 typedef Array<RealScalar, Rows, Cols, Options, MaxRows, MaxCols> Real;