Cannot sample enough valid points. (more)

\[\log \left(\frac{\sqrt{{x}^{y}}}{\sin^{-1} \left(\frac{x}{y}\right)}\right)\]
\log \left(\frac{\sqrt{{x}^{y}}}{\sin^{-1} \left(\frac{x}{y}\right)}\right)
double code(double x, double y) {
	return ((double) log(((double) (((double) sqrt(((double) pow(x, y)))) / ((double) asin(((double) (x / y))))))));
}

Reproduce

herbie shell --seed 2020153 
(FPCore (x y)
  :name "(log (/ (sqrt (pow x y)) (asin (/ x y))))"
  :precision binary64
  (log (/ (sqrt (pow x y)) (asin (/ x y)))))