Data.Random.Distribution.Triangular:triangularCDF from random-fu-0.2.6.2, B

Percentage Accurate: 88.9% → 97.8%
Time: 8.6s
Alternatives: 10
Speedup: 0.8×

Specification

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

\\
\frac{x}{\left(y - z\right) \cdot \left(t - z\right)}
\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 10 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.9% accurate, 1.0× speedup?

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

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

Alternative 1: 97.8% accurate, 0.4× speedup?

\[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ [x_m, y, z, t] = \mathsf{sort}([x_m, y, z, t])\\ \\ x\_s \cdot \begin{array}{l} \mathbf{if}\;\frac{x\_m}{\left(t - z\right) \cdot \left(y - z\right)} \leq 5 \cdot 10^{-302}:\\ \;\;\;\;\frac{\frac{x\_m}{t - z}}{y - z}\\ \mathbf{else}:\\ \;\;\;\;\frac{x\_m}{\mathsf{fma}\left(y - z, t, \left(z - y\right) \cdot z\right)}\\ \end{array} \end{array} \]
x\_m = (fabs.f64 x)
x\_s = (copysign.f64 #s(literal 1 binary64) x)
NOTE: x_m, y, z, and t should be sorted in increasing order before calling this function.
(FPCore (x_s x_m y z t)
 :precision binary64
 (*
  x_s
  (if (<= (/ x_m (* (- t z) (- y z))) 5e-302)
    (/ (/ x_m (- t z)) (- y z))
    (/ x_m (fma (- y z) t (* (- z y) z))))))
x\_m = fabs(x);
x\_s = copysign(1.0, x);
assert(x_m < y && y < z && z < t);
double code(double x_s, double x_m, double y, double z, double t) {
	double tmp;
	if ((x_m / ((t - z) * (y - z))) <= 5e-302) {
		tmp = (x_m / (t - z)) / (y - z);
	} else {
		tmp = x_m / fma((y - z), t, ((z - y) * z));
	}
	return x_s * tmp;
}
x\_m = abs(x)
x\_s = copysign(1.0, x)
x_m, y, z, t = sort([x_m, y, z, t])
function code(x_s, x_m, y, z, t)
	tmp = 0.0
	if (Float64(x_m / Float64(Float64(t - z) * Float64(y - z))) <= 5e-302)
		tmp = Float64(Float64(x_m / Float64(t - z)) / Float64(y - z));
	else
		tmp = Float64(x_m / fma(Float64(y - z), t, Float64(Float64(z - y) * z)));
	end
	return Float64(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]
NOTE: x_m, y, z, and t should be sorted in increasing order before calling this function.
code[x$95$s_, x$95$m_, y_, z_, t_] := N[(x$95$s * If[LessEqual[N[(x$95$m / N[(N[(t - z), $MachinePrecision] * N[(y - z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], 5e-302], N[(N[(x$95$m / N[(t - z), $MachinePrecision]), $MachinePrecision] / N[(y - z), $MachinePrecision]), $MachinePrecision], N[(x$95$m / N[(N[(y - z), $MachinePrecision] * t + N[(N[(z - y), $MachinePrecision] * z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]), $MachinePrecision]
\begin{array}{l}
x\_m = \left|x\right|
\\
x\_s = \mathsf{copysign}\left(1, x\right)
\\
[x_m, y, z, t] = \mathsf{sort}([x_m, y, z, t])\\
\\
x\_s \cdot \begin{array}{l}
\mathbf{if}\;\frac{x\_m}{\left(t - z\right) \cdot \left(y - z\right)} \leq 5 \cdot 10^{-302}:\\
\;\;\;\;\frac{\frac{x\_m}{t - z}}{y - z}\\

\mathbf{else}:\\
\;\;\;\;\frac{x\_m}{\mathsf{fma}\left(y - z, t, \left(z - y\right) \cdot z\right)}\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (/.f64 x (*.f64 (-.f64 y z) (-.f64 t z))) < 5.00000000000000033e-302

    1. Initial program 87.3%

      \[\frac{x}{\left(y - z\right) \cdot \left(t - z\right)} \]
    2. Add Preprocessing
    3. Step-by-step derivation
      1. lift-/.f64N/A

        \[\leadsto \color{blue}{\frac{x}{\left(y - z\right) \cdot \left(t - z\right)}} \]
      2. lift-*.f64N/A

        \[\leadsto \frac{x}{\color{blue}{\left(y - z\right) \cdot \left(t - z\right)}} \]
      3. associate-/l/N/A

        \[\leadsto \color{blue}{\frac{\frac{x}{t - z}}{y - z}} \]
      4. lower-/.f64N/A

        \[\leadsto \color{blue}{\frac{\frac{x}{t - z}}{y - z}} \]
      5. lower-/.f6496.6

        \[\leadsto \frac{\color{blue}{\frac{x}{t - z}}}{y - z} \]
    4. Applied rewrites96.6%

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

    if 5.00000000000000033e-302 < (/.f64 x (*.f64 (-.f64 y z) (-.f64 t z)))

    1. Initial program 99.4%

      \[\frac{x}{\left(y - z\right) \cdot \left(t - z\right)} \]
    2. Add Preprocessing
    3. Step-by-step derivation
      1. lift-*.f64N/A

        \[\leadsto \frac{x}{\color{blue}{\left(y - z\right) \cdot \left(t - z\right)}} \]
      2. lift--.f64N/A

        \[\leadsto \frac{x}{\left(y - z\right) \cdot \color{blue}{\left(t - z\right)}} \]
      3. sub-negN/A

        \[\leadsto \frac{x}{\left(y - z\right) \cdot \color{blue}{\left(t + \left(\mathsf{neg}\left(z\right)\right)\right)}} \]
      4. distribute-rgt-inN/A

        \[\leadsto \frac{x}{\color{blue}{t \cdot \left(y - z\right) + \left(\mathsf{neg}\left(z\right)\right) \cdot \left(y - z\right)}} \]
      5. *-commutativeN/A

        \[\leadsto \frac{x}{\color{blue}{\left(y - z\right) \cdot t} + \left(\mathsf{neg}\left(z\right)\right) \cdot \left(y - z\right)} \]
      6. lift--.f64N/A

        \[\leadsto \frac{x}{\left(y - z\right) \cdot t + \left(\mathsf{neg}\left(z\right)\right) \cdot \color{blue}{\left(y - z\right)}} \]
      7. sub-negN/A

        \[\leadsto \frac{x}{\left(y - z\right) \cdot t + \left(\mathsf{neg}\left(z\right)\right) \cdot \color{blue}{\left(y + \left(\mathsf{neg}\left(z\right)\right)\right)}} \]
      8. +-commutativeN/A

        \[\leadsto \frac{x}{\left(y - z\right) \cdot t + \left(\mathsf{neg}\left(z\right)\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(z\right)\right) + y\right)}} \]
      9. distribute-lft-inN/A

        \[\leadsto \frac{x}{\left(y - z\right) \cdot t + \color{blue}{\left(\left(\mathsf{neg}\left(z\right)\right) \cdot \left(\mathsf{neg}\left(z\right)\right) + \left(\mathsf{neg}\left(z\right)\right) \cdot y\right)}} \]
      10. sqr-negN/A

        \[\leadsto \frac{x}{\left(y - z\right) \cdot t + \left(\color{blue}{z \cdot z} + \left(\mathsf{neg}\left(z\right)\right) \cdot y\right)} \]
      11. cancel-sign-sub-invN/A

        \[\leadsto \frac{x}{\left(y - z\right) \cdot t + \color{blue}{\left(z \cdot z - z \cdot y\right)}} \]
      12. *-commutativeN/A

        \[\leadsto \frac{x}{\left(y - z\right) \cdot t + \left(z \cdot z - \color{blue}{y \cdot z}\right)} \]
      13. lower-fma.f64N/A

        \[\leadsto \frac{x}{\color{blue}{\mathsf{fma}\left(y - z, t, z \cdot z - y \cdot z\right)}} \]
      14. distribute-rgt-out--N/A

        \[\leadsto \frac{x}{\mathsf{fma}\left(y - z, t, \color{blue}{z \cdot \left(z - y\right)}\right)} \]
      15. lower-*.f64N/A

        \[\leadsto \frac{x}{\mathsf{fma}\left(y - z, t, \color{blue}{z \cdot \left(z - y\right)}\right)} \]
      16. lower--.f6499.4

        \[\leadsto \frac{x}{\mathsf{fma}\left(y - z, t, z \cdot \color{blue}{\left(z - y\right)}\right)} \]
    4. Applied rewrites99.4%

      \[\leadsto \frac{x}{\color{blue}{\mathsf{fma}\left(y - z, t, z \cdot \left(z - y\right)\right)}} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification97.3%

    \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{x}{\left(t - z\right) \cdot \left(y - z\right)} \leq 5 \cdot 10^{-302}:\\ \;\;\;\;\frac{\frac{x}{t - z}}{y - z}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{\mathsf{fma}\left(y - z, t, \left(z - y\right) \cdot z\right)}\\ \end{array} \]
  5. Add Preprocessing

Alternative 2: 93.2% accurate, 0.6× speedup?

\[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ [x_m, y, z, t] = \mathsf{sort}([x_m, y, z, t])\\ \\ x\_s \cdot \begin{array}{l} \mathbf{if}\;z \leq -1.2 \cdot 10^{+129}:\\ \;\;\;\;\frac{\frac{x\_m}{z}}{z - y}\\ \mathbf{elif}\;z \leq 2.5 \cdot 10^{+130}:\\ \;\;\;\;\frac{x\_m}{\left(t - z\right) \cdot \left(y - z\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{\frac{x\_m}{z}}{z - t}\\ \end{array} \end{array} \]
x\_m = (fabs.f64 x)
x\_s = (copysign.f64 #s(literal 1 binary64) x)
NOTE: x_m, y, z, and t should be sorted in increasing order before calling this function.
(FPCore (x_s x_m y z t)
 :precision binary64
 (*
  x_s
  (if (<= z -1.2e+129)
    (/ (/ x_m z) (- z y))
    (if (<= z 2.5e+130) (/ x_m (* (- t z) (- y z))) (/ (/ x_m z) (- z t))))))
x\_m = fabs(x);
x\_s = copysign(1.0, x);
assert(x_m < y && y < z && z < t);
double code(double x_s, double x_m, double y, double z, double t) {
	double tmp;
	if (z <= -1.2e+129) {
		tmp = (x_m / z) / (z - y);
	} else if (z <= 2.5e+130) {
		tmp = x_m / ((t - z) * (y - z));
	} else {
		tmp = (x_m / z) / (z - t);
	}
	return x_s * tmp;
}
x\_m = abs(x)
x\_s = copysign(1.0d0, x)
NOTE: x_m, y, z, and t should be sorted in increasing order before calling this function.
real(8) function code(x_s, x_m, y, z, t)
    real(8), intent (in) :: x_s
    real(8), intent (in) :: x_m
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8), intent (in) :: t
    real(8) :: tmp
    if (z <= (-1.2d+129)) then
        tmp = (x_m / z) / (z - y)
    else if (z <= 2.5d+130) then
        tmp = x_m / ((t - z) * (y - z))
    else
        tmp = (x_m / z) / (z - t)
    end if
    code = x_s * tmp
end function
x\_m = Math.abs(x);
x\_s = Math.copySign(1.0, x);
assert x_m < y && y < z && z < t;
public static double code(double x_s, double x_m, double y, double z, double t) {
	double tmp;
	if (z <= -1.2e+129) {
		tmp = (x_m / z) / (z - y);
	} else if (z <= 2.5e+130) {
		tmp = x_m / ((t - z) * (y - z));
	} else {
		tmp = (x_m / z) / (z - t);
	}
	return x_s * tmp;
}
x\_m = math.fabs(x)
x\_s = math.copysign(1.0, x)
[x_m, y, z, t] = sort([x_m, y, z, t])
def code(x_s, x_m, y, z, t):
	tmp = 0
	if z <= -1.2e+129:
		tmp = (x_m / z) / (z - y)
	elif z <= 2.5e+130:
		tmp = x_m / ((t - z) * (y - z))
	else:
		tmp = (x_m / z) / (z - t)
	return x_s * tmp
x\_m = abs(x)
x\_s = copysign(1.0, x)
x_m, y, z, t = sort([x_m, y, z, t])
function code(x_s, x_m, y, z, t)
	tmp = 0.0
	if (z <= -1.2e+129)
		tmp = Float64(Float64(x_m / z) / Float64(z - y));
	elseif (z <= 2.5e+130)
		tmp = Float64(x_m / Float64(Float64(t - z) * Float64(y - z)));
	else
		tmp = Float64(Float64(x_m / z) / Float64(z - t));
	end
	return Float64(x_s * tmp)
end
x\_m = abs(x);
x\_s = sign(x) * abs(1.0);
x_m, y, z, t = num2cell(sort([x_m, y, z, t])){:}
function tmp_2 = code(x_s, x_m, y, z, t)
	tmp = 0.0;
	if (z <= -1.2e+129)
		tmp = (x_m / z) / (z - y);
	elseif (z <= 2.5e+130)
		tmp = x_m / ((t - z) * (y - z));
	else
		tmp = (x_m / z) / (z - t);
	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]
NOTE: x_m, y, z, and t should be sorted in increasing order before calling this function.
code[x$95$s_, x$95$m_, y_, z_, t_] := N[(x$95$s * If[LessEqual[z, -1.2e+129], N[(N[(x$95$m / z), $MachinePrecision] / N[(z - y), $MachinePrecision]), $MachinePrecision], If[LessEqual[z, 2.5e+130], N[(x$95$m / N[(N[(t - z), $MachinePrecision] * N[(y - z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[(x$95$m / z), $MachinePrecision] / N[(z - t), $MachinePrecision]), $MachinePrecision]]]), $MachinePrecision]
\begin{array}{l}
x\_m = \left|x\right|
\\
x\_s = \mathsf{copysign}\left(1, x\right)
\\
[x_m, y, z, t] = \mathsf{sort}([x_m, y, z, t])\\
\\
x\_s \cdot \begin{array}{l}
\mathbf{if}\;z \leq -1.2 \cdot 10^{+129}:\\
\;\;\;\;\frac{\frac{x\_m}{z}}{z - y}\\

\mathbf{elif}\;z \leq 2.5 \cdot 10^{+130}:\\
\;\;\;\;\frac{x\_m}{\left(t - z\right) \cdot \left(y - z\right)}\\

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


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if z < -1.1999999999999999e129

    1. Initial program 72.9%

      \[\frac{x}{\left(y - z\right) \cdot \left(t - z\right)} \]
    2. Add Preprocessing
    3. Taylor expanded in t around 0

      \[\leadsto \color{blue}{-1 \cdot \frac{x}{z \cdot \left(y - z\right)}} \]
    4. Step-by-step derivation
      1. mul-1-negN/A

        \[\leadsto \color{blue}{\mathsf{neg}\left(\frac{x}{z \cdot \left(y - z\right)}\right)} \]
      2. associate-/r*N/A

        \[\leadsto \mathsf{neg}\left(\color{blue}{\frac{\frac{x}{z}}{y - z}}\right) \]
      3. distribute-neg-frac2N/A

        \[\leadsto \color{blue}{\frac{\frac{x}{z}}{\mathsf{neg}\left(\left(y - z\right)\right)}} \]
      4. mul-1-negN/A

        \[\leadsto \frac{\frac{x}{z}}{\color{blue}{-1 \cdot \left(y - z\right)}} \]
      5. lower-/.f64N/A

        \[\leadsto \color{blue}{\frac{\frac{x}{z}}{-1 \cdot \left(y - z\right)}} \]
      6. lower-/.f64N/A

        \[\leadsto \frac{\color{blue}{\frac{x}{z}}}{-1 \cdot \left(y - z\right)} \]
      7. mul-1-negN/A

        \[\leadsto \frac{\frac{x}{z}}{\color{blue}{\mathsf{neg}\left(\left(y - z\right)\right)}} \]
      8. sub-negN/A

        \[\leadsto \frac{\frac{x}{z}}{\mathsf{neg}\left(\color{blue}{\left(y + \left(\mathsf{neg}\left(z\right)\right)\right)}\right)} \]
      9. +-commutativeN/A

        \[\leadsto \frac{\frac{x}{z}}{\mathsf{neg}\left(\color{blue}{\left(\left(\mathsf{neg}\left(z\right)\right) + y\right)}\right)} \]
      10. distribute-neg-inN/A

        \[\leadsto \frac{\frac{x}{z}}{\color{blue}{\left(\mathsf{neg}\left(\left(\mathsf{neg}\left(z\right)\right)\right)\right) + \left(\mathsf{neg}\left(y\right)\right)}} \]
      11. unsub-negN/A

        \[\leadsto \frac{\frac{x}{z}}{\color{blue}{\left(\mathsf{neg}\left(\left(\mathsf{neg}\left(z\right)\right)\right)\right) - y}} \]
      12. remove-double-negN/A

        \[\leadsto \frac{\frac{x}{z}}{\color{blue}{z} - y} \]
      13. lower--.f6496.6

        \[\leadsto \frac{\frac{x}{z}}{\color{blue}{z - y}} \]
    5. Applied rewrites96.6%

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

    if -1.1999999999999999e129 < z < 2.4999999999999998e130

    1. Initial program 96.3%

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

    if 2.4999999999999998e130 < z

    1. Initial program 77.8%

      \[\frac{x}{\left(y - z\right) \cdot \left(t - z\right)} \]
    2. Add Preprocessing
    3. Taylor expanded in y around 0

      \[\leadsto \color{blue}{-1 \cdot \frac{x}{z \cdot \left(t - z\right)}} \]
    4. Step-by-step derivation
      1. mul-1-negN/A

        \[\leadsto \color{blue}{\mathsf{neg}\left(\frac{x}{z \cdot \left(t - z\right)}\right)} \]
      2. associate-/r*N/A

        \[\leadsto \mathsf{neg}\left(\color{blue}{\frac{\frac{x}{z}}{t - z}}\right) \]
      3. distribute-neg-frac2N/A

        \[\leadsto \color{blue}{\frac{\frac{x}{z}}{\mathsf{neg}\left(\left(t - z\right)\right)}} \]
      4. mul-1-negN/A

        \[\leadsto \frac{\frac{x}{z}}{\color{blue}{-1 \cdot \left(t - z\right)}} \]
      5. lower-/.f64N/A

        \[\leadsto \color{blue}{\frac{\frac{x}{z}}{-1 \cdot \left(t - z\right)}} \]
      6. lower-/.f64N/A

        \[\leadsto \frac{\color{blue}{\frac{x}{z}}}{-1 \cdot \left(t - z\right)} \]
      7. mul-1-negN/A

        \[\leadsto \frac{\frac{x}{z}}{\color{blue}{\mathsf{neg}\left(\left(t - z\right)\right)}} \]
      8. sub-negN/A

        \[\leadsto \frac{\frac{x}{z}}{\mathsf{neg}\left(\color{blue}{\left(t + \left(\mathsf{neg}\left(z\right)\right)\right)}\right)} \]
      9. +-commutativeN/A

        \[\leadsto \frac{\frac{x}{z}}{\mathsf{neg}\left(\color{blue}{\left(\left(\mathsf{neg}\left(z\right)\right) + t\right)}\right)} \]
      10. distribute-neg-inN/A

        \[\leadsto \frac{\frac{x}{z}}{\color{blue}{\left(\mathsf{neg}\left(\left(\mathsf{neg}\left(z\right)\right)\right)\right) + \left(\mathsf{neg}\left(t\right)\right)}} \]
      11. remove-double-negN/A

        \[\leadsto \frac{\frac{x}{z}}{\color{blue}{z} + \left(\mathsf{neg}\left(t\right)\right)} \]
      12. unsub-negN/A

        \[\leadsto \frac{\frac{x}{z}}{\color{blue}{z - t}} \]
      13. lower--.f6489.5

        \[\leadsto \frac{\frac{x}{z}}{\color{blue}{z - t}} \]
    5. Applied rewrites89.5%

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

    \[\leadsto \begin{array}{l} \mathbf{if}\;z \leq -1.2 \cdot 10^{+129}:\\ \;\;\;\;\frac{\frac{x}{z}}{z - y}\\ \mathbf{elif}\;z \leq 2.5 \cdot 10^{+130}:\\ \;\;\;\;\frac{x}{\left(t - z\right) \cdot \left(y - z\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{\frac{x}{z}}{z - t}\\ \end{array} \]
  5. Add Preprocessing

Alternative 3: 93.1% accurate, 0.6× speedup?

\[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ [x_m, y, z, t] = \mathsf{sort}([x_m, y, z, t])\\ \\ \begin{array}{l} t_1 := \frac{\frac{x\_m}{z}}{z - t}\\ x\_s \cdot \begin{array}{l} \mathbf{if}\;z \leq -6.1 \cdot 10^{+150}:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;z \leq 2.5 \cdot 10^{+130}:\\ \;\;\;\;\frac{x\_m}{\left(t - z\right) \cdot \left(y - z\right)}\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \end{array} \end{array} \]
x\_m = (fabs.f64 x)
x\_s = (copysign.f64 #s(literal 1 binary64) x)
NOTE: x_m, y, z, and t should be sorted in increasing order before calling this function.
(FPCore (x_s x_m y z t)
 :precision binary64
 (let* ((t_1 (/ (/ x_m z) (- z t))))
   (*
    x_s
    (if (<= z -6.1e+150)
      t_1
      (if (<= z 2.5e+130) (/ x_m (* (- t z) (- y z))) t_1)))))
x\_m = fabs(x);
x\_s = copysign(1.0, x);
assert(x_m < y && y < z && z < t);
double code(double x_s, double x_m, double y, double z, double t) {
	double t_1 = (x_m / z) / (z - t);
	double tmp;
	if (z <= -6.1e+150) {
		tmp = t_1;
	} else if (z <= 2.5e+130) {
		tmp = x_m / ((t - z) * (y - z));
	} else {
		tmp = t_1;
	}
	return x_s * tmp;
}
x\_m = abs(x)
x\_s = copysign(1.0d0, x)
NOTE: x_m, y, z, and t should be sorted in increasing order before calling this function.
real(8) function code(x_s, x_m, y, z, t)
    real(8), intent (in) :: x_s
    real(8), intent (in) :: x_m
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8), intent (in) :: t
    real(8) :: t_1
    real(8) :: tmp
    t_1 = (x_m / z) / (z - t)
    if (z <= (-6.1d+150)) then
        tmp = t_1
    else if (z <= 2.5d+130) then
        tmp = x_m / ((t - z) * (y - z))
    else
        tmp = t_1
    end if
    code = x_s * tmp
end function
x\_m = Math.abs(x);
x\_s = Math.copySign(1.0, x);
assert x_m < y && y < z && z < t;
public static double code(double x_s, double x_m, double y, double z, double t) {
	double t_1 = (x_m / z) / (z - t);
	double tmp;
	if (z <= -6.1e+150) {
		tmp = t_1;
	} else if (z <= 2.5e+130) {
		tmp = x_m / ((t - z) * (y - z));
	} else {
		tmp = t_1;
	}
	return x_s * tmp;
}
x\_m = math.fabs(x)
x\_s = math.copysign(1.0, x)
[x_m, y, z, t] = sort([x_m, y, z, t])
def code(x_s, x_m, y, z, t):
	t_1 = (x_m / z) / (z - t)
	tmp = 0
	if z <= -6.1e+150:
		tmp = t_1
	elif z <= 2.5e+130:
		tmp = x_m / ((t - z) * (y - z))
	else:
		tmp = t_1
	return x_s * tmp
x\_m = abs(x)
x\_s = copysign(1.0, x)
x_m, y, z, t = sort([x_m, y, z, t])
function code(x_s, x_m, y, z, t)
	t_1 = Float64(Float64(x_m / z) / Float64(z - t))
	tmp = 0.0
	if (z <= -6.1e+150)
		tmp = t_1;
	elseif (z <= 2.5e+130)
		tmp = Float64(x_m / Float64(Float64(t - z) * Float64(y - z)));
	else
		tmp = t_1;
	end
	return Float64(x_s * tmp)
end
x\_m = abs(x);
x\_s = sign(x) * abs(1.0);
x_m, y, z, t = num2cell(sort([x_m, y, z, t])){:}
function tmp_2 = code(x_s, x_m, y, z, t)
	t_1 = (x_m / z) / (z - t);
	tmp = 0.0;
	if (z <= -6.1e+150)
		tmp = t_1;
	elseif (z <= 2.5e+130)
		tmp = x_m / ((t - z) * (y - z));
	else
		tmp = t_1;
	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]
NOTE: x_m, y, z, and t should be sorted in increasing order before calling this function.
code[x$95$s_, x$95$m_, y_, z_, t_] := Block[{t$95$1 = N[(N[(x$95$m / z), $MachinePrecision] / N[(z - t), $MachinePrecision]), $MachinePrecision]}, N[(x$95$s * If[LessEqual[z, -6.1e+150], t$95$1, If[LessEqual[z, 2.5e+130], N[(x$95$m / N[(N[(t - z), $MachinePrecision] * N[(y - z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], t$95$1]]), $MachinePrecision]]
\begin{array}{l}
x\_m = \left|x\right|
\\
x\_s = \mathsf{copysign}\left(1, x\right)
\\
[x_m, y, z, t] = \mathsf{sort}([x_m, y, z, t])\\
\\
\begin{array}{l}
t_1 := \frac{\frac{x\_m}{z}}{z - t}\\
x\_s \cdot \begin{array}{l}
\mathbf{if}\;z \leq -6.1 \cdot 10^{+150}:\\
\;\;\;\;t\_1\\

\mathbf{elif}\;z \leq 2.5 \cdot 10^{+130}:\\
\;\;\;\;\frac{x\_m}{\left(t - z\right) \cdot \left(y - z\right)}\\

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


\end{array}
\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if z < -6.10000000000000026e150 or 2.4999999999999998e130 < z

    1. Initial program 76.7%

      \[\frac{x}{\left(y - z\right) \cdot \left(t - z\right)} \]
    2. Add Preprocessing
    3. Taylor expanded in y around 0

      \[\leadsto \color{blue}{-1 \cdot \frac{x}{z \cdot \left(t - z\right)}} \]
    4. Step-by-step derivation
      1. mul-1-negN/A

        \[\leadsto \color{blue}{\mathsf{neg}\left(\frac{x}{z \cdot \left(t - z\right)}\right)} \]
      2. associate-/r*N/A

        \[\leadsto \mathsf{neg}\left(\color{blue}{\frac{\frac{x}{z}}{t - z}}\right) \]
      3. distribute-neg-frac2N/A

        \[\leadsto \color{blue}{\frac{\frac{x}{z}}{\mathsf{neg}\left(\left(t - z\right)\right)}} \]
      4. mul-1-negN/A

        \[\leadsto \frac{\frac{x}{z}}{\color{blue}{-1 \cdot \left(t - z\right)}} \]
      5. lower-/.f64N/A

        \[\leadsto \color{blue}{\frac{\frac{x}{z}}{-1 \cdot \left(t - z\right)}} \]
      6. lower-/.f64N/A

        \[\leadsto \frac{\color{blue}{\frac{x}{z}}}{-1 \cdot \left(t - z\right)} \]
      7. mul-1-negN/A

        \[\leadsto \frac{\frac{x}{z}}{\color{blue}{\mathsf{neg}\left(\left(t - z\right)\right)}} \]
      8. sub-negN/A

        \[\leadsto \frac{\frac{x}{z}}{\mathsf{neg}\left(\color{blue}{\left(t + \left(\mathsf{neg}\left(z\right)\right)\right)}\right)} \]
      9. +-commutativeN/A

        \[\leadsto \frac{\frac{x}{z}}{\mathsf{neg}\left(\color{blue}{\left(\left(\mathsf{neg}\left(z\right)\right) + t\right)}\right)} \]
      10. distribute-neg-inN/A

        \[\leadsto \frac{\frac{x}{z}}{\color{blue}{\left(\mathsf{neg}\left(\left(\mathsf{neg}\left(z\right)\right)\right)\right) + \left(\mathsf{neg}\left(t\right)\right)}} \]
      11. remove-double-negN/A

        \[\leadsto \frac{\frac{x}{z}}{\color{blue}{z} + \left(\mathsf{neg}\left(t\right)\right)} \]
      12. unsub-negN/A

        \[\leadsto \frac{\frac{x}{z}}{\color{blue}{z - t}} \]
      13. lower--.f6493.0

        \[\leadsto \frac{\frac{x}{z}}{\color{blue}{z - t}} \]
    5. Applied rewrites93.0%

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

    if -6.10000000000000026e150 < z < 2.4999999999999998e130

    1. Initial program 95.3%

      \[\frac{x}{\left(y - z\right) \cdot \left(t - z\right)} \]
    2. Add Preprocessing
  3. Recombined 2 regimes into one program.
  4. Final simplification94.7%

    \[\leadsto \begin{array}{l} \mathbf{if}\;z \leq -6.1 \cdot 10^{+150}:\\ \;\;\;\;\frac{\frac{x}{z}}{z - t}\\ \mathbf{elif}\;z \leq 2.5 \cdot 10^{+130}:\\ \;\;\;\;\frac{x}{\left(t - z\right) \cdot \left(y - z\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{\frac{x}{z}}{z - t}\\ \end{array} \]
  5. Add Preprocessing

Alternative 4: 76.1% accurate, 0.7× speedup?

\[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ [x_m, y, z, t] = \mathsf{sort}([x_m, y, z, t])\\ \\ x\_s \cdot \begin{array}{l} \mathbf{if}\;y \leq -4.6 \cdot 10^{-95}:\\ \;\;\;\;\frac{x\_m}{\left(t - z\right) \cdot y}\\ \mathbf{elif}\;y \leq 2.8 \cdot 10^{+16}:\\ \;\;\;\;\frac{x\_m}{\left(z - t\right) \cdot z}\\ \mathbf{else}:\\ \;\;\;\;\frac{\frac{x\_m}{t}}{y}\\ \end{array} \end{array} \]
x\_m = (fabs.f64 x)
x\_s = (copysign.f64 #s(literal 1 binary64) x)
NOTE: x_m, y, z, and t should be sorted in increasing order before calling this function.
(FPCore (x_s x_m y z t)
 :precision binary64
 (*
  x_s
  (if (<= y -4.6e-95)
    (/ x_m (* (- t z) y))
    (if (<= y 2.8e+16) (/ x_m (* (- z t) z)) (/ (/ x_m t) y)))))
x\_m = fabs(x);
x\_s = copysign(1.0, x);
assert(x_m < y && y < z && z < t);
double code(double x_s, double x_m, double y, double z, double t) {
	double tmp;
	if (y <= -4.6e-95) {
		tmp = x_m / ((t - z) * y);
	} else if (y <= 2.8e+16) {
		tmp = x_m / ((z - t) * z);
	} else {
		tmp = (x_m / t) / y;
	}
	return x_s * tmp;
}
x\_m = abs(x)
x\_s = copysign(1.0d0, x)
NOTE: x_m, y, z, and t should be sorted in increasing order before calling this function.
real(8) function code(x_s, x_m, y, z, t)
    real(8), intent (in) :: x_s
    real(8), intent (in) :: x_m
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8), intent (in) :: t
    real(8) :: tmp
    if (y <= (-4.6d-95)) then
        tmp = x_m / ((t - z) * y)
    else if (y <= 2.8d+16) then
        tmp = x_m / ((z - t) * z)
    else
        tmp = (x_m / t) / y
    end if
    code = x_s * tmp
end function
x\_m = Math.abs(x);
x\_s = Math.copySign(1.0, x);
assert x_m < y && y < z && z < t;
public static double code(double x_s, double x_m, double y, double z, double t) {
	double tmp;
	if (y <= -4.6e-95) {
		tmp = x_m / ((t - z) * y);
	} else if (y <= 2.8e+16) {
		tmp = x_m / ((z - t) * z);
	} else {
		tmp = (x_m / t) / y;
	}
	return x_s * tmp;
}
x\_m = math.fabs(x)
x\_s = math.copysign(1.0, x)
[x_m, y, z, t] = sort([x_m, y, z, t])
def code(x_s, x_m, y, z, t):
	tmp = 0
	if y <= -4.6e-95:
		tmp = x_m / ((t - z) * y)
	elif y <= 2.8e+16:
		tmp = x_m / ((z - t) * z)
	else:
		tmp = (x_m / t) / y
	return x_s * tmp
x\_m = abs(x)
x\_s = copysign(1.0, x)
x_m, y, z, t = sort([x_m, y, z, t])
function code(x_s, x_m, y, z, t)
	tmp = 0.0
	if (y <= -4.6e-95)
		tmp = Float64(x_m / Float64(Float64(t - z) * y));
	elseif (y <= 2.8e+16)
		tmp = Float64(x_m / Float64(Float64(z - t) * z));
	else
		tmp = Float64(Float64(x_m / t) / y);
	end
	return Float64(x_s * tmp)
end
x\_m = abs(x);
x\_s = sign(x) * abs(1.0);
x_m, y, z, t = num2cell(sort([x_m, y, z, t])){:}
function tmp_2 = code(x_s, x_m, y, z, t)
	tmp = 0.0;
	if (y <= -4.6e-95)
		tmp = x_m / ((t - z) * y);
	elseif (y <= 2.8e+16)
		tmp = x_m / ((z - t) * z);
	else
		tmp = (x_m / t) / 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]
NOTE: x_m, y, z, and t should be sorted in increasing order before calling this function.
code[x$95$s_, x$95$m_, y_, z_, t_] := N[(x$95$s * If[LessEqual[y, -4.6e-95], N[(x$95$m / N[(N[(t - z), $MachinePrecision] * y), $MachinePrecision]), $MachinePrecision], If[LessEqual[y, 2.8e+16], N[(x$95$m / N[(N[(z - t), $MachinePrecision] * z), $MachinePrecision]), $MachinePrecision], N[(N[(x$95$m / t), $MachinePrecision] / y), $MachinePrecision]]]), $MachinePrecision]
\begin{array}{l}
x\_m = \left|x\right|
\\
x\_s = \mathsf{copysign}\left(1, x\right)
\\
[x_m, y, z, t] = \mathsf{sort}([x_m, y, z, t])\\
\\
x\_s \cdot \begin{array}{l}
\mathbf{if}\;y \leq -4.6 \cdot 10^{-95}:\\
\;\;\;\;\frac{x\_m}{\left(t - z\right) \cdot y}\\

\mathbf{elif}\;y \leq 2.8 \cdot 10^{+16}:\\
\;\;\;\;\frac{x\_m}{\left(z - t\right) \cdot z}\\

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


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if y < -4.59999999999999998e-95

    1. Initial program 88.0%

      \[\frac{x}{\left(y - z\right) \cdot \left(t - z\right)} \]
    2. Add Preprocessing
    3. Taylor expanded in y around inf

      \[\leadsto \frac{x}{\color{blue}{y \cdot \left(t - z\right)}} \]
    4. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \frac{x}{\color{blue}{\left(t - z\right) \cdot y}} \]
      2. lower-*.f64N/A

        \[\leadsto \frac{x}{\color{blue}{\left(t - z\right) \cdot y}} \]
      3. lower--.f6481.4

        \[\leadsto \frac{x}{\color{blue}{\left(t - z\right)} \cdot y} \]
    5. Applied rewrites81.4%

      \[\leadsto \frac{x}{\color{blue}{\left(t - z\right) \cdot y}} \]

    if -4.59999999999999998e-95 < y < 2.8e16

    1. Initial program 92.1%

      \[\frac{x}{\left(y - z\right) \cdot \left(t - z\right)} \]
    2. Add Preprocessing
    3. Taylor expanded in y around 0

      \[\leadsto \frac{x}{\color{blue}{-1 \cdot \left(z \cdot \left(t - z\right)\right)}} \]
    4. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \frac{x}{-1 \cdot \color{blue}{\left(\left(t - z\right) \cdot z\right)}} \]
      2. associate-*r*N/A

        \[\leadsto \frac{x}{\color{blue}{\left(-1 \cdot \left(t - z\right)\right) \cdot z}} \]
      3. lower-*.f64N/A

        \[\leadsto \frac{x}{\color{blue}{\left(-1 \cdot \left(t - z\right)\right) \cdot z}} \]
      4. mul-1-negN/A

        \[\leadsto \frac{x}{\color{blue}{\left(\mathsf{neg}\left(\left(t - z\right)\right)\right)} \cdot z} \]
      5. sub-negN/A

        \[\leadsto \frac{x}{\left(\mathsf{neg}\left(\color{blue}{\left(t + \left(\mathsf{neg}\left(z\right)\right)\right)}\right)\right) \cdot z} \]
      6. +-commutativeN/A

        \[\leadsto \frac{x}{\left(\mathsf{neg}\left(\color{blue}{\left(\left(\mathsf{neg}\left(z\right)\right) + t\right)}\right)\right) \cdot z} \]
      7. distribute-neg-inN/A

        \[\leadsto \frac{x}{\color{blue}{\left(\left(\mathsf{neg}\left(\left(\mathsf{neg}\left(z\right)\right)\right)\right) + \left(\mathsf{neg}\left(t\right)\right)\right)} \cdot z} \]
      8. remove-double-negN/A

        \[\leadsto \frac{x}{\left(\color{blue}{z} + \left(\mathsf{neg}\left(t\right)\right)\right) \cdot z} \]
      9. unsub-negN/A

        \[\leadsto \frac{x}{\color{blue}{\left(z - t\right)} \cdot z} \]
      10. lower--.f6475.5

        \[\leadsto \frac{x}{\color{blue}{\left(z - t\right)} \cdot z} \]
    5. Applied rewrites75.5%

      \[\leadsto \frac{x}{\color{blue}{\left(z - t\right) \cdot z}} \]

    if 2.8e16 < y

    1. Initial program 90.0%

      \[\frac{x}{\left(y - z\right) \cdot \left(t - z\right)} \]
    2. Add Preprocessing
    3. Step-by-step derivation
      1. lift-/.f64N/A

        \[\leadsto \color{blue}{\frac{x}{\left(y - z\right) \cdot \left(t - z\right)}} \]
      2. lift-*.f64N/A

        \[\leadsto \frac{x}{\color{blue}{\left(y - z\right) \cdot \left(t - z\right)}} \]
      3. associate-/l/N/A

        \[\leadsto \color{blue}{\frac{\frac{x}{t - z}}{y - z}} \]
      4. lower-/.f64N/A

        \[\leadsto \color{blue}{\frac{\frac{x}{t - z}}{y - z}} \]
      5. lower-/.f6495.5

        \[\leadsto \frac{\color{blue}{\frac{x}{t - z}}}{y - z} \]
    4. Applied rewrites95.5%

      \[\leadsto \color{blue}{\frac{\frac{x}{t - z}}{y - z}} \]
    5. Taylor expanded in z around 0

      \[\leadsto \color{blue}{\frac{x}{t \cdot y}} \]
    6. Step-by-step derivation
      1. associate-/r*N/A

        \[\leadsto \color{blue}{\frac{\frac{x}{t}}{y}} \]
      2. lower-/.f64N/A

        \[\leadsto \color{blue}{\frac{\frac{x}{t}}{y}} \]
      3. lower-/.f6461.3

        \[\leadsto \frac{\color{blue}{\frac{x}{t}}}{y} \]
    7. Applied rewrites61.3%

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

Alternative 5: 75.8% accurate, 0.7× speedup?

\[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ [x_m, y, z, t] = \mathsf{sort}([x_m, y, z, t])\\ \\ x\_s \cdot \begin{array}{l} \mathbf{if}\;y \leq -4.6 \cdot 10^{-95}:\\ \;\;\;\;\frac{x\_m}{\left(t - z\right) \cdot y}\\ \mathbf{elif}\;y \leq 120000000000:\\ \;\;\;\;\frac{x\_m}{\left(z - t\right) \cdot z}\\ \mathbf{else}:\\ \;\;\;\;\frac{x\_m}{t \cdot \left(y - z\right)}\\ \end{array} \end{array} \]
x\_m = (fabs.f64 x)
x\_s = (copysign.f64 #s(literal 1 binary64) x)
NOTE: x_m, y, z, and t should be sorted in increasing order before calling this function.
(FPCore (x_s x_m y z t)
 :precision binary64
 (*
  x_s
  (if (<= y -4.6e-95)
    (/ x_m (* (- t z) y))
    (if (<= y 120000000000.0) (/ x_m (* (- z t) z)) (/ x_m (* t (- y z)))))))
x\_m = fabs(x);
x\_s = copysign(1.0, x);
assert(x_m < y && y < z && z < t);
double code(double x_s, double x_m, double y, double z, double t) {
	double tmp;
	if (y <= -4.6e-95) {
		tmp = x_m / ((t - z) * y);
	} else if (y <= 120000000000.0) {
		tmp = x_m / ((z - t) * z);
	} else {
		tmp = x_m / (t * (y - z));
	}
	return x_s * tmp;
}
x\_m = abs(x)
x\_s = copysign(1.0d0, x)
NOTE: x_m, y, z, and t should be sorted in increasing order before calling this function.
real(8) function code(x_s, x_m, y, z, t)
    real(8), intent (in) :: x_s
    real(8), intent (in) :: x_m
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8), intent (in) :: t
    real(8) :: tmp
    if (y <= (-4.6d-95)) then
        tmp = x_m / ((t - z) * y)
    else if (y <= 120000000000.0d0) then
        tmp = x_m / ((z - t) * z)
    else
        tmp = x_m / (t * (y - z))
    end if
    code = x_s * tmp
end function
x\_m = Math.abs(x);
x\_s = Math.copySign(1.0, x);
assert x_m < y && y < z && z < t;
public static double code(double x_s, double x_m, double y, double z, double t) {
	double tmp;
	if (y <= -4.6e-95) {
		tmp = x_m / ((t - z) * y);
	} else if (y <= 120000000000.0) {
		tmp = x_m / ((z - t) * z);
	} else {
		tmp = x_m / (t * (y - z));
	}
	return x_s * tmp;
}
x\_m = math.fabs(x)
x\_s = math.copysign(1.0, x)
[x_m, y, z, t] = sort([x_m, y, z, t])
def code(x_s, x_m, y, z, t):
	tmp = 0
	if y <= -4.6e-95:
		tmp = x_m / ((t - z) * y)
	elif y <= 120000000000.0:
		tmp = x_m / ((z - t) * z)
	else:
		tmp = x_m / (t * (y - z))
	return x_s * tmp
x\_m = abs(x)
x\_s = copysign(1.0, x)
x_m, y, z, t = sort([x_m, y, z, t])
function code(x_s, x_m, y, z, t)
	tmp = 0.0
	if (y <= -4.6e-95)
		tmp = Float64(x_m / Float64(Float64(t - z) * y));
	elseif (y <= 120000000000.0)
		tmp = Float64(x_m / Float64(Float64(z - t) * z));
	else
		tmp = Float64(x_m / Float64(t * Float64(y - z)));
	end
	return Float64(x_s * tmp)
end
x\_m = abs(x);
x\_s = sign(x) * abs(1.0);
x_m, y, z, t = num2cell(sort([x_m, y, z, t])){:}
function tmp_2 = code(x_s, x_m, y, z, t)
	tmp = 0.0;
	if (y <= -4.6e-95)
		tmp = x_m / ((t - z) * y);
	elseif (y <= 120000000000.0)
		tmp = x_m / ((z - t) * z);
	else
		tmp = x_m / (t * (y - 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]
NOTE: x_m, y, z, and t should be sorted in increasing order before calling this function.
code[x$95$s_, x$95$m_, y_, z_, t_] := N[(x$95$s * If[LessEqual[y, -4.6e-95], N[(x$95$m / N[(N[(t - z), $MachinePrecision] * y), $MachinePrecision]), $MachinePrecision], If[LessEqual[y, 120000000000.0], N[(x$95$m / N[(N[(z - t), $MachinePrecision] * z), $MachinePrecision]), $MachinePrecision], N[(x$95$m / N[(t * N[(y - z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]), $MachinePrecision]
\begin{array}{l}
x\_m = \left|x\right|
\\
x\_s = \mathsf{copysign}\left(1, x\right)
\\
[x_m, y, z, t] = \mathsf{sort}([x_m, y, z, t])\\
\\
x\_s \cdot \begin{array}{l}
\mathbf{if}\;y \leq -4.6 \cdot 10^{-95}:\\
\;\;\;\;\frac{x\_m}{\left(t - z\right) \cdot y}\\

\mathbf{elif}\;y \leq 120000000000:\\
\;\;\;\;\frac{x\_m}{\left(z - t\right) \cdot z}\\

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


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if y < -4.59999999999999998e-95

    1. Initial program 88.0%

      \[\frac{x}{\left(y - z\right) \cdot \left(t - z\right)} \]
    2. Add Preprocessing
    3. Taylor expanded in y around inf

      \[\leadsto \frac{x}{\color{blue}{y \cdot \left(t - z\right)}} \]
    4. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \frac{x}{\color{blue}{\left(t - z\right) \cdot y}} \]
      2. lower-*.f64N/A

        \[\leadsto \frac{x}{\color{blue}{\left(t - z\right) \cdot y}} \]
      3. lower--.f6481.4

        \[\leadsto \frac{x}{\color{blue}{\left(t - z\right)} \cdot y} \]
    5. Applied rewrites81.4%

      \[\leadsto \frac{x}{\color{blue}{\left(t - z\right) \cdot y}} \]

    if -4.59999999999999998e-95 < y < 1.2e11

    1. Initial program 92.1%

      \[\frac{x}{\left(y - z\right) \cdot \left(t - z\right)} \]
    2. Add Preprocessing
    3. Taylor expanded in y around 0

      \[\leadsto \frac{x}{\color{blue}{-1 \cdot \left(z \cdot \left(t - z\right)\right)}} \]
    4. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \frac{x}{-1 \cdot \color{blue}{\left(\left(t - z\right) \cdot z\right)}} \]
      2. associate-*r*N/A

        \[\leadsto \frac{x}{\color{blue}{\left(-1 \cdot \left(t - z\right)\right) \cdot z}} \]
      3. lower-*.f64N/A

        \[\leadsto \frac{x}{\color{blue}{\left(-1 \cdot \left(t - z\right)\right) \cdot z}} \]
      4. mul-1-negN/A

        \[\leadsto \frac{x}{\color{blue}{\left(\mathsf{neg}\left(\left(t - z\right)\right)\right)} \cdot z} \]
      5. sub-negN/A

        \[\leadsto \frac{x}{\left(\mathsf{neg}\left(\color{blue}{\left(t + \left(\mathsf{neg}\left(z\right)\right)\right)}\right)\right) \cdot z} \]
      6. +-commutativeN/A

        \[\leadsto \frac{x}{\left(\mathsf{neg}\left(\color{blue}{\left(\left(\mathsf{neg}\left(z\right)\right) + t\right)}\right)\right) \cdot z} \]
      7. distribute-neg-inN/A

        \[\leadsto \frac{x}{\color{blue}{\left(\left(\mathsf{neg}\left(\left(\mathsf{neg}\left(z\right)\right)\right)\right) + \left(\mathsf{neg}\left(t\right)\right)\right)} \cdot z} \]
      8. remove-double-negN/A

        \[\leadsto \frac{x}{\left(\color{blue}{z} + \left(\mathsf{neg}\left(t\right)\right)\right) \cdot z} \]
      9. unsub-negN/A

        \[\leadsto \frac{x}{\color{blue}{\left(z - t\right)} \cdot z} \]
      10. lower--.f6475.5

        \[\leadsto \frac{x}{\color{blue}{\left(z - t\right)} \cdot z} \]
    5. Applied rewrites75.5%

      \[\leadsto \frac{x}{\color{blue}{\left(z - t\right) \cdot z}} \]

    if 1.2e11 < y

    1. Initial program 90.0%

      \[\frac{x}{\left(y - z\right) \cdot \left(t - z\right)} \]
    2. Add Preprocessing
    3. Taylor expanded in t around inf

      \[\leadsto \frac{x}{\color{blue}{t \cdot \left(y - z\right)}} \]
    4. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \frac{x}{\color{blue}{t \cdot \left(y - z\right)}} \]
      2. lower--.f6461.6

        \[\leadsto \frac{x}{t \cdot \color{blue}{\left(y - z\right)}} \]
    5. Applied rewrites61.6%

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

Alternative 6: 71.4% accurate, 0.7× speedup?

\[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ [x_m, y, z, t] = \mathsf{sort}([x_m, y, z, t])\\ \\ x\_s \cdot \begin{array}{l} \mathbf{if}\;y \leq -9.5 \cdot 10^{-96}:\\ \;\;\;\;\frac{x\_m}{\left(t - z\right) \cdot y}\\ \mathbf{elif}\;y \leq -9.2 \cdot 10^{-194}:\\ \;\;\;\;\frac{x\_m}{z \cdot z}\\ \mathbf{else}:\\ \;\;\;\;\frac{x\_m}{t \cdot \left(y - z\right)}\\ \end{array} \end{array} \]
x\_m = (fabs.f64 x)
x\_s = (copysign.f64 #s(literal 1 binary64) x)
NOTE: x_m, y, z, and t should be sorted in increasing order before calling this function.
(FPCore (x_s x_m y z t)
 :precision binary64
 (*
  x_s
  (if (<= y -9.5e-96)
    (/ x_m (* (- t z) y))
    (if (<= y -9.2e-194) (/ x_m (* z z)) (/ x_m (* t (- y z)))))))
x\_m = fabs(x);
x\_s = copysign(1.0, x);
assert(x_m < y && y < z && z < t);
double code(double x_s, double x_m, double y, double z, double t) {
	double tmp;
	if (y <= -9.5e-96) {
		tmp = x_m / ((t - z) * y);
	} else if (y <= -9.2e-194) {
		tmp = x_m / (z * z);
	} else {
		tmp = x_m / (t * (y - z));
	}
	return x_s * tmp;
}
x\_m = abs(x)
x\_s = copysign(1.0d0, x)
NOTE: x_m, y, z, and t should be sorted in increasing order before calling this function.
real(8) function code(x_s, x_m, y, z, t)
    real(8), intent (in) :: x_s
    real(8), intent (in) :: x_m
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8), intent (in) :: t
    real(8) :: tmp
    if (y <= (-9.5d-96)) then
        tmp = x_m / ((t - z) * y)
    else if (y <= (-9.2d-194)) then
        tmp = x_m / (z * z)
    else
        tmp = x_m / (t * (y - z))
    end if
    code = x_s * tmp
end function
x\_m = Math.abs(x);
x\_s = Math.copySign(1.0, x);
assert x_m < y && y < z && z < t;
public static double code(double x_s, double x_m, double y, double z, double t) {
	double tmp;
	if (y <= -9.5e-96) {
		tmp = x_m / ((t - z) * y);
	} else if (y <= -9.2e-194) {
		tmp = x_m / (z * z);
	} else {
		tmp = x_m / (t * (y - z));
	}
	return x_s * tmp;
}
x\_m = math.fabs(x)
x\_s = math.copysign(1.0, x)
[x_m, y, z, t] = sort([x_m, y, z, t])
def code(x_s, x_m, y, z, t):
	tmp = 0
	if y <= -9.5e-96:
		tmp = x_m / ((t - z) * y)
	elif y <= -9.2e-194:
		tmp = x_m / (z * z)
	else:
		tmp = x_m / (t * (y - z))
	return x_s * tmp
x\_m = abs(x)
x\_s = copysign(1.0, x)
x_m, y, z, t = sort([x_m, y, z, t])
function code(x_s, x_m, y, z, t)
	tmp = 0.0
	if (y <= -9.5e-96)
		tmp = Float64(x_m / Float64(Float64(t - z) * y));
	elseif (y <= -9.2e-194)
		tmp = Float64(x_m / Float64(z * z));
	else
		tmp = Float64(x_m / Float64(t * Float64(y - z)));
	end
	return Float64(x_s * tmp)
end
x\_m = abs(x);
x\_s = sign(x) * abs(1.0);
x_m, y, z, t = num2cell(sort([x_m, y, z, t])){:}
function tmp_2 = code(x_s, x_m, y, z, t)
	tmp = 0.0;
	if (y <= -9.5e-96)
		tmp = x_m / ((t - z) * y);
	elseif (y <= -9.2e-194)
		tmp = x_m / (z * z);
	else
		tmp = x_m / (t * (y - 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]
NOTE: x_m, y, z, and t should be sorted in increasing order before calling this function.
code[x$95$s_, x$95$m_, y_, z_, t_] := N[(x$95$s * If[LessEqual[y, -9.5e-96], N[(x$95$m / N[(N[(t - z), $MachinePrecision] * y), $MachinePrecision]), $MachinePrecision], If[LessEqual[y, -9.2e-194], N[(x$95$m / N[(z * z), $MachinePrecision]), $MachinePrecision], N[(x$95$m / N[(t * N[(y - z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]), $MachinePrecision]
\begin{array}{l}
x\_m = \left|x\right|
\\
x\_s = \mathsf{copysign}\left(1, x\right)
\\
[x_m, y, z, t] = \mathsf{sort}([x_m, y, z, t])\\
\\
x\_s \cdot \begin{array}{l}
\mathbf{if}\;y \leq -9.5 \cdot 10^{-96}:\\
\;\;\;\;\frac{x\_m}{\left(t - z\right) \cdot y}\\

\mathbf{elif}\;y \leq -9.2 \cdot 10^{-194}:\\
\;\;\;\;\frac{x\_m}{z \cdot z}\\

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


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if y < -9.4999999999999993e-96

    1. Initial program 88.0%

      \[\frac{x}{\left(y - z\right) \cdot \left(t - z\right)} \]
    2. Add Preprocessing
    3. Taylor expanded in y around inf

      \[\leadsto \frac{x}{\color{blue}{y \cdot \left(t - z\right)}} \]
    4. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \frac{x}{\color{blue}{\left(t - z\right) \cdot y}} \]
      2. lower-*.f64N/A

        \[\leadsto \frac{x}{\color{blue}{\left(t - z\right) \cdot y}} \]
      3. lower--.f6481.4

        \[\leadsto \frac{x}{\color{blue}{\left(t - z\right)} \cdot y} \]
    5. Applied rewrites81.4%

      \[\leadsto \frac{x}{\color{blue}{\left(t - z\right) \cdot y}} \]

    if -9.4999999999999993e-96 < y < -9.2000000000000001e-194

    1. Initial program 94.0%

      \[\frac{x}{\left(y - z\right) \cdot \left(t - z\right)} \]
    2. Add Preprocessing
    3. Taylor expanded in z around inf

      \[\leadsto \frac{x}{\color{blue}{{z}^{2}}} \]
    4. Step-by-step derivation
      1. unpow2N/A

        \[\leadsto \frac{x}{\color{blue}{z \cdot z}} \]
      2. lower-*.f6452.0

        \[\leadsto \frac{x}{\color{blue}{z \cdot z}} \]
    5. Applied rewrites52.0%

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

    if -9.2000000000000001e-194 < y

    1. Initial program 90.9%

      \[\frac{x}{\left(y - z\right) \cdot \left(t - z\right)} \]
    2. Add Preprocessing
    3. Taylor expanded in t around inf

      \[\leadsto \frac{x}{\color{blue}{t \cdot \left(y - z\right)}} \]
    4. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \frac{x}{\color{blue}{t \cdot \left(y - z\right)}} \]
      2. lower--.f6456.5

        \[\leadsto \frac{x}{t \cdot \color{blue}{\left(y - z\right)}} \]
    5. Applied rewrites56.5%

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

Alternative 7: 69.9% accurate, 0.7× speedup?

\[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ [x_m, y, z, t] = \mathsf{sort}([x_m, y, z, t])\\ \\ \begin{array}{l} t_1 := \frac{x\_m}{z \cdot z}\\ x\_s \cdot \begin{array}{l} \mathbf{if}\;z \leq -3.2 \cdot 10^{+54}:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;z \leq 5.4 \cdot 10^{+59}:\\ \;\;\;\;\frac{x\_m}{t \cdot \left(y - z\right)}\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \end{array} \end{array} \]
x\_m = (fabs.f64 x)
x\_s = (copysign.f64 #s(literal 1 binary64) x)
NOTE: x_m, y, z, and t should be sorted in increasing order before calling this function.
(FPCore (x_s x_m y z t)
 :precision binary64
 (let* ((t_1 (/ x_m (* z z))))
   (*
    x_s
    (if (<= z -3.2e+54) t_1 (if (<= z 5.4e+59) (/ x_m (* t (- y z))) t_1)))))
x\_m = fabs(x);
x\_s = copysign(1.0, x);
assert(x_m < y && y < z && z < t);
double code(double x_s, double x_m, double y, double z, double t) {
	double t_1 = x_m / (z * z);
	double tmp;
	if (z <= -3.2e+54) {
		tmp = t_1;
	} else if (z <= 5.4e+59) {
		tmp = x_m / (t * (y - z));
	} else {
		tmp = t_1;
	}
	return x_s * tmp;
}
x\_m = abs(x)
x\_s = copysign(1.0d0, x)
NOTE: x_m, y, z, and t should be sorted in increasing order before calling this function.
real(8) function code(x_s, x_m, y, z, t)
    real(8), intent (in) :: x_s
    real(8), intent (in) :: x_m
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8), intent (in) :: t
    real(8) :: t_1
    real(8) :: tmp
    t_1 = x_m / (z * z)
    if (z <= (-3.2d+54)) then
        tmp = t_1
    else if (z <= 5.4d+59) then
        tmp = x_m / (t * (y - z))
    else
        tmp = t_1
    end if
    code = x_s * tmp
end function
x\_m = Math.abs(x);
x\_s = Math.copySign(1.0, x);
assert x_m < y && y < z && z < t;
public static double code(double x_s, double x_m, double y, double z, double t) {
	double t_1 = x_m / (z * z);
	double tmp;
	if (z <= -3.2e+54) {
		tmp = t_1;
	} else if (z <= 5.4e+59) {
		tmp = x_m / (t * (y - z));
	} else {
		tmp = t_1;
	}
	return x_s * tmp;
}
x\_m = math.fabs(x)
x\_s = math.copysign(1.0, x)
[x_m, y, z, t] = sort([x_m, y, z, t])
def code(x_s, x_m, y, z, t):
	t_1 = x_m / (z * z)
	tmp = 0
	if z <= -3.2e+54:
		tmp = t_1
	elif z <= 5.4e+59:
		tmp = x_m / (t * (y - z))
	else:
		tmp = t_1
	return x_s * tmp
x\_m = abs(x)
x\_s = copysign(1.0, x)
x_m, y, z, t = sort([x_m, y, z, t])
function code(x_s, x_m, y, z, t)
	t_1 = Float64(x_m / Float64(z * z))
	tmp = 0.0
	if (z <= -3.2e+54)
		tmp = t_1;
	elseif (z <= 5.4e+59)
		tmp = Float64(x_m / Float64(t * Float64(y - z)));
	else
		tmp = t_1;
	end
	return Float64(x_s * tmp)
end
x\_m = abs(x);
x\_s = sign(x) * abs(1.0);
x_m, y, z, t = num2cell(sort([x_m, y, z, t])){:}
function tmp_2 = code(x_s, x_m, y, z, t)
	t_1 = x_m / (z * z);
	tmp = 0.0;
	if (z <= -3.2e+54)
		tmp = t_1;
	elseif (z <= 5.4e+59)
		tmp = x_m / (t * (y - z));
	else
		tmp = t_1;
	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]
NOTE: x_m, y, z, and t should be sorted in increasing order before calling this function.
code[x$95$s_, x$95$m_, y_, z_, t_] := Block[{t$95$1 = N[(x$95$m / N[(z * z), $MachinePrecision]), $MachinePrecision]}, N[(x$95$s * If[LessEqual[z, -3.2e+54], t$95$1, If[LessEqual[z, 5.4e+59], N[(x$95$m / N[(t * N[(y - z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], t$95$1]]), $MachinePrecision]]
\begin{array}{l}
x\_m = \left|x\right|
\\
x\_s = \mathsf{copysign}\left(1, x\right)
\\
[x_m, y, z, t] = \mathsf{sort}([x_m, y, z, t])\\
\\
\begin{array}{l}
t_1 := \frac{x\_m}{z \cdot z}\\
x\_s \cdot \begin{array}{l}
\mathbf{if}\;z \leq -3.2 \cdot 10^{+54}:\\
\;\;\;\;t\_1\\

\mathbf{elif}\;z \leq 5.4 \cdot 10^{+59}:\\
\;\;\;\;\frac{x\_m}{t \cdot \left(y - z\right)}\\

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


\end{array}
\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if z < -3.2e54 or 5.4000000000000002e59 < z

    1. Initial program 82.4%

      \[\frac{x}{\left(y - z\right) \cdot \left(t - z\right)} \]
    2. Add Preprocessing
    3. Taylor expanded in z around inf

      \[\leadsto \frac{x}{\color{blue}{{z}^{2}}} \]
    4. Step-by-step derivation
      1. unpow2N/A

        \[\leadsto \frac{x}{\color{blue}{z \cdot z}} \]
      2. lower-*.f6474.9

        \[\leadsto \frac{x}{\color{blue}{z \cdot z}} \]
    5. Applied rewrites74.9%

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

    if -3.2e54 < z < 5.4000000000000002e59

    1. Initial program 96.1%

      \[\frac{x}{\left(y - z\right) \cdot \left(t - z\right)} \]
    2. Add Preprocessing
    3. Taylor expanded in t around inf

      \[\leadsto \frac{x}{\color{blue}{t \cdot \left(y - z\right)}} \]
    4. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \frac{x}{\color{blue}{t \cdot \left(y - z\right)}} \]
      2. lower--.f6471.6

        \[\leadsto \frac{x}{t \cdot \color{blue}{\left(y - z\right)}} \]
    5. Applied rewrites71.6%

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

Alternative 8: 60.8% accurate, 0.8× speedup?

\[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ [x_m, y, z, t] = \mathsf{sort}([x_m, y, z, t])\\ \\ \begin{array}{l} t_1 := \frac{x\_m}{z \cdot z}\\ x\_s \cdot \begin{array}{l} \mathbf{if}\;z \leq -1.12 \cdot 10^{+52}:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;z \leq 6.2 \cdot 10^{+55}:\\ \;\;\;\;\frac{x\_m}{t \cdot y}\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \end{array} \end{array} \]
x\_m = (fabs.f64 x)
x\_s = (copysign.f64 #s(literal 1 binary64) x)
NOTE: x_m, y, z, and t should be sorted in increasing order before calling this function.
(FPCore (x_s x_m y z t)
 :precision binary64
 (let* ((t_1 (/ x_m (* z z))))
   (* x_s (if (<= z -1.12e+52) t_1 (if (<= z 6.2e+55) (/ x_m (* t y)) t_1)))))
x\_m = fabs(x);
x\_s = copysign(1.0, x);
assert(x_m < y && y < z && z < t);
double code(double x_s, double x_m, double y, double z, double t) {
	double t_1 = x_m / (z * z);
	double tmp;
	if (z <= -1.12e+52) {
		tmp = t_1;
	} else if (z <= 6.2e+55) {
		tmp = x_m / (t * y);
	} else {
		tmp = t_1;
	}
	return x_s * tmp;
}
x\_m = abs(x)
x\_s = copysign(1.0d0, x)
NOTE: x_m, y, z, and t should be sorted in increasing order before calling this function.
real(8) function code(x_s, x_m, y, z, t)
    real(8), intent (in) :: x_s
    real(8), intent (in) :: x_m
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8), intent (in) :: t
    real(8) :: t_1
    real(8) :: tmp
    t_1 = x_m / (z * z)
    if (z <= (-1.12d+52)) then
        tmp = t_1
    else if (z <= 6.2d+55) then
        tmp = x_m / (t * y)
    else
        tmp = t_1
    end if
    code = x_s * tmp
end function
x\_m = Math.abs(x);
x\_s = Math.copySign(1.0, x);
assert x_m < y && y < z && z < t;
public static double code(double x_s, double x_m, double y, double z, double t) {
	double t_1 = x_m / (z * z);
	double tmp;
	if (z <= -1.12e+52) {
		tmp = t_1;
	} else if (z <= 6.2e+55) {
		tmp = x_m / (t * y);
	} else {
		tmp = t_1;
	}
	return x_s * tmp;
}
x\_m = math.fabs(x)
x\_s = math.copysign(1.0, x)
[x_m, y, z, t] = sort([x_m, y, z, t])
def code(x_s, x_m, y, z, t):
	t_1 = x_m / (z * z)
	tmp = 0
	if z <= -1.12e+52:
		tmp = t_1
	elif z <= 6.2e+55:
		tmp = x_m / (t * y)
	else:
		tmp = t_1
	return x_s * tmp
x\_m = abs(x)
x\_s = copysign(1.0, x)
x_m, y, z, t = sort([x_m, y, z, t])
function code(x_s, x_m, y, z, t)
	t_1 = Float64(x_m / Float64(z * z))
	tmp = 0.0
	if (z <= -1.12e+52)
		tmp = t_1;
	elseif (z <= 6.2e+55)
		tmp = Float64(x_m / Float64(t * y));
	else
		tmp = t_1;
	end
	return Float64(x_s * tmp)
end
x\_m = abs(x);
x\_s = sign(x) * abs(1.0);
x_m, y, z, t = num2cell(sort([x_m, y, z, t])){:}
function tmp_2 = code(x_s, x_m, y, z, t)
	t_1 = x_m / (z * z);
	tmp = 0.0;
	if (z <= -1.12e+52)
		tmp = t_1;
	elseif (z <= 6.2e+55)
		tmp = x_m / (t * y);
	else
		tmp = t_1;
	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]
NOTE: x_m, y, z, and t should be sorted in increasing order before calling this function.
code[x$95$s_, x$95$m_, y_, z_, t_] := Block[{t$95$1 = N[(x$95$m / N[(z * z), $MachinePrecision]), $MachinePrecision]}, N[(x$95$s * If[LessEqual[z, -1.12e+52], t$95$1, If[LessEqual[z, 6.2e+55], N[(x$95$m / N[(t * y), $MachinePrecision]), $MachinePrecision], t$95$1]]), $MachinePrecision]]
\begin{array}{l}
x\_m = \left|x\right|
\\
x\_s = \mathsf{copysign}\left(1, x\right)
\\
[x_m, y, z, t] = \mathsf{sort}([x_m, y, z, t])\\
\\
\begin{array}{l}
t_1 := \frac{x\_m}{z \cdot z}\\
x\_s \cdot \begin{array}{l}
\mathbf{if}\;z \leq -1.12 \cdot 10^{+52}:\\
\;\;\;\;t\_1\\

\mathbf{elif}\;z \leq 6.2 \cdot 10^{+55}:\\
\;\;\;\;\frac{x\_m}{t \cdot y}\\

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


\end{array}
\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if z < -1.12000000000000002e52 or 6.19999999999999987e55 < z

    1. Initial program 82.7%

      \[\frac{x}{\left(y - z\right) \cdot \left(t - z\right)} \]
    2. Add Preprocessing
    3. Taylor expanded in z around inf

      \[\leadsto \frac{x}{\color{blue}{{z}^{2}}} \]
    4. Step-by-step derivation
      1. unpow2N/A

        \[\leadsto \frac{x}{\color{blue}{z \cdot z}} \]
      2. lower-*.f6473.6

        \[\leadsto \frac{x}{\color{blue}{z \cdot z}} \]
    5. Applied rewrites73.6%

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

    if -1.12000000000000002e52 < z < 6.19999999999999987e55

    1. Initial program 96.0%

      \[\frac{x}{\left(y - z\right) \cdot \left(t - z\right)} \]
    2. Add Preprocessing
    3. Taylor expanded in z around 0

      \[\leadsto \frac{x}{\color{blue}{t \cdot y}} \]
    4. Step-by-step derivation
      1. lower-*.f6456.1

        \[\leadsto \frac{x}{\color{blue}{t \cdot y}} \]
    5. Applied rewrites56.1%

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

Alternative 9: 90.7% accurate, 0.8× speedup?

\[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ [x_m, y, z, t] = \mathsf{sort}([x_m, y, z, t])\\ \\ x\_s \cdot \begin{array}{l} \mathbf{if}\;z \leq -6.5 \cdot 10^{+150}:\\ \;\;\;\;\frac{\frac{x\_m}{z}}{z}\\ \mathbf{else}:\\ \;\;\;\;\frac{x\_m}{\left(t - z\right) \cdot \left(y - z\right)}\\ \end{array} \end{array} \]
x\_m = (fabs.f64 x)
x\_s = (copysign.f64 #s(literal 1 binary64) x)
NOTE: x_m, y, z, and t should be sorted in increasing order before calling this function.
(FPCore (x_s x_m y z t)
 :precision binary64
 (* x_s (if (<= z -6.5e+150) (/ (/ x_m z) z) (/ x_m (* (- t z) (- y z))))))
x\_m = fabs(x);
x\_s = copysign(1.0, x);
assert(x_m < y && y < z && z < t);
double code(double x_s, double x_m, double y, double z, double t) {
	double tmp;
	if (z <= -6.5e+150) {
		tmp = (x_m / z) / z;
	} else {
		tmp = x_m / ((t - z) * (y - z));
	}
	return x_s * tmp;
}
x\_m = abs(x)
x\_s = copysign(1.0d0, x)
NOTE: x_m, y, z, and t should be sorted in increasing order before calling this function.
real(8) function code(x_s, x_m, y, z, t)
    real(8), intent (in) :: x_s
    real(8), intent (in) :: x_m
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8), intent (in) :: t
    real(8) :: tmp
    if (z <= (-6.5d+150)) then
        tmp = (x_m / z) / z
    else
        tmp = x_m / ((t - z) * (y - z))
    end if
    code = x_s * tmp
end function
x\_m = Math.abs(x);
x\_s = Math.copySign(1.0, x);
assert x_m < y && y < z && z < t;
public static double code(double x_s, double x_m, double y, double z, double t) {
	double tmp;
	if (z <= -6.5e+150) {
		tmp = (x_m / z) / z;
	} else {
		tmp = x_m / ((t - z) * (y - z));
	}
	return x_s * tmp;
}
x\_m = math.fabs(x)
x\_s = math.copysign(1.0, x)
[x_m, y, z, t] = sort([x_m, y, z, t])
def code(x_s, x_m, y, z, t):
	tmp = 0
	if z <= -6.5e+150:
		tmp = (x_m / z) / z
	else:
		tmp = x_m / ((t - z) * (y - z))
	return x_s * tmp
x\_m = abs(x)
x\_s = copysign(1.0, x)
x_m, y, z, t = sort([x_m, y, z, t])
function code(x_s, x_m, y, z, t)
	tmp = 0.0
	if (z <= -6.5e+150)
		tmp = Float64(Float64(x_m / z) / z);
	else
		tmp = Float64(x_m / Float64(Float64(t - z) * Float64(y - z)));
	end
	return Float64(x_s * tmp)
end
x\_m = abs(x);
x\_s = sign(x) * abs(1.0);
x_m, y, z, t = num2cell(sort([x_m, y, z, t])){:}
function tmp_2 = code(x_s, x_m, y, z, t)
	tmp = 0.0;
	if (z <= -6.5e+150)
		tmp = (x_m / z) / z;
	else
		tmp = x_m / ((t - z) * (y - 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]
NOTE: x_m, y, z, and t should be sorted in increasing order before calling this function.
code[x$95$s_, x$95$m_, y_, z_, t_] := N[(x$95$s * If[LessEqual[z, -6.5e+150], N[(N[(x$95$m / z), $MachinePrecision] / z), $MachinePrecision], N[(x$95$m / N[(N[(t - z), $MachinePrecision] * N[(y - z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]), $MachinePrecision]
\begin{array}{l}
x\_m = \left|x\right|
\\
x\_s = \mathsf{copysign}\left(1, x\right)
\\
[x_m, y, z, t] = \mathsf{sort}([x_m, y, z, t])\\
\\
x\_s \cdot \begin{array}{l}
\mathbf{if}\;z \leq -6.5 \cdot 10^{+150}:\\
\;\;\;\;\frac{\frac{x\_m}{z}}{z}\\

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


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if z < -6.50000000000000033e150

    1. Initial program 75.4%

      \[\frac{x}{\left(y - z\right) \cdot \left(t - z\right)} \]
    2. Add Preprocessing
    3. Step-by-step derivation
      1. lift-/.f64N/A

        \[\leadsto \color{blue}{\frac{x}{\left(y - z\right) \cdot \left(t - z\right)}} \]
      2. lift-*.f64N/A

        \[\leadsto \frac{x}{\color{blue}{\left(y - z\right) \cdot \left(t - z\right)}} \]
      3. associate-/l/N/A

        \[\leadsto \color{blue}{\frac{\frac{x}{t - z}}{y - z}} \]
      4. lower-/.f64N/A

        \[\leadsto \color{blue}{\frac{\frac{x}{t - z}}{y - z}} \]
      5. lower-/.f64100.0

        \[\leadsto \frac{\color{blue}{\frac{x}{t - z}}}{y - z} \]
    4. Applied rewrites100.0%

      \[\leadsto \color{blue}{\frac{\frac{x}{t - z}}{y - z}} \]
    5. Taylor expanded in z around inf

      \[\leadsto \color{blue}{\frac{x}{{z}^{2}}} \]
    6. Step-by-step derivation
      1. unpow2N/A

        \[\leadsto \frac{x}{\color{blue}{z \cdot z}} \]
      2. associate-/r*N/A

        \[\leadsto \color{blue}{\frac{\frac{x}{z}}{z}} \]
      3. lower-/.f64N/A

        \[\leadsto \color{blue}{\frac{\frac{x}{z}}{z}} \]
      4. lower-/.f6496.1

        \[\leadsto \frac{\color{blue}{\frac{x}{z}}}{z} \]
    7. Applied rewrites96.1%

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

    if -6.50000000000000033e150 < z

    1. Initial program 92.4%

      \[\frac{x}{\left(y - z\right) \cdot \left(t - z\right)} \]
    2. Add Preprocessing
  3. Recombined 2 regimes into one program.
  4. Final simplification92.8%

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

Alternative 10: 40.5% accurate, 1.4× speedup?

\[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ [x_m, y, z, t] = \mathsf{sort}([x_m, y, z, t])\\ \\ x\_s \cdot \frac{x\_m}{t \cdot y} \end{array} \]
x\_m = (fabs.f64 x)
x\_s = (copysign.f64 #s(literal 1 binary64) x)
NOTE: x_m, y, z, and t should be sorted in increasing order before calling this function.
(FPCore (x_s x_m y z t) :precision binary64 (* x_s (/ x_m (* t y))))
x\_m = fabs(x);
x\_s = copysign(1.0, x);
assert(x_m < y && y < z && z < t);
double code(double x_s, double x_m, double y, double z, double t) {
	return x_s * (x_m / (t * y));
}
x\_m = abs(x)
x\_s = copysign(1.0d0, x)
NOTE: x_m, y, z, and t should be sorted in increasing order before calling this function.
real(8) function code(x_s, x_m, y, z, t)
    real(8), intent (in) :: x_s
    real(8), intent (in) :: x_m
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8), intent (in) :: t
    code = x_s * (x_m / (t * y))
end function
x\_m = Math.abs(x);
x\_s = Math.copySign(1.0, x);
assert x_m < y && y < z && z < t;
public static double code(double x_s, double x_m, double y, double z, double t) {
	return x_s * (x_m / (t * y));
}
x\_m = math.fabs(x)
x\_s = math.copysign(1.0, x)
[x_m, y, z, t] = sort([x_m, y, z, t])
def code(x_s, x_m, y, z, t):
	return x_s * (x_m / (t * y))
x\_m = abs(x)
x\_s = copysign(1.0, x)
x_m, y, z, t = sort([x_m, y, z, t])
function code(x_s, x_m, y, z, t)
	return Float64(x_s * Float64(x_m / Float64(t * y)))
end
x\_m = abs(x);
x\_s = sign(x) * abs(1.0);
x_m, y, z, t = num2cell(sort([x_m, y, z, t])){:}
function tmp = code(x_s, x_m, y, z, t)
	tmp = x_s * (x_m / (t * y));
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]
NOTE: x_m, y, z, and t should be sorted in increasing order before calling this function.
code[x$95$s_, x$95$m_, y_, z_, t_] := N[(x$95$s * N[(x$95$m / N[(t * y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
x\_m = \left|x\right|
\\
x\_s = \mathsf{copysign}\left(1, x\right)
\\
[x_m, y, z, t] = \mathsf{sort}([x_m, y, z, t])\\
\\
x\_s \cdot \frac{x\_m}{t \cdot y}
\end{array}
Derivation
  1. Initial program 90.2%

    \[\frac{x}{\left(y - z\right) \cdot \left(t - z\right)} \]
  2. Add Preprocessing
  3. Taylor expanded in z around 0

    \[\leadsto \frac{x}{\color{blue}{t \cdot y}} \]
  4. Step-by-step derivation
    1. lower-*.f6443.7

      \[\leadsto \frac{x}{\color{blue}{t \cdot y}} \]
  5. Applied rewrites43.7%

    \[\leadsto \frac{x}{\color{blue}{t \cdot y}} \]
  6. Add Preprocessing

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

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

\\
\begin{array}{l}
t_1 := \left(y - z\right) \cdot \left(t - z\right)\\
\mathbf{if}\;\frac{x}{t\_1} < 0:\\
\;\;\;\;\frac{\frac{x}{y - z}}{t - z}\\

\mathbf{else}:\\
\;\;\;\;x \cdot \frac{1}{t\_1}\\


\end{array}
\end{array}

Reproduce

?
herbie shell --seed 2024249 
(FPCore (x y z t)
  :name "Data.Random.Distribution.Triangular:triangularCDF from random-fu-0.2.6.2, B"
  :precision binary64

  :alt
  (! :herbie-platform default (if (< (/ x (* (- y z) (- t z))) 0) (/ (/ x (- y z)) (- t z)) (* x (/ 1 (* (- y z) (- t z))))))

  (/ x (* (- y z) (- t z))))