Linear.Projection:inverseInfinitePerspective from linear-1.19.1.3

Percentage Accurate: 96.5% → 98.3%
Time: 10.5s
Alternatives: 8
Speedup: 1.4×

Specification

?
\[\begin{array}{l} \\ \left(x \cdot y - z \cdot y\right) \cdot t \end{array} \]
(FPCore (x y z t) :precision binary64 (* (- (* x y) (* z y)) t))
double code(double x, double y, double z, double t) {
	return ((x * y) - (z * y)) * t;
}
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 * y)) * t
end function
public static double code(double x, double y, double z, double t) {
	return ((x * y) - (z * y)) * t;
}
def code(x, y, z, t):
	return ((x * y) - (z * y)) * t
function code(x, y, z, t)
	return Float64(Float64(Float64(x * y) - Float64(z * y)) * t)
end
function tmp = code(x, y, z, t)
	tmp = ((x * y) - (z * y)) * t;
end
code[x_, y_, z_, t_] := N[(N[(N[(x * y), $MachinePrecision] - N[(z * y), $MachinePrecision]), $MachinePrecision] * t), $MachinePrecision]
\begin{array}{l}

\\
\left(x \cdot y - z \cdot y\right) \cdot t
\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 8 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: 96.5% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \left(x \cdot y - z \cdot y\right) \cdot t \end{array} \]
(FPCore (x y z t) :precision binary64 (* (- (* x y) (* z y)) t))
double code(double x, double y, double z, double t) {
	return ((x * y) - (z * y)) * t;
}
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 * y)) * t
end function
public static double code(double x, double y, double z, double t) {
	return ((x * y) - (z * y)) * t;
}
def code(x, y, z, t):
	return ((x * y) - (z * y)) * t
function code(x, y, z, t)
	return Float64(Float64(Float64(x * y) - Float64(z * y)) * t)
end
function tmp = code(x, y, z, t)
	tmp = ((x * y) - (z * y)) * t;
end
code[x_, y_, z_, t_] := N[(N[(N[(x * y), $MachinePrecision] - N[(z * y), $MachinePrecision]), $MachinePrecision] * t), $MachinePrecision]
\begin{array}{l}

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

Alternative 1: 98.3% accurate, 0.9× speedup?

\[\begin{array}{l} t\_m = \left|t\right| \\ t\_s = \mathsf{copysign}\left(1, t\right) \\ y\_m = \left|y\right| \\ y\_s = \mathsf{copysign}\left(1, y\right) \\ [x, y_m, z, t_m] = \mathsf{sort}([x, y_m, z, t_m])\\ \\ y\_s \cdot \left(t\_s \cdot \begin{array}{l} \mathbf{if}\;t\_m \leq 10^{-13}:\\ \;\;\;\;\left(t\_m \cdot \left(x - z\right)\right) \cdot y\_m\\ \mathbf{else}:\\ \;\;\;\;\left(x - z\right) \cdot \left(t\_m \cdot y\_m\right)\\ \end{array}\right) \end{array} \]
t\_m = (fabs.f64 t)
t\_s = (copysign.f64 #s(literal 1 binary64) t)
y\_m = (fabs.f64 y)
y\_s = (copysign.f64 #s(literal 1 binary64) y)
NOTE: x, y_m, z, and t_m should be sorted in increasing order before calling this function.
(FPCore (y_s t_s x y_m z t_m)
 :precision binary64
 (*
  y_s
  (* t_s (if (<= t_m 1e-13) (* (* t_m (- x z)) y_m) (* (- x z) (* t_m y_m))))))
t\_m = fabs(t);
t\_s = copysign(1.0, t);
y\_m = fabs(y);
y\_s = copysign(1.0, y);
assert(x < y_m && y_m < z && z < t_m);
double code(double y_s, double t_s, double x, double y_m, double z, double t_m) {
	double tmp;
	if (t_m <= 1e-13) {
		tmp = (t_m * (x - z)) * y_m;
	} else {
		tmp = (x - z) * (t_m * y_m);
	}
	return y_s * (t_s * tmp);
}
t\_m = abs(t)
t\_s = copysign(1.0d0, t)
y\_m = abs(y)
y\_s = copysign(1.0d0, y)
NOTE: x, y_m, z, and t_m should be sorted in increasing order before calling this function.
real(8) function code(y_s, t_s, x, y_m, z, t_m)
    real(8), intent (in) :: y_s
    real(8), intent (in) :: t_s
    real(8), intent (in) :: x
    real(8), intent (in) :: y_m
    real(8), intent (in) :: z
    real(8), intent (in) :: t_m
    real(8) :: tmp
    if (t_m <= 1d-13) then
        tmp = (t_m * (x - z)) * y_m
    else
        tmp = (x - z) * (t_m * y_m)
    end if
    code = y_s * (t_s * tmp)
end function
t\_m = Math.abs(t);
t\_s = Math.copySign(1.0, t);
y\_m = Math.abs(y);
y\_s = Math.copySign(1.0, y);
assert x < y_m && y_m < z && z < t_m;
public static double code(double y_s, double t_s, double x, double y_m, double z, double t_m) {
	double tmp;
	if (t_m <= 1e-13) {
		tmp = (t_m * (x - z)) * y_m;
	} else {
		tmp = (x - z) * (t_m * y_m);
	}
	return y_s * (t_s * tmp);
}
t\_m = math.fabs(t)
t\_s = math.copysign(1.0, t)
y\_m = math.fabs(y)
y\_s = math.copysign(1.0, y)
[x, y_m, z, t_m] = sort([x, y_m, z, t_m])
def code(y_s, t_s, x, y_m, z, t_m):
	tmp = 0
	if t_m <= 1e-13:
		tmp = (t_m * (x - z)) * y_m
	else:
		tmp = (x - z) * (t_m * y_m)
	return y_s * (t_s * tmp)
t\_m = abs(t)
t\_s = copysign(1.0, t)
y\_m = abs(y)
y\_s = copysign(1.0, y)
x, y_m, z, t_m = sort([x, y_m, z, t_m])
function code(y_s, t_s, x, y_m, z, t_m)
	tmp = 0.0
	if (t_m <= 1e-13)
		tmp = Float64(Float64(t_m * Float64(x - z)) * y_m);
	else
		tmp = Float64(Float64(x - z) * Float64(t_m * y_m));
	end
	return Float64(y_s * Float64(t_s * tmp))
end
t\_m = abs(t);
t\_s = sign(t) * abs(1.0);
y\_m = abs(y);
y\_s = sign(y) * abs(1.0);
x, y_m, z, t_m = num2cell(sort([x, y_m, z, t_m])){:}
function tmp_2 = code(y_s, t_s, x, y_m, z, t_m)
	tmp = 0.0;
	if (t_m <= 1e-13)
		tmp = (t_m * (x - z)) * y_m;
	else
		tmp = (x - z) * (t_m * y_m);
	end
	tmp_2 = y_s * (t_s * tmp);
end
t\_m = N[Abs[t], $MachinePrecision]
t\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[t]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
y\_m = N[Abs[y], $MachinePrecision]
y\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[y]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
NOTE: x, y_m, z, and t_m should be sorted in increasing order before calling this function.
code[y$95$s_, t$95$s_, x_, y$95$m_, z_, t$95$m_] := N[(y$95$s * N[(t$95$s * If[LessEqual[t$95$m, 1e-13], N[(N[(t$95$m * N[(x - z), $MachinePrecision]), $MachinePrecision] * y$95$m), $MachinePrecision], N[(N[(x - z), $MachinePrecision] * N[(t$95$m * y$95$m), $MachinePrecision]), $MachinePrecision]]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
t\_m = \left|t\right|
\\
t\_s = \mathsf{copysign}\left(1, t\right)
\\
y\_m = \left|y\right|
\\
y\_s = \mathsf{copysign}\left(1, y\right)
\\
[x, y_m, z, t_m] = \mathsf{sort}([x, y_m, z, t_m])\\
\\
y\_s \cdot \left(t\_s \cdot \begin{array}{l}
\mathbf{if}\;t\_m \leq 10^{-13}:\\
\;\;\;\;\left(t\_m \cdot \left(x - z\right)\right) \cdot y\_m\\

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


\end{array}\right)
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if t < 1e-13

    1. Initial program 87.8%

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

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

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

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

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

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

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

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

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

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

        \[\leadsto \color{blue}{\left(t \cdot \left(x - z\right)\right)} \cdot y \]
      11. lower--.f6495.8

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

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

    if 1e-13 < t

    1. Initial program 95.3%

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

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

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

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

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

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

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

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

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

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

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

        \[\leadsto \left(x - z\right) \cdot \color{blue}{\left(y \cdot t\right)} \]
      12. lower-*.f6499.6

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

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

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

Alternative 2: 77.0% accurate, 0.8× speedup?

\[\begin{array}{l} t\_m = \left|t\right| \\ t\_s = \mathsf{copysign}\left(1, t\right) \\ y\_m = \left|y\right| \\ y\_s = \mathsf{copysign}\left(1, y\right) \\ [x, y_m, z, t_m] = \mathsf{sort}([x, y_m, z, t_m])\\ \\ \begin{array}{l} t_2 := t\_m \cdot \left(x \cdot y\_m\right)\\ y\_s \cdot \left(t\_s \cdot \begin{array}{l} \mathbf{if}\;x \leq -3.1 \cdot 10^{+32}:\\ \;\;\;\;t\_2\\ \mathbf{elif}\;x \leq 7.4 \cdot 10^{-87}:\\ \;\;\;\;t\_m \cdot \left(y\_m \cdot \left(-z\right)\right)\\ \mathbf{else}:\\ \;\;\;\;t\_2\\ \end{array}\right) \end{array} \end{array} \]
t\_m = (fabs.f64 t)
t\_s = (copysign.f64 #s(literal 1 binary64) t)
y\_m = (fabs.f64 y)
y\_s = (copysign.f64 #s(literal 1 binary64) y)
NOTE: x, y_m, z, and t_m should be sorted in increasing order before calling this function.
(FPCore (y_s t_s x y_m z t_m)
 :precision binary64
 (let* ((t_2 (* t_m (* x y_m))))
   (*
    y_s
    (*
     t_s
     (if (<= x -3.1e+32) t_2 (if (<= x 7.4e-87) (* t_m (* y_m (- z))) t_2))))))
t\_m = fabs(t);
t\_s = copysign(1.0, t);
y\_m = fabs(y);
y\_s = copysign(1.0, y);
assert(x < y_m && y_m < z && z < t_m);
double code(double y_s, double t_s, double x, double y_m, double z, double t_m) {
	double t_2 = t_m * (x * y_m);
	double tmp;
	if (x <= -3.1e+32) {
		tmp = t_2;
	} else if (x <= 7.4e-87) {
		tmp = t_m * (y_m * -z);
	} else {
		tmp = t_2;
	}
	return y_s * (t_s * tmp);
}
t\_m = abs(t)
t\_s = copysign(1.0d0, t)
y\_m = abs(y)
y\_s = copysign(1.0d0, y)
NOTE: x, y_m, z, and t_m should be sorted in increasing order before calling this function.
real(8) function code(y_s, t_s, x, y_m, z, t_m)
    real(8), intent (in) :: y_s
    real(8), intent (in) :: t_s
    real(8), intent (in) :: x
    real(8), intent (in) :: y_m
    real(8), intent (in) :: z
    real(8), intent (in) :: t_m
    real(8) :: t_2
    real(8) :: tmp
    t_2 = t_m * (x * y_m)
    if (x <= (-3.1d+32)) then
        tmp = t_2
    else if (x <= 7.4d-87) then
        tmp = t_m * (y_m * -z)
    else
        tmp = t_2
    end if
    code = y_s * (t_s * tmp)
end function
t\_m = Math.abs(t);
t\_s = Math.copySign(1.0, t);
y\_m = Math.abs(y);
y\_s = Math.copySign(1.0, y);
assert x < y_m && y_m < z && z < t_m;
public static double code(double y_s, double t_s, double x, double y_m, double z, double t_m) {
	double t_2 = t_m * (x * y_m);
	double tmp;
	if (x <= -3.1e+32) {
		tmp = t_2;
	} else if (x <= 7.4e-87) {
		tmp = t_m * (y_m * -z);
	} else {
		tmp = t_2;
	}
	return y_s * (t_s * tmp);
}
t\_m = math.fabs(t)
t\_s = math.copysign(1.0, t)
y\_m = math.fabs(y)
y\_s = math.copysign(1.0, y)
[x, y_m, z, t_m] = sort([x, y_m, z, t_m])
def code(y_s, t_s, x, y_m, z, t_m):
	t_2 = t_m * (x * y_m)
	tmp = 0
	if x <= -3.1e+32:
		tmp = t_2
	elif x <= 7.4e-87:
		tmp = t_m * (y_m * -z)
	else:
		tmp = t_2
	return y_s * (t_s * tmp)
t\_m = abs(t)
t\_s = copysign(1.0, t)
y\_m = abs(y)
y\_s = copysign(1.0, y)
x, y_m, z, t_m = sort([x, y_m, z, t_m])
function code(y_s, t_s, x, y_m, z, t_m)
	t_2 = Float64(t_m * Float64(x * y_m))
	tmp = 0.0
	if (x <= -3.1e+32)
		tmp = t_2;
	elseif (x <= 7.4e-87)
		tmp = Float64(t_m * Float64(y_m * Float64(-z)));
	else
		tmp = t_2;
	end
	return Float64(y_s * Float64(t_s * tmp))
end
t\_m = abs(t);
t\_s = sign(t) * abs(1.0);
y\_m = abs(y);
y\_s = sign(y) * abs(1.0);
x, y_m, z, t_m = num2cell(sort([x, y_m, z, t_m])){:}
function tmp_2 = code(y_s, t_s, x, y_m, z, t_m)
	t_2 = t_m * (x * y_m);
	tmp = 0.0;
	if (x <= -3.1e+32)
		tmp = t_2;
	elseif (x <= 7.4e-87)
		tmp = t_m * (y_m * -z);
	else
		tmp = t_2;
	end
	tmp_2 = y_s * (t_s * tmp);
end
t\_m = N[Abs[t], $MachinePrecision]
t\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[t]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
y\_m = N[Abs[y], $MachinePrecision]
y\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[y]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
NOTE: x, y_m, z, and t_m should be sorted in increasing order before calling this function.
code[y$95$s_, t$95$s_, x_, y$95$m_, z_, t$95$m_] := Block[{t$95$2 = N[(t$95$m * N[(x * y$95$m), $MachinePrecision]), $MachinePrecision]}, N[(y$95$s * N[(t$95$s * If[LessEqual[x, -3.1e+32], t$95$2, If[LessEqual[x, 7.4e-87], N[(t$95$m * N[(y$95$m * (-z)), $MachinePrecision]), $MachinePrecision], t$95$2]]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
t\_m = \left|t\right|
\\
t\_s = \mathsf{copysign}\left(1, t\right)
\\
y\_m = \left|y\right|
\\
y\_s = \mathsf{copysign}\left(1, y\right)
\\
[x, y_m, z, t_m] = \mathsf{sort}([x, y_m, z, t_m])\\
\\
\begin{array}{l}
t_2 := t\_m \cdot \left(x \cdot y\_m\right)\\
y\_s \cdot \left(t\_s \cdot \begin{array}{l}
\mathbf{if}\;x \leq -3.1 \cdot 10^{+32}:\\
\;\;\;\;t\_2\\

\mathbf{elif}\;x \leq 7.4 \cdot 10^{-87}:\\
\;\;\;\;t\_m \cdot \left(y\_m \cdot \left(-z\right)\right)\\

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


\end{array}\right)
\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if x < -3.09999999999999993e32 or 7.4000000000000004e-87 < x

    1. Initial program 86.2%

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

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

        \[\leadsto \color{blue}{\left(y \cdot x\right)} \cdot t \]
      2. lower-*.f6473.8

        \[\leadsto \color{blue}{\left(y \cdot x\right)} \cdot t \]
    5. Applied rewrites73.8%

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

    if -3.09999999999999993e32 < x < 7.4000000000000004e-87

    1. Initial program 94.2%

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

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

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

        \[\leadsto \color{blue}{\left(y \cdot \left(\mathsf{neg}\left(z\right)\right)\right)} \cdot t \]
      3. mul-1-negN/A

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

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

        \[\leadsto \left(y \cdot \color{blue}{\left(\mathsf{neg}\left(z\right)\right)}\right) \cdot t \]
      6. lower-neg.f6477.8

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

      \[\leadsto \color{blue}{\left(y \cdot \left(-z\right)\right)} \cdot t \]
  3. Recombined 2 regimes into one program.
  4. Final simplification75.6%

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

Alternative 3: 76.4% accurate, 0.8× speedup?

\[\begin{array}{l} t\_m = \left|t\right| \\ t\_s = \mathsf{copysign}\left(1, t\right) \\ y\_m = \left|y\right| \\ y\_s = \mathsf{copysign}\left(1, y\right) \\ [x, y_m, z, t_m] = \mathsf{sort}([x, y_m, z, t_m])\\ \\ \begin{array}{l} t_2 := t\_m \cdot \left(x \cdot y\_m\right)\\ y\_s \cdot \left(t\_s \cdot \begin{array}{l} \mathbf{if}\;x \leq -2.35 \cdot 10^{+30}:\\ \;\;\;\;t\_2\\ \mathbf{elif}\;x \leq 5.1 \cdot 10^{-85}:\\ \;\;\;\;\left(t\_m \cdot y\_m\right) \cdot \left(-z\right)\\ \mathbf{else}:\\ \;\;\;\;t\_2\\ \end{array}\right) \end{array} \end{array} \]
t\_m = (fabs.f64 t)
t\_s = (copysign.f64 #s(literal 1 binary64) t)
y\_m = (fabs.f64 y)
y\_s = (copysign.f64 #s(literal 1 binary64) y)
NOTE: x, y_m, z, and t_m should be sorted in increasing order before calling this function.
(FPCore (y_s t_s x y_m z t_m)
 :precision binary64
 (let* ((t_2 (* t_m (* x y_m))))
   (*
    y_s
    (*
     t_s
     (if (<= x -2.35e+30)
       t_2
       (if (<= x 5.1e-85) (* (* t_m y_m) (- z)) t_2))))))
t\_m = fabs(t);
t\_s = copysign(1.0, t);
y\_m = fabs(y);
y\_s = copysign(1.0, y);
assert(x < y_m && y_m < z && z < t_m);
double code(double y_s, double t_s, double x, double y_m, double z, double t_m) {
	double t_2 = t_m * (x * y_m);
	double tmp;
	if (x <= -2.35e+30) {
		tmp = t_2;
	} else if (x <= 5.1e-85) {
		tmp = (t_m * y_m) * -z;
	} else {
		tmp = t_2;
	}
	return y_s * (t_s * tmp);
}
t\_m = abs(t)
t\_s = copysign(1.0d0, t)
y\_m = abs(y)
y\_s = copysign(1.0d0, y)
NOTE: x, y_m, z, and t_m should be sorted in increasing order before calling this function.
real(8) function code(y_s, t_s, x, y_m, z, t_m)
    real(8), intent (in) :: y_s
    real(8), intent (in) :: t_s
    real(8), intent (in) :: x
    real(8), intent (in) :: y_m
    real(8), intent (in) :: z
    real(8), intent (in) :: t_m
    real(8) :: t_2
    real(8) :: tmp
    t_2 = t_m * (x * y_m)
    if (x <= (-2.35d+30)) then
        tmp = t_2
    else if (x <= 5.1d-85) then
        tmp = (t_m * y_m) * -z
    else
        tmp = t_2
    end if
    code = y_s * (t_s * tmp)
end function
t\_m = Math.abs(t);
t\_s = Math.copySign(1.0, t);
y\_m = Math.abs(y);
y\_s = Math.copySign(1.0, y);
assert x < y_m && y_m < z && z < t_m;
public static double code(double y_s, double t_s, double x, double y_m, double z, double t_m) {
	double t_2 = t_m * (x * y_m);
	double tmp;
	if (x <= -2.35e+30) {
		tmp = t_2;
	} else if (x <= 5.1e-85) {
		tmp = (t_m * y_m) * -z;
	} else {
		tmp = t_2;
	}
	return y_s * (t_s * tmp);
}
t\_m = math.fabs(t)
t\_s = math.copysign(1.0, t)
y\_m = math.fabs(y)
y\_s = math.copysign(1.0, y)
[x, y_m, z, t_m] = sort([x, y_m, z, t_m])
def code(y_s, t_s, x, y_m, z, t_m):
	t_2 = t_m * (x * y_m)
	tmp = 0
	if x <= -2.35e+30:
		tmp = t_2
	elif x <= 5.1e-85:
		tmp = (t_m * y_m) * -z
	else:
		tmp = t_2
	return y_s * (t_s * tmp)
t\_m = abs(t)
t\_s = copysign(1.0, t)
y\_m = abs(y)
y\_s = copysign(1.0, y)
x, y_m, z, t_m = sort([x, y_m, z, t_m])
function code(y_s, t_s, x, y_m, z, t_m)
	t_2 = Float64(t_m * Float64(x * y_m))
	tmp = 0.0
	if (x <= -2.35e+30)
		tmp = t_2;
	elseif (x <= 5.1e-85)
		tmp = Float64(Float64(t_m * y_m) * Float64(-z));
	else
		tmp = t_2;
	end
	return Float64(y_s * Float64(t_s * tmp))
end
t\_m = abs(t);
t\_s = sign(t) * abs(1.0);
y\_m = abs(y);
y\_s = sign(y) * abs(1.0);
x, y_m, z, t_m = num2cell(sort([x, y_m, z, t_m])){:}
function tmp_2 = code(y_s, t_s, x, y_m, z, t_m)
	t_2 = t_m * (x * y_m);
	tmp = 0.0;
	if (x <= -2.35e+30)
		tmp = t_2;
	elseif (x <= 5.1e-85)
		tmp = (t_m * y_m) * -z;
	else
		tmp = t_2;
	end
	tmp_2 = y_s * (t_s * tmp);
end
t\_m = N[Abs[t], $MachinePrecision]
t\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[t]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
y\_m = N[Abs[y], $MachinePrecision]
y\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[y]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
NOTE: x, y_m, z, and t_m should be sorted in increasing order before calling this function.
code[y$95$s_, t$95$s_, x_, y$95$m_, z_, t$95$m_] := Block[{t$95$2 = N[(t$95$m * N[(x * y$95$m), $MachinePrecision]), $MachinePrecision]}, N[(y$95$s * N[(t$95$s * If[LessEqual[x, -2.35e+30], t$95$2, If[LessEqual[x, 5.1e-85], N[(N[(t$95$m * y$95$m), $MachinePrecision] * (-z)), $MachinePrecision], t$95$2]]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
t\_m = \left|t\right|
\\
t\_s = \mathsf{copysign}\left(1, t\right)
\\
y\_m = \left|y\right|
\\
y\_s = \mathsf{copysign}\left(1, y\right)
\\
[x, y_m, z, t_m] = \mathsf{sort}([x, y_m, z, t_m])\\
\\
\begin{array}{l}
t_2 := t\_m \cdot \left(x \cdot y\_m\right)\\
y\_s \cdot \left(t\_s \cdot \begin{array}{l}
\mathbf{if}\;x \leq -2.35 \cdot 10^{+30}:\\
\;\;\;\;t\_2\\

\mathbf{elif}\;x \leq 5.1 \cdot 10^{-85}:\\
\;\;\;\;\left(t\_m \cdot y\_m\right) \cdot \left(-z\right)\\

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


\end{array}\right)
\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if x < -2.34999999999999995e30 or 5.1000000000000002e-85 < x

    1. Initial program 86.2%

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

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

        \[\leadsto \color{blue}{\left(y \cdot x\right)} \cdot t \]
      2. lower-*.f6473.8

        \[\leadsto \color{blue}{\left(y \cdot x\right)} \cdot t \]
    5. Applied rewrites73.8%

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

    if -2.34999999999999995e30 < x < 5.1000000000000002e-85

    1. Initial program 94.2%

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

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

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

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

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

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

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

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

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

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

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

        \[\leadsto \left(x - z\right) \cdot \color{blue}{\left(y \cdot t\right)} \]
      12. lower-*.f6495.7

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

      \[\leadsto \color{blue}{\left(x - z\right) \cdot \left(y \cdot t\right)} \]
    5. Taylor expanded in x around 0

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

        \[\leadsto \color{blue}{\left(\mathsf{neg}\left(z\right)\right)} \cdot \left(y \cdot t\right) \]
      2. lower-neg.f6477.7

        \[\leadsto \color{blue}{\left(-z\right)} \cdot \left(y \cdot t\right) \]
    7. Applied rewrites77.7%

      \[\leadsto \color{blue}{\left(-z\right)} \cdot \left(y \cdot t\right) \]
  3. Recombined 2 regimes into one program.
  4. Final simplification75.6%

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

Alternative 4: 74.7% accurate, 0.8× speedup?

\[\begin{array}{l} t\_m = \left|t\right| \\ t\_s = \mathsf{copysign}\left(1, t\right) \\ y\_m = \left|y\right| \\ y\_s = \mathsf{copysign}\left(1, y\right) \\ [x, y_m, z, t_m] = \mathsf{sort}([x, y_m, z, t_m])\\ \\ \begin{array}{l} t_2 := t\_m \cdot \left(x \cdot y\_m\right)\\ y\_s \cdot \left(t\_s \cdot \begin{array}{l} \mathbf{if}\;x \leq -3.6 \cdot 10^{+31}:\\ \;\;\;\;t\_2\\ \mathbf{elif}\;x \leq 7.4 \cdot 10^{-87}:\\ \;\;\;\;y\_m \cdot \left(t\_m \cdot \left(-z\right)\right)\\ \mathbf{else}:\\ \;\;\;\;t\_2\\ \end{array}\right) \end{array} \end{array} \]
t\_m = (fabs.f64 t)
t\_s = (copysign.f64 #s(literal 1 binary64) t)
y\_m = (fabs.f64 y)
y\_s = (copysign.f64 #s(literal 1 binary64) y)
NOTE: x, y_m, z, and t_m should be sorted in increasing order before calling this function.
(FPCore (y_s t_s x y_m z t_m)
 :precision binary64
 (let* ((t_2 (* t_m (* x y_m))))
   (*
    y_s
    (*
     t_s
     (if (<= x -3.6e+31) t_2 (if (<= x 7.4e-87) (* y_m (* t_m (- z))) t_2))))))
t\_m = fabs(t);
t\_s = copysign(1.0, t);
y\_m = fabs(y);
y\_s = copysign(1.0, y);
assert(x < y_m && y_m < z && z < t_m);
double code(double y_s, double t_s, double x, double y_m, double z, double t_m) {
	double t_2 = t_m * (x * y_m);
	double tmp;
	if (x <= -3.6e+31) {
		tmp = t_2;
	} else if (x <= 7.4e-87) {
		tmp = y_m * (t_m * -z);
	} else {
		tmp = t_2;
	}
	return y_s * (t_s * tmp);
}
t\_m = abs(t)
t\_s = copysign(1.0d0, t)
y\_m = abs(y)
y\_s = copysign(1.0d0, y)
NOTE: x, y_m, z, and t_m should be sorted in increasing order before calling this function.
real(8) function code(y_s, t_s, x, y_m, z, t_m)
    real(8), intent (in) :: y_s
    real(8), intent (in) :: t_s
    real(8), intent (in) :: x
    real(8), intent (in) :: y_m
    real(8), intent (in) :: z
    real(8), intent (in) :: t_m
    real(8) :: t_2
    real(8) :: tmp
    t_2 = t_m * (x * y_m)
    if (x <= (-3.6d+31)) then
        tmp = t_2
    else if (x <= 7.4d-87) then
        tmp = y_m * (t_m * -z)
    else
        tmp = t_2
    end if
    code = y_s * (t_s * tmp)
end function
t\_m = Math.abs(t);
t\_s = Math.copySign(1.0, t);
y\_m = Math.abs(y);
y\_s = Math.copySign(1.0, y);
assert x < y_m && y_m < z && z < t_m;
public static double code(double y_s, double t_s, double x, double y_m, double z, double t_m) {
	double t_2 = t_m * (x * y_m);
	double tmp;
	if (x <= -3.6e+31) {
		tmp = t_2;
	} else if (x <= 7.4e-87) {
		tmp = y_m * (t_m * -z);
	} else {
		tmp = t_2;
	}
	return y_s * (t_s * tmp);
}
t\_m = math.fabs(t)
t\_s = math.copysign(1.0, t)
y\_m = math.fabs(y)
y\_s = math.copysign(1.0, y)
[x, y_m, z, t_m] = sort([x, y_m, z, t_m])
def code(y_s, t_s, x, y_m, z, t_m):
	t_2 = t_m * (x * y_m)
	tmp = 0
	if x <= -3.6e+31:
		tmp = t_2
	elif x <= 7.4e-87:
		tmp = y_m * (t_m * -z)
	else:
		tmp = t_2
	return y_s * (t_s * tmp)
t\_m = abs(t)
t\_s = copysign(1.0, t)
y\_m = abs(y)
y\_s = copysign(1.0, y)
x, y_m, z, t_m = sort([x, y_m, z, t_m])
function code(y_s, t_s, x, y_m, z, t_m)
	t_2 = Float64(t_m * Float64(x * y_m))
	tmp = 0.0
	if (x <= -3.6e+31)
		tmp = t_2;
	elseif (x <= 7.4e-87)
		tmp = Float64(y_m * Float64(t_m * Float64(-z)));
	else
		tmp = t_2;
	end
	return Float64(y_s * Float64(t_s * tmp))
end
t\_m = abs(t);
t\_s = sign(t) * abs(1.0);
y\_m = abs(y);
y\_s = sign(y) * abs(1.0);
x, y_m, z, t_m = num2cell(sort([x, y_m, z, t_m])){:}
function tmp_2 = code(y_s, t_s, x, y_m, z, t_m)
	t_2 = t_m * (x * y_m);
	tmp = 0.0;
	if (x <= -3.6e+31)
		tmp = t_2;
	elseif (x <= 7.4e-87)
		tmp = y_m * (t_m * -z);
	else
		tmp = t_2;
	end
	tmp_2 = y_s * (t_s * tmp);
end
t\_m = N[Abs[t], $MachinePrecision]
t\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[t]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
y\_m = N[Abs[y], $MachinePrecision]
y\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[y]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
NOTE: x, y_m, z, and t_m should be sorted in increasing order before calling this function.
code[y$95$s_, t$95$s_, x_, y$95$m_, z_, t$95$m_] := Block[{t$95$2 = N[(t$95$m * N[(x * y$95$m), $MachinePrecision]), $MachinePrecision]}, N[(y$95$s * N[(t$95$s * If[LessEqual[x, -3.6e+31], t$95$2, If[LessEqual[x, 7.4e-87], N[(y$95$m * N[(t$95$m * (-z)), $MachinePrecision]), $MachinePrecision], t$95$2]]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
t\_m = \left|t\right|
\\
t\_s = \mathsf{copysign}\left(1, t\right)
\\
y\_m = \left|y\right|
\\
y\_s = \mathsf{copysign}\left(1, y\right)
\\
[x, y_m, z, t_m] = \mathsf{sort}([x, y_m, z, t_m])\\
\\
\begin{array}{l}
t_2 := t\_m \cdot \left(x \cdot y\_m\right)\\
y\_s \cdot \left(t\_s \cdot \begin{array}{l}
\mathbf{if}\;x \leq -3.6 \cdot 10^{+31}:\\
\;\;\;\;t\_2\\

\mathbf{elif}\;x \leq 7.4 \cdot 10^{-87}:\\
\;\;\;\;y\_m \cdot \left(t\_m \cdot \left(-z\right)\right)\\

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


\end{array}\right)
\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if x < -3.59999999999999996e31 or 7.4000000000000004e-87 < x

    1. Initial program 86.2%

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

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

        \[\leadsto \color{blue}{\left(y \cdot x\right)} \cdot t \]
      2. lower-*.f6473.8

        \[\leadsto \color{blue}{\left(y \cdot x\right)} \cdot t \]
    5. Applied rewrites73.8%

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

    if -3.59999999999999996e31 < x < 7.4000000000000004e-87

    1. Initial program 94.2%

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

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

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

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

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

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

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

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

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

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

        \[\leadsto y \cdot \left(\color{blue}{\left(\mathsf{neg}\left(z\right)\right)} \cdot t\right) \]
      10. lower-neg.f6478.3

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

      \[\leadsto \color{blue}{y \cdot \left(\left(-z\right) \cdot t\right)} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification75.8%

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

Alternative 5: 88.1% accurate, 0.9× speedup?

\[\begin{array}{l} t\_m = \left|t\right| \\ t\_s = \mathsf{copysign}\left(1, t\right) \\ y\_m = \left|y\right| \\ y\_s = \mathsf{copysign}\left(1, y\right) \\ [x, y_m, z, t_m] = \mathsf{sort}([x, y_m, z, t_m])\\ \\ y\_s \cdot \left(t\_s \cdot \begin{array}{l} \mathbf{if}\;z \leq 9.5 \cdot 10^{+236}:\\ \;\;\;\;\left(t\_m \cdot \left(x - z\right)\right) \cdot y\_m\\ \mathbf{else}:\\ \;\;\;\;t\_m \cdot \left(y\_m \cdot \left(-z\right)\right)\\ \end{array}\right) \end{array} \]
t\_m = (fabs.f64 t)
t\_s = (copysign.f64 #s(literal 1 binary64) t)
y\_m = (fabs.f64 y)
y\_s = (copysign.f64 #s(literal 1 binary64) y)
NOTE: x, y_m, z, and t_m should be sorted in increasing order before calling this function.
(FPCore (y_s t_s x y_m z t_m)
 :precision binary64
 (*
  y_s
  (* t_s (if (<= z 9.5e+236) (* (* t_m (- x z)) y_m) (* t_m (* y_m (- z)))))))
t\_m = fabs(t);
t\_s = copysign(1.0, t);
y\_m = fabs(y);
y\_s = copysign(1.0, y);
assert(x < y_m && y_m < z && z < t_m);
double code(double y_s, double t_s, double x, double y_m, double z, double t_m) {
	double tmp;
	if (z <= 9.5e+236) {
		tmp = (t_m * (x - z)) * y_m;
	} else {
		tmp = t_m * (y_m * -z);
	}
	return y_s * (t_s * tmp);
}
t\_m = abs(t)
t\_s = copysign(1.0d0, t)
y\_m = abs(y)
y\_s = copysign(1.0d0, y)
NOTE: x, y_m, z, and t_m should be sorted in increasing order before calling this function.
real(8) function code(y_s, t_s, x, y_m, z, t_m)
    real(8), intent (in) :: y_s
    real(8), intent (in) :: t_s
    real(8), intent (in) :: x
    real(8), intent (in) :: y_m
    real(8), intent (in) :: z
    real(8), intent (in) :: t_m
    real(8) :: tmp
    if (z <= 9.5d+236) then
        tmp = (t_m * (x - z)) * y_m
    else
        tmp = t_m * (y_m * -z)
    end if
    code = y_s * (t_s * tmp)
end function
t\_m = Math.abs(t);
t\_s = Math.copySign(1.0, t);
y\_m = Math.abs(y);
y\_s = Math.copySign(1.0, y);
assert x < y_m && y_m < z && z < t_m;
public static double code(double y_s, double t_s, double x, double y_m, double z, double t_m) {
	double tmp;
	if (z <= 9.5e+236) {
		tmp = (t_m * (x - z)) * y_m;
	} else {
		tmp = t_m * (y_m * -z);
	}
	return y_s * (t_s * tmp);
}
t\_m = math.fabs(t)
t\_s = math.copysign(1.0, t)
y\_m = math.fabs(y)
y\_s = math.copysign(1.0, y)
[x, y_m, z, t_m] = sort([x, y_m, z, t_m])
def code(y_s, t_s, x, y_m, z, t_m):
	tmp = 0
	if z <= 9.5e+236:
		tmp = (t_m * (x - z)) * y_m
	else:
		tmp = t_m * (y_m * -z)
	return y_s * (t_s * tmp)
t\_m = abs(t)
t\_s = copysign(1.0, t)
y\_m = abs(y)
y\_s = copysign(1.0, y)
x, y_m, z, t_m = sort([x, y_m, z, t_m])
function code(y_s, t_s, x, y_m, z, t_m)
	tmp = 0.0
	if (z <= 9.5e+236)
		tmp = Float64(Float64(t_m * Float64(x - z)) * y_m);
	else
		tmp = Float64(t_m * Float64(y_m * Float64(-z)));
	end
	return Float64(y_s * Float64(t_s * tmp))
end
t\_m = abs(t);
t\_s = sign(t) * abs(1.0);
y\_m = abs(y);
y\_s = sign(y) * abs(1.0);
x, y_m, z, t_m = num2cell(sort([x, y_m, z, t_m])){:}
function tmp_2 = code(y_s, t_s, x, y_m, z, t_m)
	tmp = 0.0;
	if (z <= 9.5e+236)
		tmp = (t_m * (x - z)) * y_m;
	else
		tmp = t_m * (y_m * -z);
	end
	tmp_2 = y_s * (t_s * tmp);
end
t\_m = N[Abs[t], $MachinePrecision]
t\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[t]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
y\_m = N[Abs[y], $MachinePrecision]
y\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[y]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
NOTE: x, y_m, z, and t_m should be sorted in increasing order before calling this function.
code[y$95$s_, t$95$s_, x_, y$95$m_, z_, t$95$m_] := N[(y$95$s * N[(t$95$s * If[LessEqual[z, 9.5e+236], N[(N[(t$95$m * N[(x - z), $MachinePrecision]), $MachinePrecision] * y$95$m), $MachinePrecision], N[(t$95$m * N[(y$95$m * (-z)), $MachinePrecision]), $MachinePrecision]]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
t\_m = \left|t\right|
\\
t\_s = \mathsf{copysign}\left(1, t\right)
\\
y\_m = \left|y\right|
\\
y\_s = \mathsf{copysign}\left(1, y\right)
\\
[x, y_m, z, t_m] = \mathsf{sort}([x, y_m, z, t_m])\\
\\
y\_s \cdot \left(t\_s \cdot \begin{array}{l}
\mathbf{if}\;z \leq 9.5 \cdot 10^{+236}:\\
\;\;\;\;\left(t\_m \cdot \left(x - z\right)\right) \cdot y\_m\\

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


\end{array}\right)
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if z < 9.4999999999999999e236

    1. Initial program 91.1%

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

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

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

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

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

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

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

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

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

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

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

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

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

    if 9.4999999999999999e236 < z

    1. Initial program 71.1%

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

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

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

        \[\leadsto \color{blue}{\left(y \cdot \left(\mathsf{neg}\left(z\right)\right)\right)} \cdot t \]
      3. mul-1-negN/A

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

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

        \[\leadsto \left(y \cdot \color{blue}{\left(\mathsf{neg}\left(z\right)\right)}\right) \cdot t \]
      6. lower-neg.f6477.6

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

      \[\leadsto \color{blue}{\left(y \cdot \left(-z\right)\right)} \cdot t \]
  3. Recombined 2 regimes into one program.
  4. Final simplification93.5%

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

Alternative 6: 57.4% accurate, 1.1× speedup?

\[\begin{array}{l} t\_m = \left|t\right| \\ t\_s = \mathsf{copysign}\left(1, t\right) \\ y\_m = \left|y\right| \\ y\_s = \mathsf{copysign}\left(1, y\right) \\ [x, y_m, z, t_m] = \mathsf{sort}([x, y_m, z, t_m])\\ \\ y\_s \cdot \left(t\_s \cdot \begin{array}{l} \mathbf{if}\;t\_m \leq 3 \cdot 10^{-13}:\\ \;\;\;\;y\_m \cdot \left(t\_m \cdot x\right)\\ \mathbf{else}:\\ \;\;\;\;x \cdot \left(t\_m \cdot y\_m\right)\\ \end{array}\right) \end{array} \]
t\_m = (fabs.f64 t)
t\_s = (copysign.f64 #s(literal 1 binary64) t)
y\_m = (fabs.f64 y)
y\_s = (copysign.f64 #s(literal 1 binary64) y)
NOTE: x, y_m, z, and t_m should be sorted in increasing order before calling this function.
(FPCore (y_s t_s x y_m z t_m)
 :precision binary64
 (* y_s (* t_s (if (<= t_m 3e-13) (* y_m (* t_m x)) (* x (* t_m y_m))))))
t\_m = fabs(t);
t\_s = copysign(1.0, t);
y\_m = fabs(y);
y\_s = copysign(1.0, y);
assert(x < y_m && y_m < z && z < t_m);
double code(double y_s, double t_s, double x, double y_m, double z, double t_m) {
	double tmp;
	if (t_m <= 3e-13) {
		tmp = y_m * (t_m * x);
	} else {
		tmp = x * (t_m * y_m);
	}
	return y_s * (t_s * tmp);
}
t\_m = abs(t)
t\_s = copysign(1.0d0, t)
y\_m = abs(y)
y\_s = copysign(1.0d0, y)
NOTE: x, y_m, z, and t_m should be sorted in increasing order before calling this function.
real(8) function code(y_s, t_s, x, y_m, z, t_m)
    real(8), intent (in) :: y_s
    real(8), intent (in) :: t_s
    real(8), intent (in) :: x
    real(8), intent (in) :: y_m
    real(8), intent (in) :: z
    real(8), intent (in) :: t_m
    real(8) :: tmp
    if (t_m <= 3d-13) then
        tmp = y_m * (t_m * x)
    else
        tmp = x * (t_m * y_m)
    end if
    code = y_s * (t_s * tmp)
end function
t\_m = Math.abs(t);
t\_s = Math.copySign(1.0, t);
y\_m = Math.abs(y);
y\_s = Math.copySign(1.0, y);
assert x < y_m && y_m < z && z < t_m;
public static double code(double y_s, double t_s, double x, double y_m, double z, double t_m) {
	double tmp;
	if (t_m <= 3e-13) {
		tmp = y_m * (t_m * x);
	} else {
		tmp = x * (t_m * y_m);
	}
	return y_s * (t_s * tmp);
}
t\_m = math.fabs(t)
t\_s = math.copysign(1.0, t)
y\_m = math.fabs(y)
y\_s = math.copysign(1.0, y)
[x, y_m, z, t_m] = sort([x, y_m, z, t_m])
def code(y_s, t_s, x, y_m, z, t_m):
	tmp = 0
	if t_m <= 3e-13:
		tmp = y_m * (t_m * x)
	else:
		tmp = x * (t_m * y_m)
	return y_s * (t_s * tmp)
t\_m = abs(t)
t\_s = copysign(1.0, t)
y\_m = abs(y)
y\_s = copysign(1.0, y)
x, y_m, z, t_m = sort([x, y_m, z, t_m])
function code(y_s, t_s, x, y_m, z, t_m)
	tmp = 0.0
	if (t_m <= 3e-13)
		tmp = Float64(y_m * Float64(t_m * x));
	else
		tmp = Float64(x * Float64(t_m * y_m));
	end
	return Float64(y_s * Float64(t_s * tmp))
end
t\_m = abs(t);
t\_s = sign(t) * abs(1.0);
y\_m = abs(y);
y\_s = sign(y) * abs(1.0);
x, y_m, z, t_m = num2cell(sort([x, y_m, z, t_m])){:}
function tmp_2 = code(y_s, t_s, x, y_m, z, t_m)
	tmp = 0.0;
	if (t_m <= 3e-13)
		tmp = y_m * (t_m * x);
	else
		tmp = x * (t_m * y_m);
	end
	tmp_2 = y_s * (t_s * tmp);
end
t\_m = N[Abs[t], $MachinePrecision]
t\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[t]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
y\_m = N[Abs[y], $MachinePrecision]
y\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[y]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
NOTE: x, y_m, z, and t_m should be sorted in increasing order before calling this function.
code[y$95$s_, t$95$s_, x_, y$95$m_, z_, t$95$m_] := N[(y$95$s * N[(t$95$s * If[LessEqual[t$95$m, 3e-13], N[(y$95$m * N[(t$95$m * x), $MachinePrecision]), $MachinePrecision], N[(x * N[(t$95$m * y$95$m), $MachinePrecision]), $MachinePrecision]]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
t\_m = \left|t\right|
\\
t\_s = \mathsf{copysign}\left(1, t\right)
\\
y\_m = \left|y\right|
\\
y\_s = \mathsf{copysign}\left(1, y\right)
\\
[x, y_m, z, t_m] = \mathsf{sort}([x, y_m, z, t_m])\\
\\
y\_s \cdot \left(t\_s \cdot \begin{array}{l}
\mathbf{if}\;t\_m \leq 3 \cdot 10^{-13}:\\
\;\;\;\;y\_m \cdot \left(t\_m \cdot x\right)\\

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


\end{array}\right)
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if t < 2.99999999999999984e-13

    1. Initial program 87.8%

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

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

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

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

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

        \[\leadsto y \cdot \color{blue}{\left(x \cdot t\right)} \]
      5. lower-*.f6458.3

        \[\leadsto y \cdot \color{blue}{\left(x \cdot t\right)} \]
    5. Applied rewrites58.3%

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

    if 2.99999999999999984e-13 < t

    1. Initial program 95.3%

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

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

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

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

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

        \[\leadsto y \cdot \color{blue}{\left(x \cdot t\right)} \]
      5. lower-*.f6457.1

        \[\leadsto y \cdot \color{blue}{\left(x \cdot t\right)} \]
    5. Applied rewrites57.1%

      \[\leadsto \color{blue}{y \cdot \left(x \cdot t\right)} \]
    6. Step-by-step derivation
      1. Applied rewrites65.4%

        \[\leadsto \left(y \cdot t\right) \cdot \color{blue}{x} \]
    7. Recombined 2 regimes into one program.
    8. Final simplification60.2%

      \[\leadsto \begin{array}{l} \mathbf{if}\;t \leq 3 \cdot 10^{-13}:\\ \;\;\;\;y \cdot \left(t \cdot x\right)\\ \mathbf{else}:\\ \;\;\;\;x \cdot \left(t \cdot y\right)\\ \end{array} \]
    9. Add Preprocessing

    Alternative 7: 97.0% accurate, 1.4× speedup?

    \[\begin{array}{l} t\_m = \left|t\right| \\ t\_s = \mathsf{copysign}\left(1, t\right) \\ y\_m = \left|y\right| \\ y\_s = \mathsf{copysign}\left(1, y\right) \\ [x, y_m, z, t_m] = \mathsf{sort}([x, y_m, z, t_m])\\ \\ y\_s \cdot \left(t\_s \cdot \left(t\_m \cdot \left(\left(x - z\right) \cdot y\_m\right)\right)\right) \end{array} \]
    t\_m = (fabs.f64 t)
    t\_s = (copysign.f64 #s(literal 1 binary64) t)
    y\_m = (fabs.f64 y)
    y\_s = (copysign.f64 #s(literal 1 binary64) y)
    NOTE: x, y_m, z, and t_m should be sorted in increasing order before calling this function.
    (FPCore (y_s t_s x y_m z t_m)
     :precision binary64
     (* y_s (* t_s (* t_m (* (- x z) y_m)))))
    t\_m = fabs(t);
    t\_s = copysign(1.0, t);
    y\_m = fabs(y);
    y\_s = copysign(1.0, y);
    assert(x < y_m && y_m < z && z < t_m);
    double code(double y_s, double t_s, double x, double y_m, double z, double t_m) {
    	return y_s * (t_s * (t_m * ((x - z) * y_m)));
    }
    
    t\_m = abs(t)
    t\_s = copysign(1.0d0, t)
    y\_m = abs(y)
    y\_s = copysign(1.0d0, y)
    NOTE: x, y_m, z, and t_m should be sorted in increasing order before calling this function.
    real(8) function code(y_s, t_s, x, y_m, z, t_m)
        real(8), intent (in) :: y_s
        real(8), intent (in) :: t_s
        real(8), intent (in) :: x
        real(8), intent (in) :: y_m
        real(8), intent (in) :: z
        real(8), intent (in) :: t_m
        code = y_s * (t_s * (t_m * ((x - z) * y_m)))
    end function
    
    t\_m = Math.abs(t);
    t\_s = Math.copySign(1.0, t);
    y\_m = Math.abs(y);
    y\_s = Math.copySign(1.0, y);
    assert x < y_m && y_m < z && z < t_m;
    public static double code(double y_s, double t_s, double x, double y_m, double z, double t_m) {
    	return y_s * (t_s * (t_m * ((x - z) * y_m)));
    }
    
    t\_m = math.fabs(t)
    t\_s = math.copysign(1.0, t)
    y\_m = math.fabs(y)
    y\_s = math.copysign(1.0, y)
    [x, y_m, z, t_m] = sort([x, y_m, z, t_m])
    def code(y_s, t_s, x, y_m, z, t_m):
    	return y_s * (t_s * (t_m * ((x - z) * y_m)))
    
    t\_m = abs(t)
    t\_s = copysign(1.0, t)
    y\_m = abs(y)
    y\_s = copysign(1.0, y)
    x, y_m, z, t_m = sort([x, y_m, z, t_m])
    function code(y_s, t_s, x, y_m, z, t_m)
    	return Float64(y_s * Float64(t_s * Float64(t_m * Float64(Float64(x - z) * y_m))))
    end
    
    t\_m = abs(t);
    t\_s = sign(t) * abs(1.0);
    y\_m = abs(y);
    y\_s = sign(y) * abs(1.0);
    x, y_m, z, t_m = num2cell(sort([x, y_m, z, t_m])){:}
    function tmp = code(y_s, t_s, x, y_m, z, t_m)
    	tmp = y_s * (t_s * (t_m * ((x - z) * y_m)));
    end
    
    t\_m = N[Abs[t], $MachinePrecision]
    t\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[t]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
    y\_m = N[Abs[y], $MachinePrecision]
    y\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[y]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
    NOTE: x, y_m, z, and t_m should be sorted in increasing order before calling this function.
    code[y$95$s_, t$95$s_, x_, y$95$m_, z_, t$95$m_] := N[(y$95$s * N[(t$95$s * N[(t$95$m * N[(N[(x - z), $MachinePrecision] * y$95$m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
    
    \begin{array}{l}
    t\_m = \left|t\right|
    \\
    t\_s = \mathsf{copysign}\left(1, t\right)
    \\
    y\_m = \left|y\right|
    \\
    y\_s = \mathsf{copysign}\left(1, y\right)
    \\
    [x, y_m, z, t_m] = \mathsf{sort}([x, y_m, z, t_m])\\
    \\
    y\_s \cdot \left(t\_s \cdot \left(t\_m \cdot \left(\left(x - z\right) \cdot y\_m\right)\right)\right)
    \end{array}
    
    Derivation
    1. Initial program 89.8%

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

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

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

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

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

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

        \[\leadsto \color{blue}{\left(\left(x - z\right) \cdot y\right)} \cdot t \]
      7. lower--.f6491.8

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

      \[\leadsto \color{blue}{\left(\left(x - z\right) \cdot y\right)} \cdot t \]
    5. Final simplification91.8%

      \[\leadsto t \cdot \left(\left(x - z\right) \cdot y\right) \]
    6. Add Preprocessing

    Alternative 8: 51.1% accurate, 1.7× speedup?

    \[\begin{array}{l} t\_m = \left|t\right| \\ t\_s = \mathsf{copysign}\left(1, t\right) \\ y\_m = \left|y\right| \\ y\_s = \mathsf{copysign}\left(1, y\right) \\ [x, y_m, z, t_m] = \mathsf{sort}([x, y_m, z, t_m])\\ \\ y\_s \cdot \left(t\_s \cdot \left(y\_m \cdot \left(t\_m \cdot x\right)\right)\right) \end{array} \]
    t\_m = (fabs.f64 t)
    t\_s = (copysign.f64 #s(literal 1 binary64) t)
    y\_m = (fabs.f64 y)
    y\_s = (copysign.f64 #s(literal 1 binary64) y)
    NOTE: x, y_m, z, and t_m should be sorted in increasing order before calling this function.
    (FPCore (y_s t_s x y_m z t_m)
     :precision binary64
     (* y_s (* t_s (* y_m (* t_m x)))))
    t\_m = fabs(t);
    t\_s = copysign(1.0, t);
    y\_m = fabs(y);
    y\_s = copysign(1.0, y);
    assert(x < y_m && y_m < z && z < t_m);
    double code(double y_s, double t_s, double x, double y_m, double z, double t_m) {
    	return y_s * (t_s * (y_m * (t_m * x)));
    }
    
    t\_m = abs(t)
    t\_s = copysign(1.0d0, t)
    y\_m = abs(y)
    y\_s = copysign(1.0d0, y)
    NOTE: x, y_m, z, and t_m should be sorted in increasing order before calling this function.
    real(8) function code(y_s, t_s, x, y_m, z, t_m)
        real(8), intent (in) :: y_s
        real(8), intent (in) :: t_s
        real(8), intent (in) :: x
        real(8), intent (in) :: y_m
        real(8), intent (in) :: z
        real(8), intent (in) :: t_m
        code = y_s * (t_s * (y_m * (t_m * x)))
    end function
    
    t\_m = Math.abs(t);
    t\_s = Math.copySign(1.0, t);
    y\_m = Math.abs(y);
    y\_s = Math.copySign(1.0, y);
    assert x < y_m && y_m < z && z < t_m;
    public static double code(double y_s, double t_s, double x, double y_m, double z, double t_m) {
    	return y_s * (t_s * (y_m * (t_m * x)));
    }
    
    t\_m = math.fabs(t)
    t\_s = math.copysign(1.0, t)
    y\_m = math.fabs(y)
    y\_s = math.copysign(1.0, y)
    [x, y_m, z, t_m] = sort([x, y_m, z, t_m])
    def code(y_s, t_s, x, y_m, z, t_m):
    	return y_s * (t_s * (y_m * (t_m * x)))
    
    t\_m = abs(t)
    t\_s = copysign(1.0, t)
    y\_m = abs(y)
    y\_s = copysign(1.0, y)
    x, y_m, z, t_m = sort([x, y_m, z, t_m])
    function code(y_s, t_s, x, y_m, z, t_m)
    	return Float64(y_s * Float64(t_s * Float64(y_m * Float64(t_m * x))))
    end
    
    t\_m = abs(t);
    t\_s = sign(t) * abs(1.0);
    y\_m = abs(y);
    y\_s = sign(y) * abs(1.0);
    x, y_m, z, t_m = num2cell(sort([x, y_m, z, t_m])){:}
    function tmp = code(y_s, t_s, x, y_m, z, t_m)
    	tmp = y_s * (t_s * (y_m * (t_m * x)));
    end
    
    t\_m = N[Abs[t], $MachinePrecision]
    t\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[t]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
    y\_m = N[Abs[y], $MachinePrecision]
    y\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[y]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
    NOTE: x, y_m, z, and t_m should be sorted in increasing order before calling this function.
    code[y$95$s_, t$95$s_, x_, y$95$m_, z_, t$95$m_] := N[(y$95$s * N[(t$95$s * N[(y$95$m * N[(t$95$m * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
    
    \begin{array}{l}
    t\_m = \left|t\right|
    \\
    t\_s = \mathsf{copysign}\left(1, t\right)
    \\
    y\_m = \left|y\right|
    \\
    y\_s = \mathsf{copysign}\left(1, y\right)
    \\
    [x, y_m, z, t_m] = \mathsf{sort}([x, y_m, z, t_m])\\
    \\
    y\_s \cdot \left(t\_s \cdot \left(y\_m \cdot \left(t\_m \cdot x\right)\right)\right)
    \end{array}
    
    Derivation
    1. Initial program 89.8%

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

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

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

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

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

        \[\leadsto y \cdot \color{blue}{\left(x \cdot t\right)} \]
      5. lower-*.f6458.0

        \[\leadsto y \cdot \color{blue}{\left(x \cdot t\right)} \]
    5. Applied rewrites58.0%

      \[\leadsto \color{blue}{y \cdot \left(x \cdot t\right)} \]
    6. Final simplification58.0%

      \[\leadsto y \cdot \left(t \cdot x\right) \]
    7. Add Preprocessing

    Developer Target 1: 95.8% accurate, 0.7× speedup?

    \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;t < -9.231879582886777 \cdot 10^{-80}:\\ \;\;\;\;\left(y \cdot t\right) \cdot \left(x - z\right)\\ \mathbf{elif}\;t < 2.543067051564877 \cdot 10^{+83}:\\ \;\;\;\;y \cdot \left(t \cdot \left(x - z\right)\right)\\ \mathbf{else}:\\ \;\;\;\;\left(y \cdot \left(x - z\right)\right) \cdot t\\ \end{array} \end{array} \]
    (FPCore (x y z t)
     :precision binary64
     (if (< t -9.231879582886777e-80)
       (* (* y t) (- x z))
       (if (< t 2.543067051564877e+83) (* y (* t (- x z))) (* (* y (- x z)) t))))
    double code(double x, double y, double z, double t) {
    	double tmp;
    	if (t < -9.231879582886777e-80) {
    		tmp = (y * t) * (x - z);
    	} else if (t < 2.543067051564877e+83) {
    		tmp = y * (t * (x - z));
    	} else {
    		tmp = (y * (x - z)) * t;
    	}
    	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) :: tmp
        if (t < (-9.231879582886777d-80)) then
            tmp = (y * t) * (x - z)
        else if (t < 2.543067051564877d+83) then
            tmp = y * (t * (x - z))
        else
            tmp = (y * (x - z)) * t
        end if
        code = tmp
    end function
    
    public static double code(double x, double y, double z, double t) {
    	double tmp;
    	if (t < -9.231879582886777e-80) {
    		tmp = (y * t) * (x - z);
    	} else if (t < 2.543067051564877e+83) {
    		tmp = y * (t * (x - z));
    	} else {
    		tmp = (y * (x - z)) * t;
    	}
    	return tmp;
    }
    
    def code(x, y, z, t):
    	tmp = 0
    	if t < -9.231879582886777e-80:
    		tmp = (y * t) * (x - z)
    	elif t < 2.543067051564877e+83:
    		tmp = y * (t * (x - z))
    	else:
    		tmp = (y * (x - z)) * t
    	return tmp
    
    function code(x, y, z, t)
    	tmp = 0.0
    	if (t < -9.231879582886777e-80)
    		tmp = Float64(Float64(y * t) * Float64(x - z));
    	elseif (t < 2.543067051564877e+83)
    		tmp = Float64(y * Float64(t * Float64(x - z)));
    	else
    		tmp = Float64(Float64(y * Float64(x - z)) * t);
    	end
    	return tmp
    end
    
    function tmp_2 = code(x, y, z, t)
    	tmp = 0.0;
    	if (t < -9.231879582886777e-80)
    		tmp = (y * t) * (x - z);
    	elseif (t < 2.543067051564877e+83)
    		tmp = y * (t * (x - z));
    	else
    		tmp = (y * (x - z)) * t;
    	end
    	tmp_2 = tmp;
    end
    
    code[x_, y_, z_, t_] := If[Less[t, -9.231879582886777e-80], N[(N[(y * t), $MachinePrecision] * N[(x - z), $MachinePrecision]), $MachinePrecision], If[Less[t, 2.543067051564877e+83], N[(y * N[(t * N[(x - z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[(y * N[(x - z), $MachinePrecision]), $MachinePrecision] * t), $MachinePrecision]]]
    
    \begin{array}{l}
    
    \\
    \begin{array}{l}
    \mathbf{if}\;t < -9.231879582886777 \cdot 10^{-80}:\\
    \;\;\;\;\left(y \cdot t\right) \cdot \left(x - z\right)\\
    
    \mathbf{elif}\;t < 2.543067051564877 \cdot 10^{+83}:\\
    \;\;\;\;y \cdot \left(t \cdot \left(x - z\right)\right)\\
    
    \mathbf{else}:\\
    \;\;\;\;\left(y \cdot \left(x - z\right)\right) \cdot t\\
    
    
    \end{array}
    \end{array}
    

    Reproduce

    ?
    herbie shell --seed 2024233 
    (FPCore (x y z t)
      :name "Linear.Projection:inverseInfinitePerspective from linear-1.19.1.3"
      :precision binary64
    
      :alt
      (! :herbie-platform default (if (< t -9231879582886777/100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) (* (* y t) (- x z)) (if (< t 254306705156487700000000000000000000000000000000000000000000000000000000000000000000) (* y (* t (- x z))) (* (* y (- x z)) t))))
    
      (* (- (* x y) (* z y)) t))