The following is needed for std::complex :
| 111 | |
| 112 | // The following is needed for std::complex<Real>: |
| 113 | Real fabs(const Real& a) { return abs EIGEN_NOT_A_MACRO (a); } |
| 114 | Real fmax(const Real& a, const Real& b) { using std::max; return max(a,b); } |
| 115 | |
| 116 | // some specialization for the unit tests: |
no outgoing calls
no test coverage detected