Cannot sample enough valid points. (more)

\[\left|\left(\left(\tan^{-1}_* \frac{\mathsf{expm1}\left(\left(\sin \left(\mathsf{expm1}\left(a\right)\right)\right)\right)}{\tan^{-1} a}\right) \bmod a\right)\right|\]
\left|\left(\left(\tan^{-1}_* \frac{\mathsf{expm1}\left(\left(\sin \left(\mathsf{expm1}\left(a\right)\right)\right)\right)}{\tan^{-1} a}\right) \bmod a\right)\right|
double f(double a) {
        double r8007 = a;
        double r8008 = expm1(r8007);
        double r8009 = sin(r8008);
        double r8010 = expm1(r8009);
        double r8011 = atan(r8007);
        double r8012 = atan2(r8010, r8011);
        double r8013 = fmod(r8012, r8007);
        double r8014 = fabs(r8013);
        return r8014;
}