Cannot sample enough valid points. (more)

\[x \cdot \sqrt{y \cdot y - z \cdot z}\]
x \cdot \sqrt{y \cdot y - z \cdot z}
double code(double x, double y, double z) {
	return (x * sqrt(((y * y) - (z * z))));
}

Reproduce

herbie shell --seed 2020091 
(FPCore (x y z)
  :name "Diagrams.TwoD.Apollonian:initialConfig from diagrams-contrib-1.3.0.5, B"
  :precision binary64

  :herbie-target
  (if (< y 2.5816096488251695e-278) (- (* x y)) (* x (* (sqrt (+ y z)) (sqrt (- y z)))))

  (* x (sqrt (- (* y y) (* z z)))))