Diagrams.TwoD.Segment.Bernstein:evaluateBernstein from diagrams-lib-1.3.0.3

Percentage Accurate: 88.5% → 99.8%
Time: 8.1s
Alternatives: 13
Speedup: 1.0×

Specification

?
\[\begin{array}{l} \\ \frac{x \cdot \left(\left(y - z\right) + 1\right)}{z} \end{array} \]
(FPCore (x y z) :precision binary64 (/ (* x (+ (- y z) 1.0)) z))
double code(double x, double y, double z) {
	return (x * ((y - z) + 1.0)) / z;
}
real(8) function code(x, y, z)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    code = (x * ((y - z) + 1.0d0)) / z
end function
public static double code(double x, double y, double z) {
	return (x * ((y - z) + 1.0)) / z;
}
def code(x, y, z):
	return (x * ((y - z) + 1.0)) / z
function code(x, y, z)
	return Float64(Float64(x * Float64(Float64(y - z) + 1.0)) / z)
end
function tmp = code(x, y, z)
	tmp = (x * ((y - z) + 1.0)) / z;
end
code[x_, y_, z_] := N[(N[(x * N[(N[(y - z), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision] / z), $MachinePrecision]
\begin{array}{l}

\\
\frac{x \cdot \left(\left(y - z\right) + 1\right)}{z}
\end{array}

Sampling outcomes in binary64 precision:

Local Percentage Accuracy vs ?

The average percentage accuracy by input value. Horizontal axis shows value of an input variable; the variable is choosen in the title. Vertical axis is accuracy; higher is better. Red represent the original program, while blue represents Herbie's suggestion. These can be toggled with buttons below the plot. The line is an average while dots represent individual samples.

Accuracy vs Speed?

Herbie found 13 alternatives:

AlternativeAccuracySpeedup
The accuracy (vertical axis) and speed (horizontal axis) of each alternatives. Up and to the right is better. The red square shows the initial program, and each blue circle shows an alternative.The line shows the best available speed-accuracy tradeoffs.

Initial Program: 88.5% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \frac{x \cdot \left(\left(y - z\right) + 1\right)}{z} \end{array} \]
(FPCore (x y z) :precision binary64 (/ (* x (+ (- y z) 1.0)) z))
double code(double x, double y, double z) {
	return (x * ((y - z) + 1.0)) / z;
}
real(8) function code(x, y, z)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    code = (x * ((y - z) + 1.0d0)) / z
end function
public static double code(double x, double y, double z) {
	return (x * ((y - z) + 1.0)) / z;
}
def code(x, y, z):
	return (x * ((y - z) + 1.0)) / z
function code(x, y, z)
	return Float64(Float64(x * Float64(Float64(y - z) + 1.0)) / z)
end
function tmp = code(x, y, z)
	tmp = (x * ((y - z) + 1.0)) / z;
end
code[x_, y_, z_] := N[(N[(x * N[(N[(y - z), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision] / z), $MachinePrecision]
\begin{array}{l}

\\
\frac{x \cdot \left(\left(y - z\right) + 1\right)}{z}
\end{array}

Alternative 1: 99.8% accurate, 0.6× speedup?

\[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ \begin{array}{l} t_0 := \left(y - z\right) + 1\\ x\_s \cdot \begin{array}{l} \mathbf{if}\;x\_m \leq 3.1 \cdot 10^{-38}:\\ \;\;\;\;\frac{x\_m \cdot t\_0}{z}\\ \mathbf{else}:\\ \;\;\;\;\frac{x\_m}{\frac{z}{t\_0}}\\ \end{array} \end{array} \end{array} \]
x\_m = (fabs.f64 x)
x\_s = (copysign.f64 #s(literal 1 binary64) x)
(FPCore (x_s x_m y z)
 :precision binary64
 (let* ((t_0 (+ (- y z) 1.0)))
   (* x_s (if (<= x_m 3.1e-38) (/ (* x_m t_0) z) (/ x_m (/ z t_0))))))
x\_m = fabs(x);
x\_s = copysign(1.0, x);
double code(double x_s, double x_m, double y, double z) {
	double t_0 = (y - z) + 1.0;
	double tmp;
	if (x_m <= 3.1e-38) {
		tmp = (x_m * t_0) / z;
	} else {
		tmp = x_m / (z / t_0);
	}
	return x_s * tmp;
}
x\_m = abs(x)
x\_s = copysign(1.0d0, x)
real(8) function code(x_s, x_m, y, z)
    real(8), intent (in) :: x_s
    real(8), intent (in) :: x_m
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8) :: t_0
    real(8) :: tmp
    t_0 = (y - z) + 1.0d0
    if (x_m <= 3.1d-38) then
        tmp = (x_m * t_0) / z
    else
        tmp = x_m / (z / t_0)
    end if
    code = x_s * tmp
end function
x\_m = Math.abs(x);
x\_s = Math.copySign(1.0, x);
public static double code(double x_s, double x_m, double y, double z) {
	double t_0 = (y - z) + 1.0;
	double tmp;
	if (x_m <= 3.1e-38) {
		tmp = (x_m * t_0) / z;
	} else {
		tmp = x_m / (z / t_0);
	}
	return x_s * tmp;
}
x\_m = math.fabs(x)
x\_s = math.copysign(1.0, x)
def code(x_s, x_m, y, z):
	t_0 = (y - z) + 1.0
	tmp = 0
	if x_m <= 3.1e-38:
		tmp = (x_m * t_0) / z
	else:
		tmp = x_m / (z / t_0)
	return x_s * tmp
x\_m = abs(x)
x\_s = copysign(1.0, x)
function code(x_s, x_m, y, z)
	t_0 = Float64(Float64(y - z) + 1.0)
	tmp = 0.0
	if (x_m <= 3.1e-38)
		tmp = Float64(Float64(x_m * t_0) / z);
	else
		tmp = Float64(x_m / Float64(z / t_0));
	end
	return Float64(x_s * tmp)
end
x\_m = abs(x);
x\_s = sign(x) * abs(1.0);
function tmp_2 = code(x_s, x_m, y, z)
	t_0 = (y - z) + 1.0;
	tmp = 0.0;
	if (x_m <= 3.1e-38)
		tmp = (x_m * t_0) / z;
	else
		tmp = x_m / (z / t_0);
	end
	tmp_2 = x_s * tmp;
end
x\_m = N[Abs[x], $MachinePrecision]
x\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[x]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
code[x$95$s_, x$95$m_, y_, z_] := Block[{t$95$0 = N[(N[(y - z), $MachinePrecision] + 1.0), $MachinePrecision]}, N[(x$95$s * If[LessEqual[x$95$m, 3.1e-38], N[(N[(x$95$m * t$95$0), $MachinePrecision] / z), $MachinePrecision], N[(x$95$m / N[(z / t$95$0), $MachinePrecision]), $MachinePrecision]]), $MachinePrecision]]
\begin{array}{l}
x\_m = \left|x\right|
\\
x\_s = \mathsf{copysign}\left(1, x\right)

\\
\begin{array}{l}
t_0 := \left(y - z\right) + 1\\
x\_s \cdot \begin{array}{l}
\mathbf{if}\;x\_m \leq 3.1 \cdot 10^{-38}:\\
\;\;\;\;\frac{x\_m \cdot t\_0}{z}\\

\mathbf{else}:\\
\;\;\;\;\frac{x\_m}{\frac{z}{t\_0}}\\


\end{array}
\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if x < 3.09999999999999983e-38

    1. Initial program 89.6%

      \[\frac{x \cdot \left(\left(y - z\right) + 1\right)}{z} \]
    2. Add Preprocessing

    if 3.09999999999999983e-38 < x

    1. Initial program 73.3%

      \[\frac{x \cdot \left(\left(y - z\right) + 1\right)}{z} \]
    2. Step-by-step derivation
      1. associate-/l*99.9%

        \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    3. Simplified99.9%

      \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    4. Add Preprocessing
    5. Step-by-step derivation
      1. clear-num99.8%

        \[\leadsto x \cdot \color{blue}{\frac{1}{\frac{z}{\left(y - z\right) + 1}}} \]
      2. un-div-inv99.9%

        \[\leadsto \color{blue}{\frac{x}{\frac{z}{\left(y - z\right) + 1}}} \]
    6. Applied egg-rr99.9%

      \[\leadsto \color{blue}{\frac{x}{\frac{z}{\left(y - z\right) + 1}}} \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 2: 66.0% accurate, 0.4× speedup?

\[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ \begin{array}{l} t_0 := x\_m \cdot \frac{y}{z}\\ x\_s \cdot \begin{array}{l} \mathbf{if}\;z \leq -1.12 \cdot 10^{+53}:\\ \;\;\;\;-x\_m\\ \mathbf{elif}\;z \leq -1.12 \cdot 10^{-13}:\\ \;\;\;\;t\_0\\ \mathbf{elif}\;z \leq 7.8 \cdot 10^{-81}:\\ \;\;\;\;\frac{x\_m}{z}\\ \mathbf{elif}\;z \leq 1.3 \cdot 10^{+31}:\\ \;\;\;\;t\_0\\ \mathbf{else}:\\ \;\;\;\;-x\_m\\ \end{array} \end{array} \end{array} \]
x\_m = (fabs.f64 x)
x\_s = (copysign.f64 #s(literal 1 binary64) x)
(FPCore (x_s x_m y z)
 :precision binary64
 (let* ((t_0 (* x_m (/ y z))))
   (*
    x_s
    (if (<= z -1.12e+53)
      (- x_m)
      (if (<= z -1.12e-13)
        t_0
        (if (<= z 7.8e-81) (/ x_m z) (if (<= z 1.3e+31) t_0 (- x_m))))))))
x\_m = fabs(x);
x\_s = copysign(1.0, x);
double code(double x_s, double x_m, double y, double z) {
	double t_0 = x_m * (y / z);
	double tmp;
	if (z <= -1.12e+53) {
		tmp = -x_m;
	} else if (z <= -1.12e-13) {
		tmp = t_0;
	} else if (z <= 7.8e-81) {
		tmp = x_m / z;
	} else if (z <= 1.3e+31) {
		tmp = t_0;
	} else {
		tmp = -x_m;
	}
	return x_s * tmp;
}
x\_m = abs(x)
x\_s = copysign(1.0d0, x)
real(8) function code(x_s, x_m, y, z)
    real(8), intent (in) :: x_s
    real(8), intent (in) :: x_m
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8) :: t_0
    real(8) :: tmp
    t_0 = x_m * (y / z)
    if (z <= (-1.12d+53)) then
        tmp = -x_m
    else if (z <= (-1.12d-13)) then
        tmp = t_0
    else if (z <= 7.8d-81) then
        tmp = x_m / z
    else if (z <= 1.3d+31) then
        tmp = t_0
    else
        tmp = -x_m
    end if
    code = x_s * tmp
end function
x\_m = Math.abs(x);
x\_s = Math.copySign(1.0, x);
public static double code(double x_s, double x_m, double y, double z) {
	double t_0 = x_m * (y / z);
	double tmp;
	if (z <= -1.12e+53) {
		tmp = -x_m;
	} else if (z <= -1.12e-13) {
		tmp = t_0;
	} else if (z <= 7.8e-81) {
		tmp = x_m / z;
	} else if (z <= 1.3e+31) {
		tmp = t_0;
	} else {
		tmp = -x_m;
	}
	return x_s * tmp;
}
x\_m = math.fabs(x)
x\_s = math.copysign(1.0, x)
def code(x_s, x_m, y, z):
	t_0 = x_m * (y / z)
	tmp = 0
	if z <= -1.12e+53:
		tmp = -x_m
	elif z <= -1.12e-13:
		tmp = t_0
	elif z <= 7.8e-81:
		tmp = x_m / z
	elif z <= 1.3e+31:
		tmp = t_0
	else:
		tmp = -x_m
	return x_s * tmp
x\_m = abs(x)
x\_s = copysign(1.0, x)
function code(x_s, x_m, y, z)
	t_0 = Float64(x_m * Float64(y / z))
	tmp = 0.0
	if (z <= -1.12e+53)
		tmp = Float64(-x_m);
	elseif (z <= -1.12e-13)
		tmp = t_0;
	elseif (z <= 7.8e-81)
		tmp = Float64(x_m / z);
	elseif (z <= 1.3e+31)
		tmp = t_0;
	else
		tmp = Float64(-x_m);
	end
	return Float64(x_s * tmp)
end
x\_m = abs(x);
x\_s = sign(x) * abs(1.0);
function tmp_2 = code(x_s, x_m, y, z)
	t_0 = x_m * (y / z);
	tmp = 0.0;
	if (z <= -1.12e+53)
		tmp = -x_m;
	elseif (z <= -1.12e-13)
		tmp = t_0;
	elseif (z <= 7.8e-81)
		tmp = x_m / z;
	elseif (z <= 1.3e+31)
		tmp = t_0;
	else
		tmp = -x_m;
	end
	tmp_2 = x_s * tmp;
end
x\_m = N[Abs[x], $MachinePrecision]
x\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[x]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
code[x$95$s_, x$95$m_, y_, z_] := Block[{t$95$0 = N[(x$95$m * N[(y / z), $MachinePrecision]), $MachinePrecision]}, N[(x$95$s * If[LessEqual[z, -1.12e+53], (-x$95$m), If[LessEqual[z, -1.12e-13], t$95$0, If[LessEqual[z, 7.8e-81], N[(x$95$m / z), $MachinePrecision], If[LessEqual[z, 1.3e+31], t$95$0, (-x$95$m)]]]]), $MachinePrecision]]
\begin{array}{l}
x\_m = \left|x\right|
\\
x\_s = \mathsf{copysign}\left(1, x\right)

\\
\begin{array}{l}
t_0 := x\_m \cdot \frac{y}{z}\\
x\_s \cdot \begin{array}{l}
\mathbf{if}\;z \leq -1.12 \cdot 10^{+53}:\\
\;\;\;\;-x\_m\\

\mathbf{elif}\;z \leq -1.12 \cdot 10^{-13}:\\
\;\;\;\;t\_0\\

\mathbf{elif}\;z \leq 7.8 \cdot 10^{-81}:\\
\;\;\;\;\frac{x\_m}{z}\\

\mathbf{elif}\;z \leq 1.3 \cdot 10^{+31}:\\
\;\;\;\;t\_0\\

\mathbf{else}:\\
\;\;\;\;-x\_m\\


\end{array}
\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if z < -1.12e53 or 1.3e31 < z

    1. Initial program 66.2%

      \[\frac{x \cdot \left(\left(y - z\right) + 1\right)}{z} \]
    2. Step-by-step derivation
      1. associate-/l*99.9%

        \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    3. Simplified99.9%

      \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    4. Add Preprocessing
    5. Taylor expanded in z around inf 78.9%

      \[\leadsto \color{blue}{-1 \cdot x} \]
    6. Step-by-step derivation
      1. neg-mul-178.9%

        \[\leadsto \color{blue}{-x} \]
    7. Simplified78.9%

      \[\leadsto \color{blue}{-x} \]

    if -1.12e53 < z < -1.12e-13 or 7.7999999999999997e-81 < z < 1.3e31

    1. Initial program 99.8%

      \[\frac{x \cdot \left(\left(y - z\right) + 1\right)}{z} \]
    2. Step-by-step derivation
      1. associate-/l*99.7%

        \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    3. Simplified99.7%

      \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    4. Add Preprocessing
    5. Taylor expanded in y around inf 79.3%

      \[\leadsto \color{blue}{\frac{x \cdot y}{z}} \]
    6. Step-by-step derivation
      1. associate-/l*79.3%

        \[\leadsto \color{blue}{x \cdot \frac{y}{z}} \]
    7. Simplified79.3%

      \[\leadsto \color{blue}{x \cdot \frac{y}{z}} \]

    if -1.12e-13 < z < 7.7999999999999997e-81

    1. Initial program 99.9%

      \[\frac{x \cdot \left(\left(y - z\right) + 1\right)}{z} \]
    2. Step-by-step derivation
      1. associate-/l*93.0%

        \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    3. Simplified93.0%

      \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    4. Add Preprocessing
    5. Taylor expanded in z around 0 99.9%

      \[\leadsto \color{blue}{\frac{x \cdot \left(1 + y\right)}{z}} \]
    6. Step-by-step derivation
      1. associate-/l*93.0%

        \[\leadsto \color{blue}{x \cdot \frac{1 + y}{z}} \]
    7. Simplified93.0%

      \[\leadsto \color{blue}{x \cdot \frac{1 + y}{z}} \]
    8. Taylor expanded in y around 0 66.4%

      \[\leadsto \color{blue}{\frac{x}{z}} \]
  3. Recombined 3 regimes into one program.
  4. Add Preprocessing

Alternative 3: 87.0% accurate, 0.5× speedup?

\[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ x\_s \cdot \begin{array}{l} \mathbf{if}\;z \leq -2.25 \cdot 10^{+52} \lor \neg \left(z \leq 6.5 \cdot 10^{+32}\right):\\ \;\;\;\;-x\_m\\ \mathbf{else}:\\ \;\;\;\;\frac{x\_m \cdot \left(y + 1\right)}{z}\\ \end{array} \end{array} \]
x\_m = (fabs.f64 x)
x\_s = (copysign.f64 #s(literal 1 binary64) x)
(FPCore (x_s x_m y z)
 :precision binary64
 (*
  x_s
  (if (or (<= z -2.25e+52) (not (<= z 6.5e+32)))
    (- x_m)
    (/ (* x_m (+ y 1.0)) z))))
x\_m = fabs(x);
x\_s = copysign(1.0, x);
double code(double x_s, double x_m, double y, double z) {
	double tmp;
	if ((z <= -2.25e+52) || !(z <= 6.5e+32)) {
		tmp = -x_m;
	} else {
		tmp = (x_m * (y + 1.0)) / z;
	}
	return x_s * tmp;
}
x\_m = abs(x)
x\_s = copysign(1.0d0, x)
real(8) function code(x_s, x_m, y, z)
    real(8), intent (in) :: x_s
    real(8), intent (in) :: x_m
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8) :: tmp
    if ((z <= (-2.25d+52)) .or. (.not. (z <= 6.5d+32))) then
        tmp = -x_m
    else
        tmp = (x_m * (y + 1.0d0)) / z
    end if
    code = x_s * tmp
end function
x\_m = Math.abs(x);
x\_s = Math.copySign(1.0, x);
public static double code(double x_s, double x_m, double y, double z) {
	double tmp;
	if ((z <= -2.25e+52) || !(z <= 6.5e+32)) {
		tmp = -x_m;
	} else {
		tmp = (x_m * (y + 1.0)) / z;
	}
	return x_s * tmp;
}
x\_m = math.fabs(x)
x\_s = math.copysign(1.0, x)
def code(x_s, x_m, y, z):
	tmp = 0
	if (z <= -2.25e+52) or not (z <= 6.5e+32):
		tmp = -x_m
	else:
		tmp = (x_m * (y + 1.0)) / z
	return x_s * tmp
x\_m = abs(x)
x\_s = copysign(1.0, x)
function code(x_s, x_m, y, z)
	tmp = 0.0
	if ((z <= -2.25e+52) || !(z <= 6.5e+32))
		tmp = Float64(-x_m);
	else
		tmp = Float64(Float64(x_m * Float64(y + 1.0)) / z);
	end
	return Float64(x_s * tmp)
end
x\_m = abs(x);
x\_s = sign(x) * abs(1.0);
function tmp_2 = code(x_s, x_m, y, z)
	tmp = 0.0;
	if ((z <= -2.25e+52) || ~((z <= 6.5e+32)))
		tmp = -x_m;
	else
		tmp = (x_m * (y + 1.0)) / z;
	end
	tmp_2 = x_s * tmp;
end
x\_m = N[Abs[x], $MachinePrecision]
x\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[x]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
code[x$95$s_, x$95$m_, y_, z_] := N[(x$95$s * If[Or[LessEqual[z, -2.25e+52], N[Not[LessEqual[z, 6.5e+32]], $MachinePrecision]], (-x$95$m), N[(N[(x$95$m * N[(y + 1.0), $MachinePrecision]), $MachinePrecision] / z), $MachinePrecision]]), $MachinePrecision]
\begin{array}{l}
x\_m = \left|x\right|
\\
x\_s = \mathsf{copysign}\left(1, x\right)

\\
x\_s \cdot \begin{array}{l}
\mathbf{if}\;z \leq -2.25 \cdot 10^{+52} \lor \neg \left(z \leq 6.5 \cdot 10^{+32}\right):\\
\;\;\;\;-x\_m\\

\mathbf{else}:\\
\;\;\;\;\frac{x\_m \cdot \left(y + 1\right)}{z}\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if z < -2.25e52 or 6.4999999999999994e32 < z

    1. Initial program 66.2%

      \[\frac{x \cdot \left(\left(y - z\right) + 1\right)}{z} \]
    2. Step-by-step derivation
      1. associate-/l*99.9%

        \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    3. Simplified99.9%

      \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    4. Add Preprocessing
    5. Taylor expanded in z around inf 78.9%

      \[\leadsto \color{blue}{-1 \cdot x} \]
    6. Step-by-step derivation
      1. neg-mul-178.9%

        \[\leadsto \color{blue}{-x} \]
    7. Simplified78.9%

      \[\leadsto \color{blue}{-x} \]

    if -2.25e52 < z < 6.4999999999999994e32

    1. Initial program 99.9%

      \[\frac{x \cdot \left(\left(y - z\right) + 1\right)}{z} \]
    2. Step-by-step derivation
      1. associate-/l*94.6%

        \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    3. Simplified94.6%

      \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    4. Add Preprocessing
    5. Taylor expanded in z around 0 97.8%

      \[\leadsto \color{blue}{\frac{x \cdot \left(1 + y\right)}{z}} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification89.7%

    \[\leadsto \begin{array}{l} \mathbf{if}\;z \leq -2.25 \cdot 10^{+52} \lor \neg \left(z \leq 6.5 \cdot 10^{+32}\right):\\ \;\;\;\;-x\\ \mathbf{else}:\\ \;\;\;\;\frac{x \cdot \left(y + 1\right)}{z}\\ \end{array} \]
  5. Add Preprocessing

Alternative 4: 85.8% accurate, 0.5× speedup?

\[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ x\_s \cdot \begin{array}{l} \mathbf{if}\;y \leq -1.9 \cdot 10^{+55}:\\ \;\;\;\;\frac{x\_m \cdot y}{z}\\ \mathbf{elif}\;y \leq 1.4 \cdot 10^{+39}:\\ \;\;\;\;\frac{x\_m}{z} - x\_m\\ \mathbf{else}:\\ \;\;\;\;y \cdot \left(x\_m \cdot \frac{1}{z}\right)\\ \end{array} \end{array} \]
x\_m = (fabs.f64 x)
x\_s = (copysign.f64 #s(literal 1 binary64) x)
(FPCore (x_s x_m y z)
 :precision binary64
 (*
  x_s
  (if (<= y -1.9e+55)
    (/ (* x_m y) z)
    (if (<= y 1.4e+39) (- (/ x_m z) x_m) (* y (* x_m (/ 1.0 z)))))))
x\_m = fabs(x);
x\_s = copysign(1.0, x);
double code(double x_s, double x_m, double y, double z) {
	double tmp;
	if (y <= -1.9e+55) {
		tmp = (x_m * y) / z;
	} else if (y <= 1.4e+39) {
		tmp = (x_m / z) - x_m;
	} else {
		tmp = y * (x_m * (1.0 / z));
	}
	return x_s * tmp;
}
x\_m = abs(x)
x\_s = copysign(1.0d0, x)
real(8) function code(x_s, x_m, y, z)
    real(8), intent (in) :: x_s
    real(8), intent (in) :: x_m
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8) :: tmp
    if (y <= (-1.9d+55)) then
        tmp = (x_m * y) / z
    else if (y <= 1.4d+39) then
        tmp = (x_m / z) - x_m
    else
        tmp = y * (x_m * (1.0d0 / z))
    end if
    code = x_s * tmp
end function
x\_m = Math.abs(x);
x\_s = Math.copySign(1.0, x);
public static double code(double x_s, double x_m, double y, double z) {
	double tmp;
	if (y <= -1.9e+55) {
		tmp = (x_m * y) / z;
	} else if (y <= 1.4e+39) {
		tmp = (x_m / z) - x_m;
	} else {
		tmp = y * (x_m * (1.0 / z));
	}
	return x_s * tmp;
}
x\_m = math.fabs(x)
x\_s = math.copysign(1.0, x)
def code(x_s, x_m, y, z):
	tmp = 0
	if y <= -1.9e+55:
		tmp = (x_m * y) / z
	elif y <= 1.4e+39:
		tmp = (x_m / z) - x_m
	else:
		tmp = y * (x_m * (1.0 / z))
	return x_s * tmp
x\_m = abs(x)
x\_s = copysign(1.0, x)
function code(x_s, x_m, y, z)
	tmp = 0.0
	if (y <= -1.9e+55)
		tmp = Float64(Float64(x_m * y) / z);
	elseif (y <= 1.4e+39)
		tmp = Float64(Float64(x_m / z) - x_m);
	else
		tmp = Float64(y * Float64(x_m * Float64(1.0 / z)));
	end
	return Float64(x_s * tmp)
end
x\_m = abs(x);
x\_s = sign(x) * abs(1.0);
function tmp_2 = code(x_s, x_m, y, z)
	tmp = 0.0;
	if (y <= -1.9e+55)
		tmp = (x_m * y) / z;
	elseif (y <= 1.4e+39)
		tmp = (x_m / z) - x_m;
	else
		tmp = y * (x_m * (1.0 / z));
	end
	tmp_2 = x_s * tmp;
end
x\_m = N[Abs[x], $MachinePrecision]
x\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[x]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
code[x$95$s_, x$95$m_, y_, z_] := N[(x$95$s * If[LessEqual[y, -1.9e+55], N[(N[(x$95$m * y), $MachinePrecision] / z), $MachinePrecision], If[LessEqual[y, 1.4e+39], N[(N[(x$95$m / z), $MachinePrecision] - x$95$m), $MachinePrecision], N[(y * N[(x$95$m * N[(1.0 / z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]), $MachinePrecision]
\begin{array}{l}
x\_m = \left|x\right|
\\
x\_s = \mathsf{copysign}\left(1, x\right)

\\
x\_s \cdot \begin{array}{l}
\mathbf{if}\;y \leq -1.9 \cdot 10^{+55}:\\
\;\;\;\;\frac{x\_m \cdot y}{z}\\

\mathbf{elif}\;y \leq 1.4 \cdot 10^{+39}:\\
\;\;\;\;\frac{x\_m}{z} - x\_m\\

\mathbf{else}:\\
\;\;\;\;y \cdot \left(x\_m \cdot \frac{1}{z}\right)\\


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if y < -1.9e55

    1. Initial program 92.4%

      \[\frac{x \cdot \left(\left(y - z\right) + 1\right)}{z} \]
    2. Step-by-step derivation
      1. associate-/l*92.4%

        \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    3. Simplified92.4%

      \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    4. Add Preprocessing
    5. Taylor expanded in y around inf 79.2%

      \[\leadsto \color{blue}{\frac{x \cdot y}{z}} \]

    if -1.9e55 < y < 1.40000000000000001e39

    1. Initial program 84.3%

      \[\frac{x \cdot \left(\left(y - z\right) + 1\right)}{z} \]
    2. Step-by-step derivation
      1. associate-/l*99.8%

        \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    3. Simplified99.8%

      \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    4. Add Preprocessing
    5. Taylor expanded in y around 0 79.8%

      \[\leadsto \color{blue}{\frac{x \cdot \left(1 - z\right)}{z}} \]
    6. Taylor expanded in z around inf 95.4%

      \[\leadsto \color{blue}{-1 \cdot x + \frac{x}{z}} \]
    7. Step-by-step derivation
      1. +-commutative95.4%

        \[\leadsto \color{blue}{\frac{x}{z} + -1 \cdot x} \]
      2. mul-1-neg95.4%

        \[\leadsto \frac{x}{z} + \color{blue}{\left(-x\right)} \]
      3. unsub-neg95.4%

        \[\leadsto \color{blue}{\frac{x}{z} - x} \]
    8. Simplified95.4%

      \[\leadsto \color{blue}{\frac{x}{z} - x} \]

    if 1.40000000000000001e39 < y

    1. Initial program 82.7%

      \[\frac{x \cdot \left(\left(y - z\right) + 1\right)}{z} \]
    2. Step-by-step derivation
      1. associate-/l*93.6%

        \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    3. Simplified93.6%

      \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    4. Add Preprocessing
    5. Step-by-step derivation
      1. clear-num93.5%

        \[\leadsto x \cdot \color{blue}{\frac{1}{\frac{z}{\left(y - z\right) + 1}}} \]
      2. un-div-inv95.5%

        \[\leadsto \color{blue}{\frac{x}{\frac{z}{\left(y - z\right) + 1}}} \]
    6. Applied egg-rr95.5%

      \[\leadsto \color{blue}{\frac{x}{\frac{z}{\left(y - z\right) + 1}}} \]
    7. Taylor expanded in y around inf 76.5%

      \[\leadsto \frac{x}{\color{blue}{\frac{z}{y}}} \]
    8. Step-by-step derivation
      1. div-inv74.5%

        \[\leadsto \color{blue}{x \cdot \frac{1}{\frac{z}{y}}} \]
      2. clear-num74.6%

        \[\leadsto x \cdot \color{blue}{\frac{y}{z}} \]
      3. *-commutative74.6%

        \[\leadsto \color{blue}{\frac{y}{z} \cdot x} \]
      4. div-inv74.5%

        \[\leadsto \color{blue}{\left(y \cdot \frac{1}{z}\right)} \cdot x \]
      5. associate-*l*77.5%

        \[\leadsto \color{blue}{y \cdot \left(\frac{1}{z} \cdot x\right)} \]
    9. Applied egg-rr77.5%

      \[\leadsto \color{blue}{y \cdot \left(\frac{1}{z} \cdot x\right)} \]
  3. Recombined 3 regimes into one program.
  4. Final simplification88.0%

    \[\leadsto \begin{array}{l} \mathbf{if}\;y \leq -1.9 \cdot 10^{+55}:\\ \;\;\;\;\frac{x \cdot y}{z}\\ \mathbf{elif}\;y \leq 1.4 \cdot 10^{+39}:\\ \;\;\;\;\frac{x}{z} - x\\ \mathbf{else}:\\ \;\;\;\;y \cdot \left(x \cdot \frac{1}{z}\right)\\ \end{array} \]
  5. Add Preprocessing

Alternative 5: 83.9% accurate, 0.6× speedup?

\[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ x\_s \cdot \begin{array}{l} \mathbf{if}\;y \leq -4.4 \cdot 10^{+54} \lor \neg \left(y \leq 9 \cdot 10^{+36}\right):\\ \;\;\;\;x\_m \cdot \frac{y}{z}\\ \mathbf{else}:\\ \;\;\;\;\frac{x\_m}{z} - x\_m\\ \end{array} \end{array} \]
x\_m = (fabs.f64 x)
x\_s = (copysign.f64 #s(literal 1 binary64) x)
(FPCore (x_s x_m y z)
 :precision binary64
 (*
  x_s
  (if (or (<= y -4.4e+54) (not (<= y 9e+36)))
    (* x_m (/ y z))
    (- (/ x_m z) x_m))))
x\_m = fabs(x);
x\_s = copysign(1.0, x);
double code(double x_s, double x_m, double y, double z) {
	double tmp;
	if ((y <= -4.4e+54) || !(y <= 9e+36)) {
		tmp = x_m * (y / z);
	} else {
		tmp = (x_m / z) - x_m;
	}
	return x_s * tmp;
}
x\_m = abs(x)
x\_s = copysign(1.0d0, x)
real(8) function code(x_s, x_m, y, z)
    real(8), intent (in) :: x_s
    real(8), intent (in) :: x_m
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8) :: tmp
    if ((y <= (-4.4d+54)) .or. (.not. (y <= 9d+36))) then
        tmp = x_m * (y / z)
    else
        tmp = (x_m / z) - x_m
    end if
    code = x_s * tmp
end function
x\_m = Math.abs(x);
x\_s = Math.copySign(1.0, x);
public static double code(double x_s, double x_m, double y, double z) {
	double tmp;
	if ((y <= -4.4e+54) || !(y <= 9e+36)) {
		tmp = x_m * (y / z);
	} else {
		tmp = (x_m / z) - x_m;
	}
	return x_s * tmp;
}
x\_m = math.fabs(x)
x\_s = math.copysign(1.0, x)
def code(x_s, x_m, y, z):
	tmp = 0
	if (y <= -4.4e+54) or not (y <= 9e+36):
		tmp = x_m * (y / z)
	else:
		tmp = (x_m / z) - x_m
	return x_s * tmp
x\_m = abs(x)
x\_s = copysign(1.0, x)
function code(x_s, x_m, y, z)
	tmp = 0.0
	if ((y <= -4.4e+54) || !(y <= 9e+36))
		tmp = Float64(x_m * Float64(y / z));
	else
		tmp = Float64(Float64(x_m / z) - x_m);
	end
	return Float64(x_s * tmp)
end
x\_m = abs(x);
x\_s = sign(x) * abs(1.0);
function tmp_2 = code(x_s, x_m, y, z)
	tmp = 0.0;
	if ((y <= -4.4e+54) || ~((y <= 9e+36)))
		tmp = x_m * (y / z);
	else
		tmp = (x_m / z) - x_m;
	end
	tmp_2 = x_s * tmp;
end
x\_m = N[Abs[x], $MachinePrecision]
x\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[x]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
code[x$95$s_, x$95$m_, y_, z_] := N[(x$95$s * If[Or[LessEqual[y, -4.4e+54], N[Not[LessEqual[y, 9e+36]], $MachinePrecision]], N[(x$95$m * N[(y / z), $MachinePrecision]), $MachinePrecision], N[(N[(x$95$m / z), $MachinePrecision] - x$95$m), $MachinePrecision]]), $MachinePrecision]
\begin{array}{l}
x\_m = \left|x\right|
\\
x\_s = \mathsf{copysign}\left(1, x\right)

\\
x\_s \cdot \begin{array}{l}
\mathbf{if}\;y \leq -4.4 \cdot 10^{+54} \lor \neg \left(y \leq 9 \cdot 10^{+36}\right):\\
\;\;\;\;x\_m \cdot \frac{y}{z}\\

\mathbf{else}:\\
\;\;\;\;\frac{x\_m}{z} - x\_m\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if y < -4.3999999999999998e54 or 8.99999999999999994e36 < y

    1. Initial program 87.1%

      \[\frac{x \cdot \left(\left(y - z\right) + 1\right)}{z} \]
    2. Step-by-step derivation
      1. associate-/l*93.0%

        \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    3. Simplified93.0%

      \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    4. Add Preprocessing
    5. Taylor expanded in y around inf 76.0%

      \[\leadsto \color{blue}{\frac{x \cdot y}{z}} \]
    6. Step-by-step derivation
      1. associate-/l*75.0%

        \[\leadsto \color{blue}{x \cdot \frac{y}{z}} \]
    7. Simplified75.0%

      \[\leadsto \color{blue}{x \cdot \frac{y}{z}} \]

    if -4.3999999999999998e54 < y < 8.99999999999999994e36

    1. Initial program 84.3%

      \[\frac{x \cdot \left(\left(y - z\right) + 1\right)}{z} \]
    2. Step-by-step derivation
      1. associate-/l*99.8%

        \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    3. Simplified99.8%

      \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    4. Add Preprocessing
    5. Taylor expanded in y around 0 79.8%

      \[\leadsto \color{blue}{\frac{x \cdot \left(1 - z\right)}{z}} \]
    6. Taylor expanded in z around inf 95.4%

      \[\leadsto \color{blue}{-1 \cdot x + \frac{x}{z}} \]
    7. Step-by-step derivation
      1. +-commutative95.4%

        \[\leadsto \color{blue}{\frac{x}{z} + -1 \cdot x} \]
      2. mul-1-neg95.4%

        \[\leadsto \frac{x}{z} + \color{blue}{\left(-x\right)} \]
      3. unsub-neg95.4%

        \[\leadsto \color{blue}{\frac{x}{z} - x} \]
    8. Simplified95.4%

      \[\leadsto \color{blue}{\frac{x}{z} - x} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification86.6%

    \[\leadsto \begin{array}{l} \mathbf{if}\;y \leq -4.4 \cdot 10^{+54} \lor \neg \left(y \leq 9 \cdot 10^{+36}\right):\\ \;\;\;\;x \cdot \frac{y}{z}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{z} - x\\ \end{array} \]
  5. Add Preprocessing

Alternative 6: 85.0% accurate, 0.6× speedup?

\[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ x\_s \cdot \begin{array}{l} \mathbf{if}\;y \leq -6.2 \cdot 10^{+53}:\\ \;\;\;\;\frac{x\_m \cdot y}{z}\\ \mathbf{elif}\;y \leq 6 \cdot 10^{+37}:\\ \;\;\;\;\frac{x\_m}{z} - x\_m\\ \mathbf{else}:\\ \;\;\;\;\frac{x\_m}{\frac{z}{y}}\\ \end{array} \end{array} \]
x\_m = (fabs.f64 x)
x\_s = (copysign.f64 #s(literal 1 binary64) x)
(FPCore (x_s x_m y z)
 :precision binary64
 (*
  x_s
  (if (<= y -6.2e+53)
    (/ (* x_m y) z)
    (if (<= y 6e+37) (- (/ x_m z) x_m) (/ x_m (/ z y))))))
x\_m = fabs(x);
x\_s = copysign(1.0, x);
double code(double x_s, double x_m, double y, double z) {
	double tmp;
	if (y <= -6.2e+53) {
		tmp = (x_m * y) / z;
	} else if (y <= 6e+37) {
		tmp = (x_m / z) - x_m;
	} else {
		tmp = x_m / (z / y);
	}
	return x_s * tmp;
}
x\_m = abs(x)
x\_s = copysign(1.0d0, x)
real(8) function code(x_s, x_m, y, z)
    real(8), intent (in) :: x_s
    real(8), intent (in) :: x_m
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8) :: tmp
    if (y <= (-6.2d+53)) then
        tmp = (x_m * y) / z
    else if (y <= 6d+37) then
        tmp = (x_m / z) - x_m
    else
        tmp = x_m / (z / y)
    end if
    code = x_s * tmp
end function
x\_m = Math.abs(x);
x\_s = Math.copySign(1.0, x);
public static double code(double x_s, double x_m, double y, double z) {
	double tmp;
	if (y <= -6.2e+53) {
		tmp = (x_m * y) / z;
	} else if (y <= 6e+37) {
		tmp = (x_m / z) - x_m;
	} else {
		tmp = x_m / (z / y);
	}
	return x_s * tmp;
}
x\_m = math.fabs(x)
x\_s = math.copysign(1.0, x)
def code(x_s, x_m, y, z):
	tmp = 0
	if y <= -6.2e+53:
		tmp = (x_m * y) / z
	elif y <= 6e+37:
		tmp = (x_m / z) - x_m
	else:
		tmp = x_m / (z / y)
	return x_s * tmp
x\_m = abs(x)
x\_s = copysign(1.0, x)
function code(x_s, x_m, y, z)
	tmp = 0.0
	if (y <= -6.2e+53)
		tmp = Float64(Float64(x_m * y) / z);
	elseif (y <= 6e+37)
		tmp = Float64(Float64(x_m / z) - x_m);
	else
		tmp = Float64(x_m / Float64(z / y));
	end
	return Float64(x_s * tmp)
end
x\_m = abs(x);
x\_s = sign(x) * abs(1.0);
function tmp_2 = code(x_s, x_m, y, z)
	tmp = 0.0;
	if (y <= -6.2e+53)
		tmp = (x_m * y) / z;
	elseif (y <= 6e+37)
		tmp = (x_m / z) - x_m;
	else
		tmp = x_m / (z / y);
	end
	tmp_2 = x_s * tmp;
end
x\_m = N[Abs[x], $MachinePrecision]
x\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[x]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
code[x$95$s_, x$95$m_, y_, z_] := N[(x$95$s * If[LessEqual[y, -6.2e+53], N[(N[(x$95$m * y), $MachinePrecision] / z), $MachinePrecision], If[LessEqual[y, 6e+37], N[(N[(x$95$m / z), $MachinePrecision] - x$95$m), $MachinePrecision], N[(x$95$m / N[(z / y), $MachinePrecision]), $MachinePrecision]]]), $MachinePrecision]
\begin{array}{l}
x\_m = \left|x\right|
\\
x\_s = \mathsf{copysign}\left(1, x\right)

\\
x\_s \cdot \begin{array}{l}
\mathbf{if}\;y \leq -6.2 \cdot 10^{+53}:\\
\;\;\;\;\frac{x\_m \cdot y}{z}\\

\mathbf{elif}\;y \leq 6 \cdot 10^{+37}:\\
\;\;\;\;\frac{x\_m}{z} - x\_m\\

\mathbf{else}:\\
\;\;\;\;\frac{x\_m}{\frac{z}{y}}\\


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if y < -6.20000000000000038e53

    1. Initial program 92.4%

      \[\frac{x \cdot \left(\left(y - z\right) + 1\right)}{z} \]
    2. Step-by-step derivation
      1. associate-/l*92.4%

        \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    3. Simplified92.4%

      \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    4. Add Preprocessing
    5. Taylor expanded in y around inf 79.2%

      \[\leadsto \color{blue}{\frac{x \cdot y}{z}} \]

    if -6.20000000000000038e53 < y < 6.00000000000000043e37

    1. Initial program 84.3%

      \[\frac{x \cdot \left(\left(y - z\right) + 1\right)}{z} \]
    2. Step-by-step derivation
      1. associate-/l*99.8%

        \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    3. Simplified99.8%

      \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    4. Add Preprocessing
    5. Taylor expanded in y around 0 79.8%

      \[\leadsto \color{blue}{\frac{x \cdot \left(1 - z\right)}{z}} \]
    6. Taylor expanded in z around inf 95.4%

      \[\leadsto \color{blue}{-1 \cdot x + \frac{x}{z}} \]
    7. Step-by-step derivation
      1. +-commutative95.4%

        \[\leadsto \color{blue}{\frac{x}{z} + -1 \cdot x} \]
      2. mul-1-neg95.4%

        \[\leadsto \frac{x}{z} + \color{blue}{\left(-x\right)} \]
      3. unsub-neg95.4%

        \[\leadsto \color{blue}{\frac{x}{z} - x} \]
    8. Simplified95.4%

      \[\leadsto \color{blue}{\frac{x}{z} - x} \]

    if 6.00000000000000043e37 < y

    1. Initial program 82.7%

      \[\frac{x \cdot \left(\left(y - z\right) + 1\right)}{z} \]
    2. Step-by-step derivation
      1. associate-/l*93.6%

        \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    3. Simplified93.6%

      \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    4. Add Preprocessing
    5. Step-by-step derivation
      1. clear-num93.5%

        \[\leadsto x \cdot \color{blue}{\frac{1}{\frac{z}{\left(y - z\right) + 1}}} \]
      2. un-div-inv95.5%

        \[\leadsto \color{blue}{\frac{x}{\frac{z}{\left(y - z\right) + 1}}} \]
    6. Applied egg-rr95.5%

      \[\leadsto \color{blue}{\frac{x}{\frac{z}{\left(y - z\right) + 1}}} \]
    7. Taylor expanded in y around inf 76.5%

      \[\leadsto \frac{x}{\color{blue}{\frac{z}{y}}} \]
  3. Recombined 3 regimes into one program.
  4. Add Preprocessing

Alternative 7: 85.1% accurate, 0.6× speedup?

\[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ x\_s \cdot \begin{array}{l} \mathbf{if}\;y \leq -4.6 \cdot 10^{+56}:\\ \;\;\;\;\frac{y}{\frac{z}{x\_m}}\\ \mathbf{elif}\;y \leq 2.1 \cdot 10^{+38}:\\ \;\;\;\;\frac{x\_m}{z} - x\_m\\ \mathbf{else}:\\ \;\;\;\;\frac{x\_m}{\frac{z}{y}}\\ \end{array} \end{array} \]
x\_m = (fabs.f64 x)
x\_s = (copysign.f64 #s(literal 1 binary64) x)
(FPCore (x_s x_m y z)
 :precision binary64
 (*
  x_s
  (if (<= y -4.6e+56)
    (/ y (/ z x_m))
    (if (<= y 2.1e+38) (- (/ x_m z) x_m) (/ x_m (/ z y))))))
x\_m = fabs(x);
x\_s = copysign(1.0, x);
double code(double x_s, double x_m, double y, double z) {
	double tmp;
	if (y <= -4.6e+56) {
		tmp = y / (z / x_m);
	} else if (y <= 2.1e+38) {
		tmp = (x_m / z) - x_m;
	} else {
		tmp = x_m / (z / y);
	}
	return x_s * tmp;
}
x\_m = abs(x)
x\_s = copysign(1.0d0, x)
real(8) function code(x_s, x_m, y, z)
    real(8), intent (in) :: x_s
    real(8), intent (in) :: x_m
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8) :: tmp
    if (y <= (-4.6d+56)) then
        tmp = y / (z / x_m)
    else if (y <= 2.1d+38) then
        tmp = (x_m / z) - x_m
    else
        tmp = x_m / (z / y)
    end if
    code = x_s * tmp
end function
x\_m = Math.abs(x);
x\_s = Math.copySign(1.0, x);
public static double code(double x_s, double x_m, double y, double z) {
	double tmp;
	if (y <= -4.6e+56) {
		tmp = y / (z / x_m);
	} else if (y <= 2.1e+38) {
		tmp = (x_m / z) - x_m;
	} else {
		tmp = x_m / (z / y);
	}
	return x_s * tmp;
}
x\_m = math.fabs(x)
x\_s = math.copysign(1.0, x)
def code(x_s, x_m, y, z):
	tmp = 0
	if y <= -4.6e+56:
		tmp = y / (z / x_m)
	elif y <= 2.1e+38:
		tmp = (x_m / z) - x_m
	else:
		tmp = x_m / (z / y)
	return x_s * tmp
x\_m = abs(x)
x\_s = copysign(1.0, x)
function code(x_s, x_m, y, z)
	tmp = 0.0
	if (y <= -4.6e+56)
		tmp = Float64(y / Float64(z / x_m));
	elseif (y <= 2.1e+38)
		tmp = Float64(Float64(x_m / z) - x_m);
	else
		tmp = Float64(x_m / Float64(z / y));
	end
	return Float64(x_s * tmp)
end
x\_m = abs(x);
x\_s = sign(x) * abs(1.0);
function tmp_2 = code(x_s, x_m, y, z)
	tmp = 0.0;
	if (y <= -4.6e+56)
		tmp = y / (z / x_m);
	elseif (y <= 2.1e+38)
		tmp = (x_m / z) - x_m;
	else
		tmp = x_m / (z / y);
	end
	tmp_2 = x_s * tmp;
end
x\_m = N[Abs[x], $MachinePrecision]
x\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[x]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
code[x$95$s_, x$95$m_, y_, z_] := N[(x$95$s * If[LessEqual[y, -4.6e+56], N[(y / N[(z / x$95$m), $MachinePrecision]), $MachinePrecision], If[LessEqual[y, 2.1e+38], N[(N[(x$95$m / z), $MachinePrecision] - x$95$m), $MachinePrecision], N[(x$95$m / N[(z / y), $MachinePrecision]), $MachinePrecision]]]), $MachinePrecision]
\begin{array}{l}
x\_m = \left|x\right|
\\
x\_s = \mathsf{copysign}\left(1, x\right)

\\
x\_s \cdot \begin{array}{l}
\mathbf{if}\;y \leq -4.6 \cdot 10^{+56}:\\
\;\;\;\;\frac{y}{\frac{z}{x\_m}}\\

\mathbf{elif}\;y \leq 2.1 \cdot 10^{+38}:\\
\;\;\;\;\frac{x\_m}{z} - x\_m\\

\mathbf{else}:\\
\;\;\;\;\frac{x\_m}{\frac{z}{y}}\\


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if y < -4.60000000000000029e56

    1. Initial program 92.4%

      \[\frac{x \cdot \left(\left(y - z\right) + 1\right)}{z} \]
    2. Step-by-step derivation
      1. associate-/l*92.4%

        \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    3. Simplified92.4%

      \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    4. Add Preprocessing
    5. Step-by-step derivation
      1. clear-num92.3%

        \[\leadsto x \cdot \color{blue}{\frac{1}{\frac{z}{\left(y - z\right) + 1}}} \]
      2. un-div-inv92.4%

        \[\leadsto \color{blue}{\frac{x}{\frac{z}{\left(y - z\right) + 1}}} \]
    6. Applied egg-rr92.4%

      \[\leadsto \color{blue}{\frac{x}{\frac{z}{\left(y - z\right) + 1}}} \]
    7. Taylor expanded in y around inf 75.5%

      \[\leadsto \frac{x}{\color{blue}{\frac{z}{y}}} \]
    8. Step-by-step derivation
      1. div-inv75.4%

        \[\leadsto \color{blue}{x \cdot \frac{1}{\frac{z}{y}}} \]
      2. clear-num75.5%

        \[\leadsto x \cdot \color{blue}{\frac{y}{z}} \]
      3. *-commutative75.5%

        \[\leadsto \color{blue}{\frac{y}{z} \cdot x} \]
      4. div-inv75.5%

        \[\leadsto \color{blue}{\left(y \cdot \frac{1}{z}\right)} \cdot x \]
      5. associate-*l*77.1%

        \[\leadsto \color{blue}{y \cdot \left(\frac{1}{z} \cdot x\right)} \]
    9. Applied egg-rr77.1%

      \[\leadsto \color{blue}{y \cdot \left(\frac{1}{z} \cdot x\right)} \]
    10. Step-by-step derivation
      1. associate-*r*75.5%

        \[\leadsto \color{blue}{\left(y \cdot \frac{1}{z}\right) \cdot x} \]
      2. un-div-inv75.5%

        \[\leadsto \color{blue}{\frac{y}{z}} \cdot x \]
      3. associate-/r/77.3%

        \[\leadsto \color{blue}{\frac{y}{\frac{z}{x}}} \]
    11. Applied egg-rr77.3%

      \[\leadsto \color{blue}{\frac{y}{\frac{z}{x}}} \]

    if -4.60000000000000029e56 < y < 2.1e38

    1. Initial program 84.3%

      \[\frac{x \cdot \left(\left(y - z\right) + 1\right)}{z} \]
    2. Step-by-step derivation
      1. associate-/l*99.8%

        \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    3. Simplified99.8%

      \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    4. Add Preprocessing
    5. Taylor expanded in y around 0 79.8%

      \[\leadsto \color{blue}{\frac{x \cdot \left(1 - z\right)}{z}} \]
    6. Taylor expanded in z around inf 95.4%

      \[\leadsto \color{blue}{-1 \cdot x + \frac{x}{z}} \]
    7. Step-by-step derivation
      1. +-commutative95.4%

        \[\leadsto \color{blue}{\frac{x}{z} + -1 \cdot x} \]
      2. mul-1-neg95.4%

        \[\leadsto \frac{x}{z} + \color{blue}{\left(-x\right)} \]
      3. unsub-neg95.4%

        \[\leadsto \color{blue}{\frac{x}{z} - x} \]
    8. Simplified95.4%

      \[\leadsto \color{blue}{\frac{x}{z} - x} \]

    if 2.1e38 < y

    1. Initial program 82.7%

      \[\frac{x \cdot \left(\left(y - z\right) + 1\right)}{z} \]
    2. Step-by-step derivation
      1. associate-/l*93.6%

        \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    3. Simplified93.6%

      \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    4. Add Preprocessing
    5. Step-by-step derivation
      1. clear-num93.5%

        \[\leadsto x \cdot \color{blue}{\frac{1}{\frac{z}{\left(y - z\right) + 1}}} \]
      2. un-div-inv95.5%

        \[\leadsto \color{blue}{\frac{x}{\frac{z}{\left(y - z\right) + 1}}} \]
    6. Applied egg-rr95.5%

      \[\leadsto \color{blue}{\frac{x}{\frac{z}{\left(y - z\right) + 1}}} \]
    7. Taylor expanded in y around inf 76.5%

      \[\leadsto \frac{x}{\color{blue}{\frac{z}{y}}} \]
  3. Recombined 3 regimes into one program.
  4. Add Preprocessing

Alternative 8: 84.1% accurate, 0.6× speedup?

\[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ x\_s \cdot \begin{array}{l} \mathbf{if}\;y \leq -3.05 \cdot 10^{+53}:\\ \;\;\;\;x\_m \cdot \frac{y}{z}\\ \mathbf{elif}\;y \leq 1.8 \cdot 10^{+39}:\\ \;\;\;\;\frac{x\_m}{z} - x\_m\\ \mathbf{else}:\\ \;\;\;\;\frac{x\_m}{\frac{z}{y}}\\ \end{array} \end{array} \]
x\_m = (fabs.f64 x)
x\_s = (copysign.f64 #s(literal 1 binary64) x)
(FPCore (x_s x_m y z)
 :precision binary64
 (*
  x_s
  (if (<= y -3.05e+53)
    (* x_m (/ y z))
    (if (<= y 1.8e+39) (- (/ x_m z) x_m) (/ x_m (/ z y))))))
x\_m = fabs(x);
x\_s = copysign(1.0, x);
double code(double x_s, double x_m, double y, double z) {
	double tmp;
	if (y <= -3.05e+53) {
		tmp = x_m * (y / z);
	} else if (y <= 1.8e+39) {
		tmp = (x_m / z) - x_m;
	} else {
		tmp = x_m / (z / y);
	}
	return x_s * tmp;
}
x\_m = abs(x)
x\_s = copysign(1.0d0, x)
real(8) function code(x_s, x_m, y, z)
    real(8), intent (in) :: x_s
    real(8), intent (in) :: x_m
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8) :: tmp
    if (y <= (-3.05d+53)) then
        tmp = x_m * (y / z)
    else if (y <= 1.8d+39) then
        tmp = (x_m / z) - x_m
    else
        tmp = x_m / (z / y)
    end if
    code = x_s * tmp
end function
x\_m = Math.abs(x);
x\_s = Math.copySign(1.0, x);
public static double code(double x_s, double x_m, double y, double z) {
	double tmp;
	if (y <= -3.05e+53) {
		tmp = x_m * (y / z);
	} else if (y <= 1.8e+39) {
		tmp = (x_m / z) - x_m;
	} else {
		tmp = x_m / (z / y);
	}
	return x_s * tmp;
}
x\_m = math.fabs(x)
x\_s = math.copysign(1.0, x)
def code(x_s, x_m, y, z):
	tmp = 0
	if y <= -3.05e+53:
		tmp = x_m * (y / z)
	elif y <= 1.8e+39:
		tmp = (x_m / z) - x_m
	else:
		tmp = x_m / (z / y)
	return x_s * tmp
x\_m = abs(x)
x\_s = copysign(1.0, x)
function code(x_s, x_m, y, z)
	tmp = 0.0
	if (y <= -3.05e+53)
		tmp = Float64(x_m * Float64(y / z));
	elseif (y <= 1.8e+39)
		tmp = Float64(Float64(x_m / z) - x_m);
	else
		tmp = Float64(x_m / Float64(z / y));
	end
	return Float64(x_s * tmp)
end
x\_m = abs(x);
x\_s = sign(x) * abs(1.0);
function tmp_2 = code(x_s, x_m, y, z)
	tmp = 0.0;
	if (y <= -3.05e+53)
		tmp = x_m * (y / z);
	elseif (y <= 1.8e+39)
		tmp = (x_m / z) - x_m;
	else
		tmp = x_m / (z / y);
	end
	tmp_2 = x_s * tmp;
end
x\_m = N[Abs[x], $MachinePrecision]
x\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[x]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
code[x$95$s_, x$95$m_, y_, z_] := N[(x$95$s * If[LessEqual[y, -3.05e+53], N[(x$95$m * N[(y / z), $MachinePrecision]), $MachinePrecision], If[LessEqual[y, 1.8e+39], N[(N[(x$95$m / z), $MachinePrecision] - x$95$m), $MachinePrecision], N[(x$95$m / N[(z / y), $MachinePrecision]), $MachinePrecision]]]), $MachinePrecision]
\begin{array}{l}
x\_m = \left|x\right|
\\
x\_s = \mathsf{copysign}\left(1, x\right)

\\
x\_s \cdot \begin{array}{l}
\mathbf{if}\;y \leq -3.05 \cdot 10^{+53}:\\
\;\;\;\;x\_m \cdot \frac{y}{z}\\

\mathbf{elif}\;y \leq 1.8 \cdot 10^{+39}:\\
\;\;\;\;\frac{x\_m}{z} - x\_m\\

\mathbf{else}:\\
\;\;\;\;\frac{x\_m}{\frac{z}{y}}\\


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if y < -3.0500000000000001e53

    1. Initial program 92.4%

      \[\frac{x \cdot \left(\left(y - z\right) + 1\right)}{z} \]
    2. Step-by-step derivation
      1. associate-/l*92.4%

        \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    3. Simplified92.4%

      \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    4. Add Preprocessing
    5. Taylor expanded in y around inf 79.2%

      \[\leadsto \color{blue}{\frac{x \cdot y}{z}} \]
    6. Step-by-step derivation
      1. associate-/l*75.5%

        \[\leadsto \color{blue}{x \cdot \frac{y}{z}} \]
    7. Simplified75.5%

      \[\leadsto \color{blue}{x \cdot \frac{y}{z}} \]

    if -3.0500000000000001e53 < y < 1.79999999999999992e39

    1. Initial program 84.3%

      \[\frac{x \cdot \left(\left(y - z\right) + 1\right)}{z} \]
    2. Step-by-step derivation
      1. associate-/l*99.8%

        \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    3. Simplified99.8%

      \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    4. Add Preprocessing
    5. Taylor expanded in y around 0 79.8%

      \[\leadsto \color{blue}{\frac{x \cdot \left(1 - z\right)}{z}} \]
    6. Taylor expanded in z around inf 95.4%

      \[\leadsto \color{blue}{-1 \cdot x + \frac{x}{z}} \]
    7. Step-by-step derivation
      1. +-commutative95.4%

        \[\leadsto \color{blue}{\frac{x}{z} + -1 \cdot x} \]
      2. mul-1-neg95.4%

        \[\leadsto \frac{x}{z} + \color{blue}{\left(-x\right)} \]
      3. unsub-neg95.4%

        \[\leadsto \color{blue}{\frac{x}{z} - x} \]
    8. Simplified95.4%

      \[\leadsto \color{blue}{\frac{x}{z} - x} \]

    if 1.79999999999999992e39 < y

    1. Initial program 82.7%

      \[\frac{x \cdot \left(\left(y - z\right) + 1\right)}{z} \]
    2. Step-by-step derivation
      1. associate-/l*93.6%

        \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    3. Simplified93.6%

      \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    4. Add Preprocessing
    5. Step-by-step derivation
      1. clear-num93.5%

        \[\leadsto x \cdot \color{blue}{\frac{1}{\frac{z}{\left(y - z\right) + 1}}} \]
      2. un-div-inv95.5%

        \[\leadsto \color{blue}{\frac{x}{\frac{z}{\left(y - z\right) + 1}}} \]
    6. Applied egg-rr95.5%

      \[\leadsto \color{blue}{\frac{x}{\frac{z}{\left(y - z\right) + 1}}} \]
    7. Taylor expanded in y around inf 76.5%

      \[\leadsto \frac{x}{\color{blue}{\frac{z}{y}}} \]
  3. Recombined 3 regimes into one program.
  4. Add Preprocessing

Alternative 9: 65.2% accurate, 0.7× speedup?

\[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ x\_s \cdot \begin{array}{l} \mathbf{if}\;z \leq -1.9 \cdot 10^{+15} \lor \neg \left(z \leq 12000000\right):\\ \;\;\;\;-x\_m\\ \mathbf{else}:\\ \;\;\;\;\frac{x\_m}{z}\\ \end{array} \end{array} \]
x\_m = (fabs.f64 x)
x\_s = (copysign.f64 #s(literal 1 binary64) x)
(FPCore (x_s x_m y z)
 :precision binary64
 (* x_s (if (or (<= z -1.9e+15) (not (<= z 12000000.0))) (- x_m) (/ x_m z))))
x\_m = fabs(x);
x\_s = copysign(1.0, x);
double code(double x_s, double x_m, double y, double z) {
	double tmp;
	if ((z <= -1.9e+15) || !(z <= 12000000.0)) {
		tmp = -x_m;
	} else {
		tmp = x_m / z;
	}
	return x_s * tmp;
}
x\_m = abs(x)
x\_s = copysign(1.0d0, x)
real(8) function code(x_s, x_m, y, z)
    real(8), intent (in) :: x_s
    real(8), intent (in) :: x_m
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8) :: tmp
    if ((z <= (-1.9d+15)) .or. (.not. (z <= 12000000.0d0))) then
        tmp = -x_m
    else
        tmp = x_m / z
    end if
    code = x_s * tmp
end function
x\_m = Math.abs(x);
x\_s = Math.copySign(1.0, x);
public static double code(double x_s, double x_m, double y, double z) {
	double tmp;
	if ((z <= -1.9e+15) || !(z <= 12000000.0)) {
		tmp = -x_m;
	} else {
		tmp = x_m / z;
	}
	return x_s * tmp;
}
x\_m = math.fabs(x)
x\_s = math.copysign(1.0, x)
def code(x_s, x_m, y, z):
	tmp = 0
	if (z <= -1.9e+15) or not (z <= 12000000.0):
		tmp = -x_m
	else:
		tmp = x_m / z
	return x_s * tmp
x\_m = abs(x)
x\_s = copysign(1.0, x)
function code(x_s, x_m, y, z)
	tmp = 0.0
	if ((z <= -1.9e+15) || !(z <= 12000000.0))
		tmp = Float64(-x_m);
	else
		tmp = Float64(x_m / z);
	end
	return Float64(x_s * tmp)
end
x\_m = abs(x);
x\_s = sign(x) * abs(1.0);
function tmp_2 = code(x_s, x_m, y, z)
	tmp = 0.0;
	if ((z <= -1.9e+15) || ~((z <= 12000000.0)))
		tmp = -x_m;
	else
		tmp = x_m / z;
	end
	tmp_2 = x_s * tmp;
end
x\_m = N[Abs[x], $MachinePrecision]
x\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[x]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
code[x$95$s_, x$95$m_, y_, z_] := N[(x$95$s * If[Or[LessEqual[z, -1.9e+15], N[Not[LessEqual[z, 12000000.0]], $MachinePrecision]], (-x$95$m), N[(x$95$m / z), $MachinePrecision]]), $MachinePrecision]
\begin{array}{l}
x\_m = \left|x\right|
\\
x\_s = \mathsf{copysign}\left(1, x\right)

\\
x\_s \cdot \begin{array}{l}
\mathbf{if}\;z \leq -1.9 \cdot 10^{+15} \lor \neg \left(z \leq 12000000\right):\\
\;\;\;\;-x\_m\\

\mathbf{else}:\\
\;\;\;\;\frac{x\_m}{z}\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if z < -1.9e15 or 1.2e7 < z

    1. Initial program 70.0%

      \[\frac{x \cdot \left(\left(y - z\right) + 1\right)}{z} \]
    2. Step-by-step derivation
      1. associate-/l*99.9%

        \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    3. Simplified99.9%

      \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    4. Add Preprocessing
    5. Taylor expanded in z around inf 72.8%

      \[\leadsto \color{blue}{-1 \cdot x} \]
    6. Step-by-step derivation
      1. neg-mul-172.8%

        \[\leadsto \color{blue}{-x} \]
    7. Simplified72.8%

      \[\leadsto \color{blue}{-x} \]

    if -1.9e15 < z < 1.2e7

    1. Initial program 99.9%

      \[\frac{x \cdot \left(\left(y - z\right) + 1\right)}{z} \]
    2. Step-by-step derivation
      1. associate-/l*94.1%

        \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    3. Simplified94.1%

      \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
    4. Add Preprocessing
    5. Taylor expanded in z around 0 99.7%

      \[\leadsto \color{blue}{\frac{x \cdot \left(1 + y\right)}{z}} \]
    6. Step-by-step derivation
      1. associate-/l*93.9%

        \[\leadsto \color{blue}{x \cdot \frac{1 + y}{z}} \]
    7. Simplified93.9%

      \[\leadsto \color{blue}{x \cdot \frac{1 + y}{z}} \]
    8. Taylor expanded in y around 0 59.8%

      \[\leadsto \color{blue}{\frac{x}{z}} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification66.0%

    \[\leadsto \begin{array}{l} \mathbf{if}\;z \leq -1.9 \cdot 10^{+15} \lor \neg \left(z \leq 12000000\right):\\ \;\;\;\;-x\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{z}\\ \end{array} \]
  5. Add Preprocessing

Alternative 10: 96.5% accurate, 1.0× speedup?

\[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ x\_s \cdot \frac{x\_m}{\frac{z}{\left(y - z\right) + 1}} \end{array} \]
x\_m = (fabs.f64 x)
x\_s = (copysign.f64 #s(literal 1 binary64) x)
(FPCore (x_s x_m y z)
 :precision binary64
 (* x_s (/ x_m (/ z (+ (- y z) 1.0)))))
x\_m = fabs(x);
x\_s = copysign(1.0, x);
double code(double x_s, double x_m, double y, double z) {
	return x_s * (x_m / (z / ((y - z) + 1.0)));
}
x\_m = abs(x)
x\_s = copysign(1.0d0, x)
real(8) function code(x_s, x_m, y, z)
    real(8), intent (in) :: x_s
    real(8), intent (in) :: x_m
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    code = x_s * (x_m / (z / ((y - z) + 1.0d0)))
end function
x\_m = Math.abs(x);
x\_s = Math.copySign(1.0, x);
public static double code(double x_s, double x_m, double y, double z) {
	return x_s * (x_m / (z / ((y - z) + 1.0)));
}
x\_m = math.fabs(x)
x\_s = math.copysign(1.0, x)
def code(x_s, x_m, y, z):
	return x_s * (x_m / (z / ((y - z) + 1.0)))
x\_m = abs(x)
x\_s = copysign(1.0, x)
function code(x_s, x_m, y, z)
	return Float64(x_s * Float64(x_m / Float64(z / Float64(Float64(y - z) + 1.0))))
end
x\_m = abs(x);
x\_s = sign(x) * abs(1.0);
function tmp = code(x_s, x_m, y, z)
	tmp = x_s * (x_m / (z / ((y - z) + 1.0)));
end
x\_m = N[Abs[x], $MachinePrecision]
x\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[x]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
code[x$95$s_, x$95$m_, y_, z_] := N[(x$95$s * N[(x$95$m / N[(z / N[(N[(y - z), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
x\_m = \left|x\right|
\\
x\_s = \mathsf{copysign}\left(1, x\right)

\\
x\_s \cdot \frac{x\_m}{\frac{z}{\left(y - z\right) + 1}}
\end{array}
Derivation
  1. Initial program 85.6%

    \[\frac{x \cdot \left(\left(y - z\right) + 1\right)}{z} \]
  2. Step-by-step derivation
    1. associate-/l*96.9%

      \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
  3. Simplified96.9%

    \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
  4. Add Preprocessing
  5. Step-by-step derivation
    1. clear-num96.8%

      \[\leadsto x \cdot \color{blue}{\frac{1}{\frac{z}{\left(y - z\right) + 1}}} \]
    2. un-div-inv97.4%

      \[\leadsto \color{blue}{\frac{x}{\frac{z}{\left(y - z\right) + 1}}} \]
  6. Applied egg-rr97.4%

    \[\leadsto \color{blue}{\frac{x}{\frac{z}{\left(y - z\right) + 1}}} \]
  7. Add Preprocessing

Alternative 11: 96.1% accurate, 1.0× speedup?

\[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ x\_s \cdot \left(x\_m \cdot \frac{\left(y - z\right) + 1}{z}\right) \end{array} \]
x\_m = (fabs.f64 x)
x\_s = (copysign.f64 #s(literal 1 binary64) x)
(FPCore (x_s x_m y z)
 :precision binary64
 (* x_s (* x_m (/ (+ (- y z) 1.0) z))))
x\_m = fabs(x);
x\_s = copysign(1.0, x);
double code(double x_s, double x_m, double y, double z) {
	return x_s * (x_m * (((y - z) + 1.0) / z));
}
x\_m = abs(x)
x\_s = copysign(1.0d0, x)
real(8) function code(x_s, x_m, y, z)
    real(8), intent (in) :: x_s
    real(8), intent (in) :: x_m
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    code = x_s * (x_m * (((y - z) + 1.0d0) / z))
end function
x\_m = Math.abs(x);
x\_s = Math.copySign(1.0, x);
public static double code(double x_s, double x_m, double y, double z) {
	return x_s * (x_m * (((y - z) + 1.0) / z));
}
x\_m = math.fabs(x)
x\_s = math.copysign(1.0, x)
def code(x_s, x_m, y, z):
	return x_s * (x_m * (((y - z) + 1.0) / z))
x\_m = abs(x)
x\_s = copysign(1.0, x)
function code(x_s, x_m, y, z)
	return Float64(x_s * Float64(x_m * Float64(Float64(Float64(y - z) + 1.0) / z)))
end
x\_m = abs(x);
x\_s = sign(x) * abs(1.0);
function tmp = code(x_s, x_m, y, z)
	tmp = x_s * (x_m * (((y - z) + 1.0) / z));
end
x\_m = N[Abs[x], $MachinePrecision]
x\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[x]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
code[x$95$s_, x$95$m_, y_, z_] := N[(x$95$s * N[(x$95$m * N[(N[(N[(y - z), $MachinePrecision] + 1.0), $MachinePrecision] / z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
x\_m = \left|x\right|
\\
x\_s = \mathsf{copysign}\left(1, x\right)

\\
x\_s \cdot \left(x\_m \cdot \frac{\left(y - z\right) + 1}{z}\right)
\end{array}
Derivation
  1. Initial program 85.6%

    \[\frac{x \cdot \left(\left(y - z\right) + 1\right)}{z} \]
  2. Step-by-step derivation
    1. associate-/l*96.9%

      \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
  3. Simplified96.9%

    \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
  4. Add Preprocessing
  5. Add Preprocessing

Alternative 12: 38.9% accurate, 4.5× speedup?

\[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ x\_s \cdot \left(-x\_m\right) \end{array} \]
x\_m = (fabs.f64 x)
x\_s = (copysign.f64 #s(literal 1 binary64) x)
(FPCore (x_s x_m y z) :precision binary64 (* x_s (- x_m)))
x\_m = fabs(x);
x\_s = copysign(1.0, x);
double code(double x_s, double x_m, double y, double z) {
	return x_s * -x_m;
}
x\_m = abs(x)
x\_s = copysign(1.0d0, x)
real(8) function code(x_s, x_m, y, z)
    real(8), intent (in) :: x_s
    real(8), intent (in) :: x_m
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    code = x_s * -x_m
end function
x\_m = Math.abs(x);
x\_s = Math.copySign(1.0, x);
public static double code(double x_s, double x_m, double y, double z) {
	return x_s * -x_m;
}
x\_m = math.fabs(x)
x\_s = math.copysign(1.0, x)
def code(x_s, x_m, y, z):
	return x_s * -x_m
x\_m = abs(x)
x\_s = copysign(1.0, x)
function code(x_s, x_m, y, z)
	return Float64(x_s * Float64(-x_m))
end
x\_m = abs(x);
x\_s = sign(x) * abs(1.0);
function tmp = code(x_s, x_m, y, z)
	tmp = x_s * -x_m;
end
x\_m = N[Abs[x], $MachinePrecision]
x\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[x]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
code[x$95$s_, x$95$m_, y_, z_] := N[(x$95$s * (-x$95$m)), $MachinePrecision]
\begin{array}{l}
x\_m = \left|x\right|
\\
x\_s = \mathsf{copysign}\left(1, x\right)

\\
x\_s \cdot \left(-x\_m\right)
\end{array}
Derivation
  1. Initial program 85.6%

    \[\frac{x \cdot \left(\left(y - z\right) + 1\right)}{z} \]
  2. Step-by-step derivation
    1. associate-/l*96.9%

      \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
  3. Simplified96.9%

    \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
  4. Add Preprocessing
  5. Taylor expanded in z around inf 36.8%

    \[\leadsto \color{blue}{-1 \cdot x} \]
  6. Step-by-step derivation
    1. neg-mul-136.8%

      \[\leadsto \color{blue}{-x} \]
  7. Simplified36.8%

    \[\leadsto \color{blue}{-x} \]
  8. Add Preprocessing

Alternative 13: 3.0% accurate, 9.0× speedup?

\[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ x\_s \cdot x\_m \end{array} \]
x\_m = (fabs.f64 x)
x\_s = (copysign.f64 #s(literal 1 binary64) x)
(FPCore (x_s x_m y z) :precision binary64 (* x_s x_m))
x\_m = fabs(x);
x\_s = copysign(1.0, x);
double code(double x_s, double x_m, double y, double z) {
	return x_s * x_m;
}
x\_m = abs(x)
x\_s = copysign(1.0d0, x)
real(8) function code(x_s, x_m, y, z)
    real(8), intent (in) :: x_s
    real(8), intent (in) :: x_m
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    code = x_s * x_m
end function
x\_m = Math.abs(x);
x\_s = Math.copySign(1.0, x);
public static double code(double x_s, double x_m, double y, double z) {
	return x_s * x_m;
}
x\_m = math.fabs(x)
x\_s = math.copysign(1.0, x)
def code(x_s, x_m, y, z):
	return x_s * x_m
x\_m = abs(x)
x\_s = copysign(1.0, x)
function code(x_s, x_m, y, z)
	return Float64(x_s * x_m)
end
x\_m = abs(x);
x\_s = sign(x) * abs(1.0);
function tmp = code(x_s, x_m, y, z)
	tmp = x_s * x_m;
end
x\_m = N[Abs[x], $MachinePrecision]
x\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[x]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
code[x$95$s_, x$95$m_, y_, z_] := N[(x$95$s * x$95$m), $MachinePrecision]
\begin{array}{l}
x\_m = \left|x\right|
\\
x\_s = \mathsf{copysign}\left(1, x\right)

\\
x\_s \cdot x\_m
\end{array}
Derivation
  1. Initial program 85.6%

    \[\frac{x \cdot \left(\left(y - z\right) + 1\right)}{z} \]
  2. Step-by-step derivation
    1. associate-/l*96.9%

      \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
  3. Simplified96.9%

    \[\leadsto \color{blue}{x \cdot \frac{\left(y - z\right) + 1}{z}} \]
  4. Add Preprocessing
  5. Taylor expanded in z around inf 36.8%

    \[\leadsto \color{blue}{-1 \cdot x} \]
  6. Step-by-step derivation
    1. neg-mul-136.8%

      \[\leadsto \color{blue}{-x} \]
  7. Simplified36.8%

    \[\leadsto \color{blue}{-x} \]
  8. Step-by-step derivation
    1. neg-sub036.8%

      \[\leadsto \color{blue}{0 - x} \]
    2. sub-neg36.8%

      \[\leadsto \color{blue}{0 + \left(-x\right)} \]
    3. add-sqr-sqrt19.3%

      \[\leadsto 0 + \color{blue}{\sqrt{-x} \cdot \sqrt{-x}} \]
    4. sqrt-unprod20.5%

      \[\leadsto 0 + \color{blue}{\sqrt{\left(-x\right) \cdot \left(-x\right)}} \]
    5. sqr-neg20.5%

      \[\leadsto 0 + \sqrt{\color{blue}{x \cdot x}} \]
    6. sqrt-unprod1.1%

      \[\leadsto 0 + \color{blue}{\sqrt{x} \cdot \sqrt{x}} \]
    7. add-sqr-sqrt2.6%

      \[\leadsto 0 + \color{blue}{x} \]
  9. Applied egg-rr2.6%

    \[\leadsto \color{blue}{0 + x} \]
  10. Taylor expanded in x around 0 2.6%

    \[\leadsto \color{blue}{x} \]
  11. Add Preprocessing

Developer Target 1: 99.4% accurate, 0.4× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_0 := \left(1 + y\right) \cdot \frac{x}{z} - x\\ \mathbf{if}\;x < -2.71483106713436 \cdot 10^{-162}:\\ \;\;\;\;t\_0\\ \mathbf{elif}\;x < 3.874108816439546 \cdot 10^{-197}:\\ \;\;\;\;\left(x \cdot \left(\left(y - z\right) + 1\right)\right) \cdot \frac{1}{z}\\ \mathbf{else}:\\ \;\;\;\;t\_0\\ \end{array} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (let* ((t_0 (- (* (+ 1.0 y) (/ x z)) x)))
   (if (< x -2.71483106713436e-162)
     t_0
     (if (< x 3.874108816439546e-197)
       (* (* x (+ (- y z) 1.0)) (/ 1.0 z))
       t_0))))
double code(double x, double y, double z) {
	double t_0 = ((1.0 + y) * (x / z)) - x;
	double tmp;
	if (x < -2.71483106713436e-162) {
		tmp = t_0;
	} else if (x < 3.874108816439546e-197) {
		tmp = (x * ((y - z) + 1.0)) * (1.0 / z);
	} else {
		tmp = t_0;
	}
	return tmp;
}
real(8) function code(x, y, z)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8) :: t_0
    real(8) :: tmp
    t_0 = ((1.0d0 + y) * (x / z)) - x
    if (x < (-2.71483106713436d-162)) then
        tmp = t_0
    else if (x < 3.874108816439546d-197) then
        tmp = (x * ((y - z) + 1.0d0)) * (1.0d0 / z)
    else
        tmp = t_0
    end if
    code = tmp
end function
public static double code(double x, double y, double z) {
	double t_0 = ((1.0 + y) * (x / z)) - x;
	double tmp;
	if (x < -2.71483106713436e-162) {
		tmp = t_0;
	} else if (x < 3.874108816439546e-197) {
		tmp = (x * ((y - z) + 1.0)) * (1.0 / z);
	} else {
		tmp = t_0;
	}
	return tmp;
}
def code(x, y, z):
	t_0 = ((1.0 + y) * (x / z)) - x
	tmp = 0
	if x < -2.71483106713436e-162:
		tmp = t_0
	elif x < 3.874108816439546e-197:
		tmp = (x * ((y - z) + 1.0)) * (1.0 / z)
	else:
		tmp = t_0
	return tmp
function code(x, y, z)
	t_0 = Float64(Float64(Float64(1.0 + y) * Float64(x / z)) - x)
	tmp = 0.0
	if (x < -2.71483106713436e-162)
		tmp = t_0;
	elseif (x < 3.874108816439546e-197)
		tmp = Float64(Float64(x * Float64(Float64(y - z) + 1.0)) * Float64(1.0 / z));
	else
		tmp = t_0;
	end
	return tmp
end
function tmp_2 = code(x, y, z)
	t_0 = ((1.0 + y) * (x / z)) - x;
	tmp = 0.0;
	if (x < -2.71483106713436e-162)
		tmp = t_0;
	elseif (x < 3.874108816439546e-197)
		tmp = (x * ((y - z) + 1.0)) * (1.0 / z);
	else
		tmp = t_0;
	end
	tmp_2 = tmp;
end
code[x_, y_, z_] := Block[{t$95$0 = N[(N[(N[(1.0 + y), $MachinePrecision] * N[(x / z), $MachinePrecision]), $MachinePrecision] - x), $MachinePrecision]}, If[Less[x, -2.71483106713436e-162], t$95$0, If[Less[x, 3.874108816439546e-197], N[(N[(x * N[(N[(y - z), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision] * N[(1.0 / z), $MachinePrecision]), $MachinePrecision], t$95$0]]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := \left(1 + y\right) \cdot \frac{x}{z} - x\\
\mathbf{if}\;x < -2.71483106713436 \cdot 10^{-162}:\\
\;\;\;\;t\_0\\

\mathbf{elif}\;x < 3.874108816439546 \cdot 10^{-197}:\\
\;\;\;\;\left(x \cdot \left(\left(y - z\right) + 1\right)\right) \cdot \frac{1}{z}\\

\mathbf{else}:\\
\;\;\;\;t\_0\\


\end{array}
\end{array}

Reproduce

?
herbie shell --seed 2024148 
(FPCore (x y z)
  :name "Diagrams.TwoD.Segment.Bernstein:evaluateBernstein from diagrams-lib-1.3.0.3"
  :precision binary64

  :alt
  (! :herbie-platform default (if (< x -67870776678359/25000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) (- (* (+ 1 y) (/ x z)) x) (if (< x 1937054408219773/50000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) (* (* x (+ (- y z) 1)) (/ 1 z)) (- (* (+ 1 y) (/ x z)) x))))

  (/ (* x (+ (- y z) 1.0)) z))