Graphics.Rendering.Plot.Render.Plot.Axis:renderAxisLine from plot-0.2.3.4, B

Percentage Accurate: 98.0% → 96.9%
Time: 6.8s
Alternatives: 16
Speedup: 1.1×

Specification

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

\\
x + y \cdot \frac{z - t}{a - 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 16 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: 98.0% accurate, 1.0× speedup?

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

\\
x + y \cdot \frac{z - t}{a - t}
\end{array}

Alternative 1: 96.9% accurate, 0.3× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_1 := \frac{z - t}{a - t}\\ t_2 := \mathsf{fma}\left(\frac{y}{t - a}, -z, x\right)\\ \mathbf{if}\;t\_1 \leq -500000:\\ \;\;\;\;t\_2\\ \mathbf{elif}\;t\_1 \leq 10^{-17}:\\ \;\;\;\;\mathsf{fma}\left(\frac{z - t}{a}, y, x\right)\\ \mathbf{elif}\;t\_1 \leq 2:\\ \;\;\;\;\mathsf{fma}\left(1 - \frac{z}{t}, y, x\right)\\ \mathbf{else}:\\ \;\;\;\;t\_2\\ \end{array} \end{array} \]
(FPCore (x y z t a)
 :precision binary64
 (let* ((t_1 (/ (- z t) (- a t))) (t_2 (fma (/ y (- t a)) (- z) x)))
   (if (<= t_1 -500000.0)
     t_2
     (if (<= t_1 1e-17)
       (fma (/ (- z t) a) y x)
       (if (<= t_1 2.0) (fma (- 1.0 (/ z t)) y x) t_2)))))
double code(double x, double y, double z, double t, double a) {
	double t_1 = (z - t) / (a - t);
	double t_2 = fma((y / (t - a)), -z, x);
	double tmp;
	if (t_1 <= -500000.0) {
		tmp = t_2;
	} else if (t_1 <= 1e-17) {
		tmp = fma(((z - t) / a), y, x);
	} else if (t_1 <= 2.0) {
		tmp = fma((1.0 - (z / t)), y, x);
	} else {
		tmp = t_2;
	}
	return tmp;
}
function code(x, y, z, t, a)
	t_1 = Float64(Float64(z - t) / Float64(a - t))
	t_2 = fma(Float64(y / Float64(t - a)), Float64(-z), x)
	tmp = 0.0
	if (t_1 <= -500000.0)
		tmp = t_2;
	elseif (t_1 <= 1e-17)
		tmp = fma(Float64(Float64(z - t) / a), y, x);
	elseif (t_1 <= 2.0)
		tmp = fma(Float64(1.0 - Float64(z / t)), y, x);
	else
		tmp = t_2;
	end
	return tmp
end
code[x_, y_, z_, t_, a_] := Block[{t$95$1 = N[(N[(z - t), $MachinePrecision] / N[(a - t), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$2 = N[(N[(y / N[(t - a), $MachinePrecision]), $MachinePrecision] * (-z) + x), $MachinePrecision]}, If[LessEqual[t$95$1, -500000.0], t$95$2, If[LessEqual[t$95$1, 1e-17], N[(N[(N[(z - t), $MachinePrecision] / a), $MachinePrecision] * y + x), $MachinePrecision], If[LessEqual[t$95$1, 2.0], N[(N[(1.0 - N[(z / t), $MachinePrecision]), $MachinePrecision] * y + x), $MachinePrecision], t$95$2]]]]]
\begin{array}{l}

\\
\begin{array}{l}
t_1 := \frac{z - t}{a - t}\\
t_2 := \mathsf{fma}\left(\frac{y}{t - a}, -z, x\right)\\
\mathbf{if}\;t\_1 \leq -500000:\\
\;\;\;\;t\_2\\

\mathbf{elif}\;t\_1 \leq 10^{-17}:\\
\;\;\;\;\mathsf{fma}\left(\frac{z - t}{a}, y, x\right)\\

\mathbf{elif}\;t\_1 \leq 2:\\
\;\;\;\;\mathsf{fma}\left(1 - \frac{z}{t}, y, x\right)\\

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


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if (/.f64 (-.f64 z t) (-.f64 a t)) < -5e5 or 2 < (/.f64 (-.f64 z t) (-.f64 a t))

    1. Initial program 95.8%

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

        \[\leadsto \color{blue}{x + y \cdot \frac{z - t}{a - t}} \]
      2. +-commutativeN/A

        \[\leadsto \color{blue}{y \cdot \frac{z - t}{a - t} + x} \]
      3. lift-*.f64N/A

        \[\leadsto \color{blue}{y \cdot \frac{z - t}{a - t}} + x \]
      4. lift-/.f64N/A

        \[\leadsto y \cdot \color{blue}{\frac{z - t}{a - t}} + x \]
      5. clear-numN/A

        \[\leadsto y \cdot \color{blue}{\frac{1}{\frac{a - t}{z - t}}} + x \]
      6. un-div-invN/A

        \[\leadsto \color{blue}{\frac{y}{\frac{a - t}{z - t}}} + x \]
      7. frac-2negN/A

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

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

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

      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{y}{t - a}, t - z, x\right)} \]
    5. Taylor expanded in z around inf

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

        \[\leadsto \mathsf{fma}\left(\frac{y}{t - a}, \color{blue}{\mathsf{neg}\left(z\right)}, x\right) \]
      2. lower-neg.f6495.9

        \[\leadsto \mathsf{fma}\left(\frac{y}{t - a}, \color{blue}{-z}, x\right) \]
    7. Applied rewrites95.9%

      \[\leadsto \mathsf{fma}\left(\frac{y}{t - a}, \color{blue}{-z}, x\right) \]

    if -5e5 < (/.f64 (-.f64 z t) (-.f64 a t)) < 1.00000000000000007e-17

    1. Initial program 99.9%

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

        \[\leadsto \color{blue}{x + y \cdot \frac{z - t}{a - t}} \]
      2. +-commutativeN/A

        \[\leadsto \color{blue}{y \cdot \frac{z - t}{a - t} + x} \]
      3. lift-*.f64N/A

        \[\leadsto \color{blue}{y \cdot \frac{z - t}{a - t}} + x \]
      4. *-commutativeN/A

        \[\leadsto \color{blue}{\frac{z - t}{a - t} \cdot y} + x \]
      5. lower-fma.f6499.9

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

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{z - t}{a - t}}, y, x\right) \]
      7. frac-2negN/A

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

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{\mathsf{neg}\left(\left(z - t\right)\right)}{\mathsf{neg}\left(\left(a - t\right)\right)}}, y, x\right) \]
      9. neg-sub0N/A

        \[\leadsto \mathsf{fma}\left(\frac{\color{blue}{0 - \left(z - t\right)}}{\mathsf{neg}\left(\left(a - t\right)\right)}, y, x\right) \]
      10. lift--.f64N/A

        \[\leadsto \mathsf{fma}\left(\frac{0 - \color{blue}{\left(z - t\right)}}{\mathsf{neg}\left(\left(a - t\right)\right)}, y, x\right) \]
      11. sub-negN/A

        \[\leadsto \mathsf{fma}\left(\frac{0 - \color{blue}{\left(z + \left(\mathsf{neg}\left(t\right)\right)\right)}}{\mathsf{neg}\left(\left(a - t\right)\right)}, y, x\right) \]
      12. +-commutativeN/A

        \[\leadsto \mathsf{fma}\left(\frac{0 - \color{blue}{\left(\left(\mathsf{neg}\left(t\right)\right) + z\right)}}{\mathsf{neg}\left(\left(a - t\right)\right)}, y, x\right) \]
      13. associate--r+N/A

        \[\leadsto \mathsf{fma}\left(\frac{\color{blue}{\left(0 - \left(\mathsf{neg}\left(t\right)\right)\right) - z}}{\mathsf{neg}\left(\left(a - t\right)\right)}, y, x\right) \]
      14. neg-sub0N/A

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

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

        \[\leadsto \mathsf{fma}\left(\frac{\color{blue}{t - z}}{\mathsf{neg}\left(\left(a - t\right)\right)}, y, x\right) \]
      17. neg-sub0N/A

        \[\leadsto \mathsf{fma}\left(\frac{t - z}{\color{blue}{0 - \left(a - t\right)}}, y, x\right) \]
      18. lift--.f64N/A

        \[\leadsto \mathsf{fma}\left(\frac{t - z}{0 - \color{blue}{\left(a - t\right)}}, y, x\right) \]
      19. sub-negN/A

        \[\leadsto \mathsf{fma}\left(\frac{t - z}{0 - \color{blue}{\left(a + \left(\mathsf{neg}\left(t\right)\right)\right)}}, y, x\right) \]
      20. +-commutativeN/A

        \[\leadsto \mathsf{fma}\left(\frac{t - z}{0 - \color{blue}{\left(\left(\mathsf{neg}\left(t\right)\right) + a\right)}}, y, x\right) \]
      21. associate--r+N/A

        \[\leadsto \mathsf{fma}\left(\frac{t - z}{\color{blue}{\left(0 - \left(\mathsf{neg}\left(t\right)\right)\right) - a}}, y, x\right) \]
      22. neg-sub0N/A

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

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

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

      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{t - z}{t - a}, y, x\right)} \]
    5. Taylor expanded in a around inf

      \[\leadsto \mathsf{fma}\left(\color{blue}{-1 \cdot \frac{t - z}{a}}, y, x\right) \]
    6. Step-by-step derivation
      1. associate-*r/N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{-1 \cdot \left(t - z\right)}{a}}, y, x\right) \]
      2. mul-1-negN/A

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

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

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

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

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

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

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

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

      \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{z - t}{a}}, y, x\right) \]

    if 1.00000000000000007e-17 < (/.f64 (-.f64 z t) (-.f64 a t)) < 2

    1. Initial program 100.0%

      \[x + y \cdot \frac{z - t}{a - t} \]
    2. Add Preprocessing
    3. Taylor expanded in a around 0

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        \[\leadsto \color{blue}{\mathsf{fma}\left(1 + -1 \cdot \frac{z}{t}, y, x\right)} \]
      15. mul-1-negN/A

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

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

        \[\leadsto \mathsf{fma}\left(\color{blue}{1 - \frac{z}{t}}, y, x\right) \]
      18. lower-/.f64100.0

        \[\leadsto \mathsf{fma}\left(1 - \color{blue}{\frac{z}{t}}, y, x\right) \]
    5. Applied rewrites100.0%

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

Alternative 2: 87.7% accurate, 0.2× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_1 := \mathsf{fma}\left(\frac{z - t}{a}, y, x\right)\\ t_2 := \frac{z - t}{a - t}\\ \mathbf{if}\;t\_2 \leq -500000:\\ \;\;\;\;\frac{y}{a - t} \cdot \left(z - t\right)\\ \mathbf{elif}\;t\_2 \leq 10^{-17}:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;t\_2 \leq 2:\\ \;\;\;\;\mathsf{fma}\left(1 - \frac{z}{t}, y, x\right)\\ \mathbf{elif}\;t\_2 \leq 10^{+136}:\\ \;\;\;\;t\_1\\ \mathbf{else}:\\ \;\;\;\;\frac{y \cdot z}{a - t}\\ \end{array} \end{array} \]
(FPCore (x y z t a)
 :precision binary64
 (let* ((t_1 (fma (/ (- z t) a) y x)) (t_2 (/ (- z t) (- a t))))
   (if (<= t_2 -500000.0)
     (* (/ y (- a t)) (- z t))
     (if (<= t_2 1e-17)
       t_1
       (if (<= t_2 2.0)
         (fma (- 1.0 (/ z t)) y x)
         (if (<= t_2 1e+136) t_1 (/ (* y z) (- a t))))))))
double code(double x, double y, double z, double t, double a) {
	double t_1 = fma(((z - t) / a), y, x);
	double t_2 = (z - t) / (a - t);
	double tmp;
	if (t_2 <= -500000.0) {
		tmp = (y / (a - t)) * (z - t);
	} else if (t_2 <= 1e-17) {
		tmp = t_1;
	} else if (t_2 <= 2.0) {
		tmp = fma((1.0 - (z / t)), y, x);
	} else if (t_2 <= 1e+136) {
		tmp = t_1;
	} else {
		tmp = (y * z) / (a - t);
	}
	return tmp;
}
function code(x, y, z, t, a)
	t_1 = fma(Float64(Float64(z - t) / a), y, x)
	t_2 = Float64(Float64(z - t) / Float64(a - t))
	tmp = 0.0
	if (t_2 <= -500000.0)
		tmp = Float64(Float64(y / Float64(a - t)) * Float64(z - t));
	elseif (t_2 <= 1e-17)
		tmp = t_1;
	elseif (t_2 <= 2.0)
		tmp = fma(Float64(1.0 - Float64(z / t)), y, x);
	elseif (t_2 <= 1e+136)
		tmp = t_1;
	else
		tmp = Float64(Float64(y * z) / Float64(a - t));
	end
	return tmp
end
code[x_, y_, z_, t_, a_] := Block[{t$95$1 = N[(N[(N[(z - t), $MachinePrecision] / a), $MachinePrecision] * y + x), $MachinePrecision]}, Block[{t$95$2 = N[(N[(z - t), $MachinePrecision] / N[(a - t), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$2, -500000.0], N[(N[(y / N[(a - t), $MachinePrecision]), $MachinePrecision] * N[(z - t), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$2, 1e-17], t$95$1, If[LessEqual[t$95$2, 2.0], N[(N[(1.0 - N[(z / t), $MachinePrecision]), $MachinePrecision] * y + x), $MachinePrecision], If[LessEqual[t$95$2, 1e+136], t$95$1, N[(N[(y * z), $MachinePrecision] / N[(a - t), $MachinePrecision]), $MachinePrecision]]]]]]]
\begin{array}{l}

\\
\begin{array}{l}
t_1 := \mathsf{fma}\left(\frac{z - t}{a}, y, x\right)\\
t_2 := \frac{z - t}{a - t}\\
\mathbf{if}\;t\_2 \leq -500000:\\
\;\;\;\;\frac{y}{a - t} \cdot \left(z - t\right)\\

\mathbf{elif}\;t\_2 \leq 10^{-17}:\\
\;\;\;\;t\_1\\

\mathbf{elif}\;t\_2 \leq 2:\\
\;\;\;\;\mathsf{fma}\left(1 - \frac{z}{t}, y, x\right)\\

\mathbf{elif}\;t\_2 \leq 10^{+136}:\\
\;\;\;\;t\_1\\

\mathbf{else}:\\
\;\;\;\;\frac{y \cdot z}{a - t}\\


\end{array}
\end{array}
Derivation
  1. Split input into 4 regimes
  2. if (/.f64 (-.f64 z t) (-.f64 a t)) < -5e5

    1. Initial program 93.0%

      \[x + y \cdot \frac{z - t}{a - t} \]
    2. Add Preprocessing
    3. Taylor expanded in x around 0

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

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

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

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

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

        \[\leadsto \left(z - t\right) \cdot \color{blue}{\frac{y}{a - t}} \]
      6. lower--.f6479.0

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

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

    if -5e5 < (/.f64 (-.f64 z t) (-.f64 a t)) < 1.00000000000000007e-17 or 2 < (/.f64 (-.f64 z t) (-.f64 a t)) < 1.00000000000000006e136

    1. Initial program 99.9%

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

        \[\leadsto \color{blue}{x + y \cdot \frac{z - t}{a - t}} \]
      2. +-commutativeN/A

        \[\leadsto \color{blue}{y \cdot \frac{z - t}{a - t} + x} \]
      3. lift-*.f64N/A

        \[\leadsto \color{blue}{y \cdot \frac{z - t}{a - t}} + x \]
      4. *-commutativeN/A

        \[\leadsto \color{blue}{\frac{z - t}{a - t} \cdot y} + x \]
      5. lower-fma.f6499.9

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

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{z - t}{a - t}}, y, x\right) \]
      7. frac-2negN/A

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

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{\mathsf{neg}\left(\left(z - t\right)\right)}{\mathsf{neg}\left(\left(a - t\right)\right)}}, y, x\right) \]
      9. neg-sub0N/A

        \[\leadsto \mathsf{fma}\left(\frac{\color{blue}{0 - \left(z - t\right)}}{\mathsf{neg}\left(\left(a - t\right)\right)}, y, x\right) \]
      10. lift--.f64N/A

        \[\leadsto \mathsf{fma}\left(\frac{0 - \color{blue}{\left(z - t\right)}}{\mathsf{neg}\left(\left(a - t\right)\right)}, y, x\right) \]
      11. sub-negN/A

        \[\leadsto \mathsf{fma}\left(\frac{0 - \color{blue}{\left(z + \left(\mathsf{neg}\left(t\right)\right)\right)}}{\mathsf{neg}\left(\left(a - t\right)\right)}, y, x\right) \]
      12. +-commutativeN/A

        \[\leadsto \mathsf{fma}\left(\frac{0 - \color{blue}{\left(\left(\mathsf{neg}\left(t\right)\right) + z\right)}}{\mathsf{neg}\left(\left(a - t\right)\right)}, y, x\right) \]
      13. associate--r+N/A

        \[\leadsto \mathsf{fma}\left(\frac{\color{blue}{\left(0 - \left(\mathsf{neg}\left(t\right)\right)\right) - z}}{\mathsf{neg}\left(\left(a - t\right)\right)}, y, x\right) \]
      14. neg-sub0N/A

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

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

        \[\leadsto \mathsf{fma}\left(\frac{\color{blue}{t - z}}{\mathsf{neg}\left(\left(a - t\right)\right)}, y, x\right) \]
      17. neg-sub0N/A

        \[\leadsto \mathsf{fma}\left(\frac{t - z}{\color{blue}{0 - \left(a - t\right)}}, y, x\right) \]
      18. lift--.f64N/A

        \[\leadsto \mathsf{fma}\left(\frac{t - z}{0 - \color{blue}{\left(a - t\right)}}, y, x\right) \]
      19. sub-negN/A

        \[\leadsto \mathsf{fma}\left(\frac{t - z}{0 - \color{blue}{\left(a + \left(\mathsf{neg}\left(t\right)\right)\right)}}, y, x\right) \]
      20. +-commutativeN/A

        \[\leadsto \mathsf{fma}\left(\frac{t - z}{0 - \color{blue}{\left(\left(\mathsf{neg}\left(t\right)\right) + a\right)}}, y, x\right) \]
      21. associate--r+N/A

        \[\leadsto \mathsf{fma}\left(\frac{t - z}{\color{blue}{\left(0 - \left(\mathsf{neg}\left(t\right)\right)\right) - a}}, y, x\right) \]
      22. neg-sub0N/A

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

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

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

      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{t - z}{t - a}, y, x\right)} \]
    5. Taylor expanded in a around inf

      \[\leadsto \mathsf{fma}\left(\color{blue}{-1 \cdot \frac{t - z}{a}}, y, x\right) \]
    6. Step-by-step derivation
      1. associate-*r/N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{-1 \cdot \left(t - z\right)}{a}}, y, x\right) \]
      2. mul-1-negN/A

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

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

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

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

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

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

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{z - t}{a}}, y, x\right) \]
      9. lower--.f6493.0

        \[\leadsto \mathsf{fma}\left(\frac{\color{blue}{z - t}}{a}, y, x\right) \]
    7. Applied rewrites93.0%

      \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{z - t}{a}}, y, x\right) \]

    if 1.00000000000000007e-17 < (/.f64 (-.f64 z t) (-.f64 a t)) < 2

    1. Initial program 100.0%

      \[x + y \cdot \frac{z - t}{a - t} \]
    2. Add Preprocessing
    3. Taylor expanded in a around 0

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        \[\leadsto \color{blue}{\mathsf{fma}\left(1 + -1 \cdot \frac{z}{t}, y, x\right)} \]
      15. mul-1-negN/A

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

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

        \[\leadsto \mathsf{fma}\left(\color{blue}{1 - \frac{z}{t}}, y, x\right) \]
      18. lower-/.f64100.0

        \[\leadsto \mathsf{fma}\left(1 - \color{blue}{\frac{z}{t}}, y, x\right) \]
    5. Applied rewrites100.0%

      \[\leadsto \color{blue}{\mathsf{fma}\left(1 - \frac{z}{t}, y, x\right)} \]

    if 1.00000000000000006e136 < (/.f64 (-.f64 z t) (-.f64 a t))

    1. Initial program 95.0%

      \[x + y \cdot \frac{z - t}{a - t} \]
    2. Add Preprocessing
    3. Taylor expanded in t around inf

      \[\leadsto \color{blue}{x + y} \]
    4. Step-by-step derivation
      1. +-commutativeN/A

        \[\leadsto \color{blue}{y + x} \]
      2. lower-+.f6415.3

        \[\leadsto \color{blue}{y + x} \]
    5. Applied rewrites15.3%

      \[\leadsto \color{blue}{y + x} \]
    6. Taylor expanded in z around inf

      \[\leadsto \color{blue}{\frac{y \cdot z}{a - t}} \]
    7. Step-by-step derivation
      1. associate-*l/N/A

        \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
      2. lower-*.f64N/A

        \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
      3. lower-/.f64N/A

        \[\leadsto \color{blue}{\frac{y}{a - t}} \cdot z \]
      4. lower--.f6480.1

        \[\leadsto \frac{y}{\color{blue}{a - t}} \cdot z \]
    8. Applied rewrites80.1%

      \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
    9. Step-by-step derivation
      1. Applied rewrites84.5%

        \[\leadsto \frac{z \cdot y}{\color{blue}{a - t}} \]
    10. Recombined 4 regimes into one program.
    11. Final simplification91.9%

      \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{z - t}{a - t} \leq -500000:\\ \;\;\;\;\frac{y}{a - t} \cdot \left(z - t\right)\\ \mathbf{elif}\;\frac{z - t}{a - t} \leq 10^{-17}:\\ \;\;\;\;\mathsf{fma}\left(\frac{z - t}{a}, y, x\right)\\ \mathbf{elif}\;\frac{z - t}{a - t} \leq 2:\\ \;\;\;\;\mathsf{fma}\left(1 - \frac{z}{t}, y, x\right)\\ \mathbf{elif}\;\frac{z - t}{a - t} \leq 10^{+136}:\\ \;\;\;\;\mathsf{fma}\left(\frac{z - t}{a}, y, x\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{y \cdot z}{a - t}\\ \end{array} \]
    12. Add Preprocessing

    Alternative 3: 87.7% accurate, 0.2× speedup?

    \[\begin{array}{l} \\ \begin{array}{l} t_1 := \mathsf{fma}\left(\frac{z - t}{a}, y, x\right)\\ t_2 := \frac{z - t}{a - t}\\ \mathbf{if}\;t\_2 \leq -500000:\\ \;\;\;\;\frac{y}{a - t} \cdot z\\ \mathbf{elif}\;t\_2 \leq 10^{-17}:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;t\_2 \leq 2:\\ \;\;\;\;\mathsf{fma}\left(1 - \frac{z}{t}, y, x\right)\\ \mathbf{elif}\;t\_2 \leq 10^{+136}:\\ \;\;\;\;t\_1\\ \mathbf{else}:\\ \;\;\;\;\frac{y \cdot z}{a - t}\\ \end{array} \end{array} \]
    (FPCore (x y z t a)
     :precision binary64
     (let* ((t_1 (fma (/ (- z t) a) y x)) (t_2 (/ (- z t) (- a t))))
       (if (<= t_2 -500000.0)
         (* (/ y (- a t)) z)
         (if (<= t_2 1e-17)
           t_1
           (if (<= t_2 2.0)
             (fma (- 1.0 (/ z t)) y x)
             (if (<= t_2 1e+136) t_1 (/ (* y z) (- a t))))))))
    double code(double x, double y, double z, double t, double a) {
    	double t_1 = fma(((z - t) / a), y, x);
    	double t_2 = (z - t) / (a - t);
    	double tmp;
    	if (t_2 <= -500000.0) {
    		tmp = (y / (a - t)) * z;
    	} else if (t_2 <= 1e-17) {
    		tmp = t_1;
    	} else if (t_2 <= 2.0) {
    		tmp = fma((1.0 - (z / t)), y, x);
    	} else if (t_2 <= 1e+136) {
    		tmp = t_1;
    	} else {
    		tmp = (y * z) / (a - t);
    	}
    	return tmp;
    }
    
    function code(x, y, z, t, a)
    	t_1 = fma(Float64(Float64(z - t) / a), y, x)
    	t_2 = Float64(Float64(z - t) / Float64(a - t))
    	tmp = 0.0
    	if (t_2 <= -500000.0)
    		tmp = Float64(Float64(y / Float64(a - t)) * z);
    	elseif (t_2 <= 1e-17)
    		tmp = t_1;
    	elseif (t_2 <= 2.0)
    		tmp = fma(Float64(1.0 - Float64(z / t)), y, x);
    	elseif (t_2 <= 1e+136)
    		tmp = t_1;
    	else
    		tmp = Float64(Float64(y * z) / Float64(a - t));
    	end
    	return tmp
    end
    
    code[x_, y_, z_, t_, a_] := Block[{t$95$1 = N[(N[(N[(z - t), $MachinePrecision] / a), $MachinePrecision] * y + x), $MachinePrecision]}, Block[{t$95$2 = N[(N[(z - t), $MachinePrecision] / N[(a - t), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$2, -500000.0], N[(N[(y / N[(a - t), $MachinePrecision]), $MachinePrecision] * z), $MachinePrecision], If[LessEqual[t$95$2, 1e-17], t$95$1, If[LessEqual[t$95$2, 2.0], N[(N[(1.0 - N[(z / t), $MachinePrecision]), $MachinePrecision] * y + x), $MachinePrecision], If[LessEqual[t$95$2, 1e+136], t$95$1, N[(N[(y * z), $MachinePrecision] / N[(a - t), $MachinePrecision]), $MachinePrecision]]]]]]]
    
    \begin{array}{l}
    
    \\
    \begin{array}{l}
    t_1 := \mathsf{fma}\left(\frac{z - t}{a}, y, x\right)\\
    t_2 := \frac{z - t}{a - t}\\
    \mathbf{if}\;t\_2 \leq -500000:\\
    \;\;\;\;\frac{y}{a - t} \cdot z\\
    
    \mathbf{elif}\;t\_2 \leq 10^{-17}:\\
    \;\;\;\;t\_1\\
    
    \mathbf{elif}\;t\_2 \leq 2:\\
    \;\;\;\;\mathsf{fma}\left(1 - \frac{z}{t}, y, x\right)\\
    
    \mathbf{elif}\;t\_2 \leq 10^{+136}:\\
    \;\;\;\;t\_1\\
    
    \mathbf{else}:\\
    \;\;\;\;\frac{y \cdot z}{a - t}\\
    
    
    \end{array}
    \end{array}
    
    Derivation
    1. Split input into 4 regimes
    2. if (/.f64 (-.f64 z t) (-.f64 a t)) < -5e5

      1. Initial program 93.0%

        \[x + y \cdot \frac{z - t}{a - t} \]
      2. Add Preprocessing
      3. Taylor expanded in t around inf

        \[\leadsto \color{blue}{x + y} \]
      4. Step-by-step derivation
        1. +-commutativeN/A

          \[\leadsto \color{blue}{y + x} \]
        2. lower-+.f6419.3

          \[\leadsto \color{blue}{y + x} \]
      5. Applied rewrites19.3%

        \[\leadsto \color{blue}{y + x} \]
      6. Taylor expanded in z around inf

        \[\leadsto \color{blue}{\frac{y \cdot z}{a - t}} \]
      7. Step-by-step derivation
        1. associate-*l/N/A

          \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
        2. lower-*.f64N/A

          \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
        3. lower-/.f64N/A

          \[\leadsto \color{blue}{\frac{y}{a - t}} \cdot z \]
        4. lower--.f6478.7

          \[\leadsto \frac{y}{\color{blue}{a - t}} \cdot z \]
      8. Applied rewrites78.7%

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

      if -5e5 < (/.f64 (-.f64 z t) (-.f64 a t)) < 1.00000000000000007e-17 or 2 < (/.f64 (-.f64 z t) (-.f64 a t)) < 1.00000000000000006e136

      1. Initial program 99.9%

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

          \[\leadsto \color{blue}{x + y \cdot \frac{z - t}{a - t}} \]
        2. +-commutativeN/A

          \[\leadsto \color{blue}{y \cdot \frac{z - t}{a - t} + x} \]
        3. lift-*.f64N/A

          \[\leadsto \color{blue}{y \cdot \frac{z - t}{a - t}} + x \]
        4. *-commutativeN/A

          \[\leadsto \color{blue}{\frac{z - t}{a - t} \cdot y} + x \]
        5. lower-fma.f6499.9

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

          \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{z - t}{a - t}}, y, x\right) \]
        7. frac-2negN/A

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

          \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{\mathsf{neg}\left(\left(z - t\right)\right)}{\mathsf{neg}\left(\left(a - t\right)\right)}}, y, x\right) \]
        9. neg-sub0N/A

          \[\leadsto \mathsf{fma}\left(\frac{\color{blue}{0 - \left(z - t\right)}}{\mathsf{neg}\left(\left(a - t\right)\right)}, y, x\right) \]
        10. lift--.f64N/A

          \[\leadsto \mathsf{fma}\left(\frac{0 - \color{blue}{\left(z - t\right)}}{\mathsf{neg}\left(\left(a - t\right)\right)}, y, x\right) \]
        11. sub-negN/A

          \[\leadsto \mathsf{fma}\left(\frac{0 - \color{blue}{\left(z + \left(\mathsf{neg}\left(t\right)\right)\right)}}{\mathsf{neg}\left(\left(a - t\right)\right)}, y, x\right) \]
        12. +-commutativeN/A

          \[\leadsto \mathsf{fma}\left(\frac{0 - \color{blue}{\left(\left(\mathsf{neg}\left(t\right)\right) + z\right)}}{\mathsf{neg}\left(\left(a - t\right)\right)}, y, x\right) \]
        13. associate--r+N/A

          \[\leadsto \mathsf{fma}\left(\frac{\color{blue}{\left(0 - \left(\mathsf{neg}\left(t\right)\right)\right) - z}}{\mathsf{neg}\left(\left(a - t\right)\right)}, y, x\right) \]
        14. neg-sub0N/A

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

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

          \[\leadsto \mathsf{fma}\left(\frac{\color{blue}{t - z}}{\mathsf{neg}\left(\left(a - t\right)\right)}, y, x\right) \]
        17. neg-sub0N/A

          \[\leadsto \mathsf{fma}\left(\frac{t - z}{\color{blue}{0 - \left(a - t\right)}}, y, x\right) \]
        18. lift--.f64N/A

          \[\leadsto \mathsf{fma}\left(\frac{t - z}{0 - \color{blue}{\left(a - t\right)}}, y, x\right) \]
        19. sub-negN/A

          \[\leadsto \mathsf{fma}\left(\frac{t - z}{0 - \color{blue}{\left(a + \left(\mathsf{neg}\left(t\right)\right)\right)}}, y, x\right) \]
        20. +-commutativeN/A

          \[\leadsto \mathsf{fma}\left(\frac{t - z}{0 - \color{blue}{\left(\left(\mathsf{neg}\left(t\right)\right) + a\right)}}, y, x\right) \]
        21. associate--r+N/A

          \[\leadsto \mathsf{fma}\left(\frac{t - z}{\color{blue}{\left(0 - \left(\mathsf{neg}\left(t\right)\right)\right) - a}}, y, x\right) \]
        22. neg-sub0N/A

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

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

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

        \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{t - z}{t - a}, y, x\right)} \]
      5. Taylor expanded in a around inf

        \[\leadsto \mathsf{fma}\left(\color{blue}{-1 \cdot \frac{t - z}{a}}, y, x\right) \]
      6. Step-by-step derivation
        1. associate-*r/N/A

          \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{-1 \cdot \left(t - z\right)}{a}}, y, x\right) \]
        2. mul-1-negN/A

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

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

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

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

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

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

          \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{z - t}{a}}, y, x\right) \]
        9. lower--.f6493.0

          \[\leadsto \mathsf{fma}\left(\frac{\color{blue}{z - t}}{a}, y, x\right) \]
      7. Applied rewrites93.0%

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{z - t}{a}}, y, x\right) \]

      if 1.00000000000000007e-17 < (/.f64 (-.f64 z t) (-.f64 a t)) < 2

      1. Initial program 100.0%

        \[x + y \cdot \frac{z - t}{a - t} \]
      2. Add Preprocessing
      3. Taylor expanded in a around 0

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          \[\leadsto \color{blue}{\mathsf{fma}\left(1 + -1 \cdot \frac{z}{t}, y, x\right)} \]
        15. mul-1-negN/A

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

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

          \[\leadsto \mathsf{fma}\left(\color{blue}{1 - \frac{z}{t}}, y, x\right) \]
        18. lower-/.f64100.0

          \[\leadsto \mathsf{fma}\left(1 - \color{blue}{\frac{z}{t}}, y, x\right) \]
      5. Applied rewrites100.0%

        \[\leadsto \color{blue}{\mathsf{fma}\left(1 - \frac{z}{t}, y, x\right)} \]

      if 1.00000000000000006e136 < (/.f64 (-.f64 z t) (-.f64 a t))

      1. Initial program 95.0%

        \[x + y \cdot \frac{z - t}{a - t} \]
      2. Add Preprocessing
      3. Taylor expanded in t around inf

        \[\leadsto \color{blue}{x + y} \]
      4. Step-by-step derivation
        1. +-commutativeN/A

          \[\leadsto \color{blue}{y + x} \]
        2. lower-+.f6415.3

          \[\leadsto \color{blue}{y + x} \]
      5. Applied rewrites15.3%

        \[\leadsto \color{blue}{y + x} \]
      6. Taylor expanded in z around inf

        \[\leadsto \color{blue}{\frac{y \cdot z}{a - t}} \]
      7. Step-by-step derivation
        1. associate-*l/N/A

          \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
        2. lower-*.f64N/A

          \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
        3. lower-/.f64N/A

          \[\leadsto \color{blue}{\frac{y}{a - t}} \cdot z \]
        4. lower--.f6480.1

          \[\leadsto \frac{y}{\color{blue}{a - t}} \cdot z \]
      8. Applied rewrites80.1%

        \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
      9. Step-by-step derivation
        1. Applied rewrites84.5%

          \[\leadsto \frac{z \cdot y}{\color{blue}{a - t}} \]
      10. Recombined 4 regimes into one program.
      11. Final simplification91.8%

        \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{z - t}{a - t} \leq -500000:\\ \;\;\;\;\frac{y}{a - t} \cdot z\\ \mathbf{elif}\;\frac{z - t}{a - t} \leq 10^{-17}:\\ \;\;\;\;\mathsf{fma}\left(\frac{z - t}{a}, y, x\right)\\ \mathbf{elif}\;\frac{z - t}{a - t} \leq 2:\\ \;\;\;\;\mathsf{fma}\left(1 - \frac{z}{t}, y, x\right)\\ \mathbf{elif}\;\frac{z - t}{a - t} \leq 10^{+136}:\\ \;\;\;\;\mathsf{fma}\left(\frac{z - t}{a}, y, x\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{y \cdot z}{a - t}\\ \end{array} \]
      12. Add Preprocessing

      Alternative 4: 87.3% accurate, 0.2× speedup?

      \[\begin{array}{l} \\ \begin{array}{l} t_1 := \frac{z - t}{a - t}\\ \mathbf{if}\;t\_1 \leq -50000000000:\\ \;\;\;\;\frac{y}{a - t} \cdot z\\ \mathbf{elif}\;t\_1 \leq 10^{-17}:\\ \;\;\;\;\mathsf{fma}\left(z - t, \frac{y}{a}, x\right)\\ \mathbf{elif}\;t\_1 \leq 2:\\ \;\;\;\;\mathsf{fma}\left(1 - \frac{z}{t}, y, x\right)\\ \mathbf{elif}\;t\_1 \leq 10^{+136}:\\ \;\;\;\;\mathsf{fma}\left(\frac{z}{a}, y, x\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{y \cdot z}{a - t}\\ \end{array} \end{array} \]
      (FPCore (x y z t a)
       :precision binary64
       (let* ((t_1 (/ (- z t) (- a t))))
         (if (<= t_1 -50000000000.0)
           (* (/ y (- a t)) z)
           (if (<= t_1 1e-17)
             (fma (- z t) (/ y a) x)
             (if (<= t_1 2.0)
               (fma (- 1.0 (/ z t)) y x)
               (if (<= t_1 1e+136) (fma (/ z a) y x) (/ (* y z) (- a t))))))))
      double code(double x, double y, double z, double t, double a) {
      	double t_1 = (z - t) / (a - t);
      	double tmp;
      	if (t_1 <= -50000000000.0) {
      		tmp = (y / (a - t)) * z;
      	} else if (t_1 <= 1e-17) {
      		tmp = fma((z - t), (y / a), x);
      	} else if (t_1 <= 2.0) {
      		tmp = fma((1.0 - (z / t)), y, x);
      	} else if (t_1 <= 1e+136) {
      		tmp = fma((z / a), y, x);
      	} else {
      		tmp = (y * z) / (a - t);
      	}
      	return tmp;
      }
      
      function code(x, y, z, t, a)
      	t_1 = Float64(Float64(z - t) / Float64(a - t))
      	tmp = 0.0
      	if (t_1 <= -50000000000.0)
      		tmp = Float64(Float64(y / Float64(a - t)) * z);
      	elseif (t_1 <= 1e-17)
      		tmp = fma(Float64(z - t), Float64(y / a), x);
      	elseif (t_1 <= 2.0)
      		tmp = fma(Float64(1.0 - Float64(z / t)), y, x);
      	elseif (t_1 <= 1e+136)
      		tmp = fma(Float64(z / a), y, x);
      	else
      		tmp = Float64(Float64(y * z) / Float64(a - t));
      	end
      	return tmp
      end
      
      code[x_, y_, z_, t_, a_] := Block[{t$95$1 = N[(N[(z - t), $MachinePrecision] / N[(a - t), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$1, -50000000000.0], N[(N[(y / N[(a - t), $MachinePrecision]), $MachinePrecision] * z), $MachinePrecision], If[LessEqual[t$95$1, 1e-17], N[(N[(z - t), $MachinePrecision] * N[(y / a), $MachinePrecision] + x), $MachinePrecision], If[LessEqual[t$95$1, 2.0], N[(N[(1.0 - N[(z / t), $MachinePrecision]), $MachinePrecision] * y + x), $MachinePrecision], If[LessEqual[t$95$1, 1e+136], N[(N[(z / a), $MachinePrecision] * y + x), $MachinePrecision], N[(N[(y * z), $MachinePrecision] / N[(a - t), $MachinePrecision]), $MachinePrecision]]]]]]
      
      \begin{array}{l}
      
      \\
      \begin{array}{l}
      t_1 := \frac{z - t}{a - t}\\
      \mathbf{if}\;t\_1 \leq -50000000000:\\
      \;\;\;\;\frac{y}{a - t} \cdot z\\
      
      \mathbf{elif}\;t\_1 \leq 10^{-17}:\\
      \;\;\;\;\mathsf{fma}\left(z - t, \frac{y}{a}, x\right)\\
      
      \mathbf{elif}\;t\_1 \leq 2:\\
      \;\;\;\;\mathsf{fma}\left(1 - \frac{z}{t}, y, x\right)\\
      
      \mathbf{elif}\;t\_1 \leq 10^{+136}:\\
      \;\;\;\;\mathsf{fma}\left(\frac{z}{a}, y, x\right)\\
      
      \mathbf{else}:\\
      \;\;\;\;\frac{y \cdot z}{a - t}\\
      
      
      \end{array}
      \end{array}
      
      Derivation
      1. Split input into 5 regimes
      2. if (/.f64 (-.f64 z t) (-.f64 a t)) < -5e10

        1. Initial program 92.8%

          \[x + y \cdot \frac{z - t}{a - t} \]
        2. Add Preprocessing
        3. Taylor expanded in t around inf

          \[\leadsto \color{blue}{x + y} \]
        4. Step-by-step derivation
          1. +-commutativeN/A

            \[\leadsto \color{blue}{y + x} \]
          2. lower-+.f6417.3

            \[\leadsto \color{blue}{y + x} \]
        5. Applied rewrites17.3%

          \[\leadsto \color{blue}{y + x} \]
        6. Taylor expanded in z around inf

          \[\leadsto \color{blue}{\frac{y \cdot z}{a - t}} \]
        7. Step-by-step derivation
          1. associate-*l/N/A

            \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
          2. lower-*.f64N/A

            \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
          3. lower-/.f64N/A

            \[\leadsto \color{blue}{\frac{y}{a - t}} \cdot z \]
          4. lower--.f6480.6

            \[\leadsto \frac{y}{\color{blue}{a - t}} \cdot z \]
        8. Applied rewrites80.6%

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

        if -5e10 < (/.f64 (-.f64 z t) (-.f64 a t)) < 1.00000000000000007e-17

        1. Initial program 99.9%

          \[x + y \cdot \frac{z - t}{a - t} \]
        2. Add Preprocessing
        3. Taylor expanded in a around inf

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

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

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

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

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

            \[\leadsto \mathsf{fma}\left(\color{blue}{z - t}, \frac{y}{a}, x\right) \]
          6. lower-/.f6497.4

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

          \[\leadsto \color{blue}{\mathsf{fma}\left(z - t, \frac{y}{a}, x\right)} \]

        if 1.00000000000000007e-17 < (/.f64 (-.f64 z t) (-.f64 a t)) < 2

        1. Initial program 100.0%

          \[x + y \cdot \frac{z - t}{a - t} \]
        2. Add Preprocessing
        3. Taylor expanded in a around 0

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            \[\leadsto \color{blue}{\mathsf{fma}\left(1 + -1 \cdot \frac{z}{t}, y, x\right)} \]
          15. mul-1-negN/A

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

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

            \[\leadsto \mathsf{fma}\left(\color{blue}{1 - \frac{z}{t}}, y, x\right) \]
          18. lower-/.f64100.0

            \[\leadsto \mathsf{fma}\left(1 - \color{blue}{\frac{z}{t}}, y, x\right) \]
        5. Applied rewrites100.0%

          \[\leadsto \color{blue}{\mathsf{fma}\left(1 - \frac{z}{t}, y, x\right)} \]

        if 2 < (/.f64 (-.f64 z t) (-.f64 a t)) < 1.00000000000000006e136

        1. Initial program 99.9%

          \[x + y \cdot \frac{z - t}{a - t} \]
        2. Add Preprocessing
        3. Taylor expanded in t around 0

          \[\leadsto \color{blue}{x + \frac{y \cdot z}{a}} \]
        4. Step-by-step derivation
          1. +-commutativeN/A

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

            \[\leadsto \color{blue}{y \cdot \frac{z}{a}} + x \]
          3. *-commutativeN/A

            \[\leadsto \color{blue}{\frac{z}{a} \cdot y} + x \]
          4. lower-fma.f64N/A

            \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{z}{a}, y, x\right)} \]
          5. lower-/.f6473.9

            \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{z}{a}}, y, x\right) \]
        5. Applied rewrites73.9%

          \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{z}{a}, y, x\right)} \]

        if 1.00000000000000006e136 < (/.f64 (-.f64 z t) (-.f64 a t))

        1. Initial program 95.0%

          \[x + y \cdot \frac{z - t}{a - t} \]
        2. Add Preprocessing
        3. Taylor expanded in t around inf

          \[\leadsto \color{blue}{x + y} \]
        4. Step-by-step derivation
          1. +-commutativeN/A

            \[\leadsto \color{blue}{y + x} \]
          2. lower-+.f6415.3

            \[\leadsto \color{blue}{y + x} \]
        5. Applied rewrites15.3%

          \[\leadsto \color{blue}{y + x} \]
        6. Taylor expanded in z around inf

          \[\leadsto \color{blue}{\frac{y \cdot z}{a - t}} \]
        7. Step-by-step derivation
          1. associate-*l/N/A

            \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
          2. lower-*.f64N/A

            \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
          3. lower-/.f64N/A

            \[\leadsto \color{blue}{\frac{y}{a - t}} \cdot z \]
          4. lower--.f6480.1

            \[\leadsto \frac{y}{\color{blue}{a - t}} \cdot z \]
        8. Applied rewrites80.1%

          \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
        9. Step-by-step derivation
          1. Applied rewrites84.5%

            \[\leadsto \frac{z \cdot y}{\color{blue}{a - t}} \]
        10. Recombined 5 regimes into one program.
        11. Final simplification91.3%

          \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{z - t}{a - t} \leq -50000000000:\\ \;\;\;\;\frac{y}{a - t} \cdot z\\ \mathbf{elif}\;\frac{z - t}{a - t} \leq 10^{-17}:\\ \;\;\;\;\mathsf{fma}\left(z - t, \frac{y}{a}, x\right)\\ \mathbf{elif}\;\frac{z - t}{a - t} \leq 2:\\ \;\;\;\;\mathsf{fma}\left(1 - \frac{z}{t}, y, x\right)\\ \mathbf{elif}\;\frac{z - t}{a - t} \leq 10^{+136}:\\ \;\;\;\;\mathsf{fma}\left(\frac{z}{a}, y, x\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{y \cdot z}{a - t}\\ \end{array} \]
        12. Add Preprocessing

        Alternative 5: 83.7% accurate, 0.2× speedup?

        \[\begin{array}{l} \\ \begin{array}{l} t_1 := \mathsf{fma}\left(\frac{z}{a}, y, x\right)\\ t_2 := \frac{z - t}{a - t}\\ \mathbf{if}\;t\_2 \leq -500000:\\ \;\;\;\;\frac{y}{a - t} \cdot z\\ \mathbf{elif}\;t\_2 \leq 10^{-17}:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;t\_2 \leq 2:\\ \;\;\;\;\mathsf{fma}\left(1 - \frac{z}{t}, y, x\right)\\ \mathbf{elif}\;t\_2 \leq 10^{+136}:\\ \;\;\;\;t\_1\\ \mathbf{else}:\\ \;\;\;\;\frac{y \cdot z}{a - t}\\ \end{array} \end{array} \]
        (FPCore (x y z t a)
         :precision binary64
         (let* ((t_1 (fma (/ z a) y x)) (t_2 (/ (- z t) (- a t))))
           (if (<= t_2 -500000.0)
             (* (/ y (- a t)) z)
             (if (<= t_2 1e-17)
               t_1
               (if (<= t_2 2.0)
                 (fma (- 1.0 (/ z t)) y x)
                 (if (<= t_2 1e+136) t_1 (/ (* y z) (- a t))))))))
        double code(double x, double y, double z, double t, double a) {
        	double t_1 = fma((z / a), y, x);
        	double t_2 = (z - t) / (a - t);
        	double tmp;
        	if (t_2 <= -500000.0) {
        		tmp = (y / (a - t)) * z;
        	} else if (t_2 <= 1e-17) {
        		tmp = t_1;
        	} else if (t_2 <= 2.0) {
        		tmp = fma((1.0 - (z / t)), y, x);
        	} else if (t_2 <= 1e+136) {
        		tmp = t_1;
        	} else {
        		tmp = (y * z) / (a - t);
        	}
        	return tmp;
        }
        
        function code(x, y, z, t, a)
        	t_1 = fma(Float64(z / a), y, x)
        	t_2 = Float64(Float64(z - t) / Float64(a - t))
        	tmp = 0.0
        	if (t_2 <= -500000.0)
        		tmp = Float64(Float64(y / Float64(a - t)) * z);
        	elseif (t_2 <= 1e-17)
        		tmp = t_1;
        	elseif (t_2 <= 2.0)
        		tmp = fma(Float64(1.0 - Float64(z / t)), y, x);
        	elseif (t_2 <= 1e+136)
        		tmp = t_1;
        	else
        		tmp = Float64(Float64(y * z) / Float64(a - t));
        	end
        	return tmp
        end
        
        code[x_, y_, z_, t_, a_] := Block[{t$95$1 = N[(N[(z / a), $MachinePrecision] * y + x), $MachinePrecision]}, Block[{t$95$2 = N[(N[(z - t), $MachinePrecision] / N[(a - t), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$2, -500000.0], N[(N[(y / N[(a - t), $MachinePrecision]), $MachinePrecision] * z), $MachinePrecision], If[LessEqual[t$95$2, 1e-17], t$95$1, If[LessEqual[t$95$2, 2.0], N[(N[(1.0 - N[(z / t), $MachinePrecision]), $MachinePrecision] * y + x), $MachinePrecision], If[LessEqual[t$95$2, 1e+136], t$95$1, N[(N[(y * z), $MachinePrecision] / N[(a - t), $MachinePrecision]), $MachinePrecision]]]]]]]
        
        \begin{array}{l}
        
        \\
        \begin{array}{l}
        t_1 := \mathsf{fma}\left(\frac{z}{a}, y, x\right)\\
        t_2 := \frac{z - t}{a - t}\\
        \mathbf{if}\;t\_2 \leq -500000:\\
        \;\;\;\;\frac{y}{a - t} \cdot z\\
        
        \mathbf{elif}\;t\_2 \leq 10^{-17}:\\
        \;\;\;\;t\_1\\
        
        \mathbf{elif}\;t\_2 \leq 2:\\
        \;\;\;\;\mathsf{fma}\left(1 - \frac{z}{t}, y, x\right)\\
        
        \mathbf{elif}\;t\_2 \leq 10^{+136}:\\
        \;\;\;\;t\_1\\
        
        \mathbf{else}:\\
        \;\;\;\;\frac{y \cdot z}{a - t}\\
        
        
        \end{array}
        \end{array}
        
        Derivation
        1. Split input into 4 regimes
        2. if (/.f64 (-.f64 z t) (-.f64 a t)) < -5e5

          1. Initial program 93.0%

            \[x + y \cdot \frac{z - t}{a - t} \]
          2. Add Preprocessing
          3. Taylor expanded in t around inf

            \[\leadsto \color{blue}{x + y} \]
          4. Step-by-step derivation
            1. +-commutativeN/A

              \[\leadsto \color{blue}{y + x} \]
            2. lower-+.f6419.3

              \[\leadsto \color{blue}{y + x} \]
          5. Applied rewrites19.3%

            \[\leadsto \color{blue}{y + x} \]
          6. Taylor expanded in z around inf

            \[\leadsto \color{blue}{\frac{y \cdot z}{a - t}} \]
          7. Step-by-step derivation
            1. associate-*l/N/A

              \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
            2. lower-*.f64N/A

              \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
            3. lower-/.f64N/A

              \[\leadsto \color{blue}{\frac{y}{a - t}} \cdot z \]
            4. lower--.f6478.7

              \[\leadsto \frac{y}{\color{blue}{a - t}} \cdot z \]
          8. Applied rewrites78.7%

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

          if -5e5 < (/.f64 (-.f64 z t) (-.f64 a t)) < 1.00000000000000007e-17 or 2 < (/.f64 (-.f64 z t) (-.f64 a t)) < 1.00000000000000006e136

          1. Initial program 99.9%

            \[x + y \cdot \frac{z - t}{a - t} \]
          2. Add Preprocessing
          3. Taylor expanded in t around 0

            \[\leadsto \color{blue}{x + \frac{y \cdot z}{a}} \]
          4. Step-by-step derivation
            1. +-commutativeN/A

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

              \[\leadsto \color{blue}{y \cdot \frac{z}{a}} + x \]
            3. *-commutativeN/A

              \[\leadsto \color{blue}{\frac{z}{a} \cdot y} + x \]
            4. lower-fma.f64N/A

              \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{z}{a}, y, x\right)} \]
            5. lower-/.f6486.6

              \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{z}{a}}, y, x\right) \]
          5. Applied rewrites86.6%

            \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{z}{a}, y, x\right)} \]

          if 1.00000000000000007e-17 < (/.f64 (-.f64 z t) (-.f64 a t)) < 2

          1. Initial program 100.0%

            \[x + y \cdot \frac{z - t}{a - t} \]
          2. Add Preprocessing
          3. Taylor expanded in a around 0

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

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

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

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

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

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

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

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

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

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

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

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

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

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

              \[\leadsto \color{blue}{\mathsf{fma}\left(1 + -1 \cdot \frac{z}{t}, y, x\right)} \]
            15. mul-1-negN/A

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

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

              \[\leadsto \mathsf{fma}\left(\color{blue}{1 - \frac{z}{t}}, y, x\right) \]
            18. lower-/.f64100.0

              \[\leadsto \mathsf{fma}\left(1 - \color{blue}{\frac{z}{t}}, y, x\right) \]
          5. Applied rewrites100.0%

            \[\leadsto \color{blue}{\mathsf{fma}\left(1 - \frac{z}{t}, y, x\right)} \]

          if 1.00000000000000006e136 < (/.f64 (-.f64 z t) (-.f64 a t))

          1. Initial program 95.0%

            \[x + y \cdot \frac{z - t}{a - t} \]
          2. Add Preprocessing
          3. Taylor expanded in t around inf

            \[\leadsto \color{blue}{x + y} \]
          4. Step-by-step derivation
            1. +-commutativeN/A

              \[\leadsto \color{blue}{y + x} \]
            2. lower-+.f6415.3

              \[\leadsto \color{blue}{y + x} \]
          5. Applied rewrites15.3%

            \[\leadsto \color{blue}{y + x} \]
          6. Taylor expanded in z around inf

            \[\leadsto \color{blue}{\frac{y \cdot z}{a - t}} \]
          7. Step-by-step derivation
            1. associate-*l/N/A

              \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
            2. lower-*.f64N/A

              \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
            3. lower-/.f64N/A

              \[\leadsto \color{blue}{\frac{y}{a - t}} \cdot z \]
            4. lower--.f6480.1

              \[\leadsto \frac{y}{\color{blue}{a - t}} \cdot z \]
          8. Applied rewrites80.1%

            \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
          9. Step-by-step derivation
            1. Applied rewrites84.5%

              \[\leadsto \frac{z \cdot y}{\color{blue}{a - t}} \]
          10. Recombined 4 regimes into one program.
          11. Final simplification88.8%

            \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{z - t}{a - t} \leq -500000:\\ \;\;\;\;\frac{y}{a - t} \cdot z\\ \mathbf{elif}\;\frac{z - t}{a - t} \leq 10^{-17}:\\ \;\;\;\;\mathsf{fma}\left(\frac{z}{a}, y, x\right)\\ \mathbf{elif}\;\frac{z - t}{a - t} \leq 2:\\ \;\;\;\;\mathsf{fma}\left(1 - \frac{z}{t}, y, x\right)\\ \mathbf{elif}\;\frac{z - t}{a - t} \leq 10^{+136}:\\ \;\;\;\;\mathsf{fma}\left(\frac{z}{a}, y, x\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{y \cdot z}{a - t}\\ \end{array} \]
          12. Add Preprocessing

          Alternative 6: 83.7% accurate, 0.2× speedup?

          \[\begin{array}{l} \\ \begin{array}{l} t_1 := \mathsf{fma}\left(\frac{z}{a}, y, x\right)\\ t_2 := \frac{z - t}{a - t}\\ \mathbf{if}\;t\_2 \leq -500000:\\ \;\;\;\;\frac{y}{a - t} \cdot z\\ \mathbf{elif}\;t\_2 \leq 10^{-17}:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;t\_2 \leq 2:\\ \;\;\;\;x + y\\ \mathbf{elif}\;t\_2 \leq 10^{+136}:\\ \;\;\;\;t\_1\\ \mathbf{else}:\\ \;\;\;\;\frac{y \cdot z}{a - t}\\ \end{array} \end{array} \]
          (FPCore (x y z t a)
           :precision binary64
           (let* ((t_1 (fma (/ z a) y x)) (t_2 (/ (- z t) (- a t))))
             (if (<= t_2 -500000.0)
               (* (/ y (- a t)) z)
               (if (<= t_2 1e-17)
                 t_1
                 (if (<= t_2 2.0)
                   (+ x y)
                   (if (<= t_2 1e+136) t_1 (/ (* y z) (- a t))))))))
          double code(double x, double y, double z, double t, double a) {
          	double t_1 = fma((z / a), y, x);
          	double t_2 = (z - t) / (a - t);
          	double tmp;
          	if (t_2 <= -500000.0) {
          		tmp = (y / (a - t)) * z;
          	} else if (t_2 <= 1e-17) {
          		tmp = t_1;
          	} else if (t_2 <= 2.0) {
          		tmp = x + y;
          	} else if (t_2 <= 1e+136) {
          		tmp = t_1;
          	} else {
          		tmp = (y * z) / (a - t);
          	}
          	return tmp;
          }
          
          function code(x, y, z, t, a)
          	t_1 = fma(Float64(z / a), y, x)
          	t_2 = Float64(Float64(z - t) / Float64(a - t))
          	tmp = 0.0
          	if (t_2 <= -500000.0)
          		tmp = Float64(Float64(y / Float64(a - t)) * z);
          	elseif (t_2 <= 1e-17)
          		tmp = t_1;
          	elseif (t_2 <= 2.0)
          		tmp = Float64(x + y);
          	elseif (t_2 <= 1e+136)
          		tmp = t_1;
          	else
          		tmp = Float64(Float64(y * z) / Float64(a - t));
          	end
          	return tmp
          end
          
          code[x_, y_, z_, t_, a_] := Block[{t$95$1 = N[(N[(z / a), $MachinePrecision] * y + x), $MachinePrecision]}, Block[{t$95$2 = N[(N[(z - t), $MachinePrecision] / N[(a - t), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$2, -500000.0], N[(N[(y / N[(a - t), $MachinePrecision]), $MachinePrecision] * z), $MachinePrecision], If[LessEqual[t$95$2, 1e-17], t$95$1, If[LessEqual[t$95$2, 2.0], N[(x + y), $MachinePrecision], If[LessEqual[t$95$2, 1e+136], t$95$1, N[(N[(y * z), $MachinePrecision] / N[(a - t), $MachinePrecision]), $MachinePrecision]]]]]]]
          
          \begin{array}{l}
          
          \\
          \begin{array}{l}
          t_1 := \mathsf{fma}\left(\frac{z}{a}, y, x\right)\\
          t_2 := \frac{z - t}{a - t}\\
          \mathbf{if}\;t\_2 \leq -500000:\\
          \;\;\;\;\frac{y}{a - t} \cdot z\\
          
          \mathbf{elif}\;t\_2 \leq 10^{-17}:\\
          \;\;\;\;t\_1\\
          
          \mathbf{elif}\;t\_2 \leq 2:\\
          \;\;\;\;x + y\\
          
          \mathbf{elif}\;t\_2 \leq 10^{+136}:\\
          \;\;\;\;t\_1\\
          
          \mathbf{else}:\\
          \;\;\;\;\frac{y \cdot z}{a - t}\\
          
          
          \end{array}
          \end{array}
          
          Derivation
          1. Split input into 4 regimes
          2. if (/.f64 (-.f64 z t) (-.f64 a t)) < -5e5

            1. Initial program 93.0%

              \[x + y \cdot \frac{z - t}{a - t} \]
            2. Add Preprocessing
            3. Taylor expanded in t around inf

              \[\leadsto \color{blue}{x + y} \]
            4. Step-by-step derivation
              1. +-commutativeN/A

                \[\leadsto \color{blue}{y + x} \]
              2. lower-+.f6419.3

                \[\leadsto \color{blue}{y + x} \]
            5. Applied rewrites19.3%

              \[\leadsto \color{blue}{y + x} \]
            6. Taylor expanded in z around inf

              \[\leadsto \color{blue}{\frac{y \cdot z}{a - t}} \]
            7. Step-by-step derivation
              1. associate-*l/N/A

                \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
              2. lower-*.f64N/A

                \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
              3. lower-/.f64N/A

                \[\leadsto \color{blue}{\frac{y}{a - t}} \cdot z \]
              4. lower--.f6478.7

                \[\leadsto \frac{y}{\color{blue}{a - t}} \cdot z \]
            8. Applied rewrites78.7%

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

            if -5e5 < (/.f64 (-.f64 z t) (-.f64 a t)) < 1.00000000000000007e-17 or 2 < (/.f64 (-.f64 z t) (-.f64 a t)) < 1.00000000000000006e136

            1. Initial program 99.9%

              \[x + y \cdot \frac{z - t}{a - t} \]
            2. Add Preprocessing
            3. Taylor expanded in t around 0

              \[\leadsto \color{blue}{x + \frac{y \cdot z}{a}} \]
            4. Step-by-step derivation
              1. +-commutativeN/A

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

                \[\leadsto \color{blue}{y \cdot \frac{z}{a}} + x \]
              3. *-commutativeN/A

                \[\leadsto \color{blue}{\frac{z}{a} \cdot y} + x \]
              4. lower-fma.f64N/A

                \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{z}{a}, y, x\right)} \]
              5. lower-/.f6486.6

                \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{z}{a}}, y, x\right) \]
            5. Applied rewrites86.6%

              \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{z}{a}, y, x\right)} \]

            if 1.00000000000000007e-17 < (/.f64 (-.f64 z t) (-.f64 a t)) < 2

            1. Initial program 100.0%

              \[x + y \cdot \frac{z - t}{a - t} \]
            2. Add Preprocessing
            3. Taylor expanded in t around inf

              \[\leadsto \color{blue}{x + y} \]
            4. Step-by-step derivation
              1. +-commutativeN/A

                \[\leadsto \color{blue}{y + x} \]
              2. lower-+.f6499.6

                \[\leadsto \color{blue}{y + x} \]
            5. Applied rewrites99.6%

              \[\leadsto \color{blue}{y + x} \]

            if 1.00000000000000006e136 < (/.f64 (-.f64 z t) (-.f64 a t))

            1. Initial program 95.0%

              \[x + y \cdot \frac{z - t}{a - t} \]
            2. Add Preprocessing
            3. Taylor expanded in t around inf

              \[\leadsto \color{blue}{x + y} \]
            4. Step-by-step derivation
              1. +-commutativeN/A

                \[\leadsto \color{blue}{y + x} \]
              2. lower-+.f6415.3

                \[\leadsto \color{blue}{y + x} \]
            5. Applied rewrites15.3%

              \[\leadsto \color{blue}{y + x} \]
            6. Taylor expanded in z around inf

              \[\leadsto \color{blue}{\frac{y \cdot z}{a - t}} \]
            7. Step-by-step derivation
              1. associate-*l/N/A

                \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
              2. lower-*.f64N/A

                \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
              3. lower-/.f64N/A

                \[\leadsto \color{blue}{\frac{y}{a - t}} \cdot z \]
              4. lower--.f6480.1

                \[\leadsto \frac{y}{\color{blue}{a - t}} \cdot z \]
            8. Applied rewrites80.1%

              \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
            9. Step-by-step derivation
              1. Applied rewrites84.5%

                \[\leadsto \frac{z \cdot y}{\color{blue}{a - t}} \]
            10. Recombined 4 regimes into one program.
            11. Final simplification88.7%

              \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{z - t}{a - t} \leq -500000:\\ \;\;\;\;\frac{y}{a - t} \cdot z\\ \mathbf{elif}\;\frac{z - t}{a - t} \leq 10^{-17}:\\ \;\;\;\;\mathsf{fma}\left(\frac{z}{a}, y, x\right)\\ \mathbf{elif}\;\frac{z - t}{a - t} \leq 2:\\ \;\;\;\;x + y\\ \mathbf{elif}\;\frac{z - t}{a - t} \leq 10^{+136}:\\ \;\;\;\;\mathsf{fma}\left(\frac{z}{a}, y, x\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{y \cdot z}{a - t}\\ \end{array} \]
            12. Add Preprocessing

            Alternative 7: 83.2% accurate, 0.2× speedup?

            \[\begin{array}{l} \\ \begin{array}{l} t_1 := \mathsf{fma}\left(\frac{z}{a}, y, x\right)\\ t_2 := \frac{z - t}{a - t}\\ \mathbf{if}\;t\_2 \leq -500000:\\ \;\;\;\;\frac{y}{a - t} \cdot z\\ \mathbf{elif}\;t\_2 \leq 10^{-17}:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;t\_2 \leq 2:\\ \;\;\;\;x + y\\ \mathbf{elif}\;t\_2 \leq 10^{+136}:\\ \;\;\;\;t\_1\\ \mathbf{else}:\\ \;\;\;\;\frac{z}{a - t} \cdot y\\ \end{array} \end{array} \]
            (FPCore (x y z t a)
             :precision binary64
             (let* ((t_1 (fma (/ z a) y x)) (t_2 (/ (- z t) (- a t))))
               (if (<= t_2 -500000.0)
                 (* (/ y (- a t)) z)
                 (if (<= t_2 1e-17)
                   t_1
                   (if (<= t_2 2.0)
                     (+ x y)
                     (if (<= t_2 1e+136) t_1 (* (/ z (- a t)) y)))))))
            double code(double x, double y, double z, double t, double a) {
            	double t_1 = fma((z / a), y, x);
            	double t_2 = (z - t) / (a - t);
            	double tmp;
            	if (t_2 <= -500000.0) {
            		tmp = (y / (a - t)) * z;
            	} else if (t_2 <= 1e-17) {
            		tmp = t_1;
            	} else if (t_2 <= 2.0) {
            		tmp = x + y;
            	} else if (t_2 <= 1e+136) {
            		tmp = t_1;
            	} else {
            		tmp = (z / (a - t)) * y;
            	}
            	return tmp;
            }
            
            function code(x, y, z, t, a)
            	t_1 = fma(Float64(z / a), y, x)
            	t_2 = Float64(Float64(z - t) / Float64(a - t))
            	tmp = 0.0
            	if (t_2 <= -500000.0)
            		tmp = Float64(Float64(y / Float64(a - t)) * z);
            	elseif (t_2 <= 1e-17)
            		tmp = t_1;
            	elseif (t_2 <= 2.0)
            		tmp = Float64(x + y);
            	elseif (t_2 <= 1e+136)
            		tmp = t_1;
            	else
            		tmp = Float64(Float64(z / Float64(a - t)) * y);
            	end
            	return tmp
            end
            
            code[x_, y_, z_, t_, a_] := Block[{t$95$1 = N[(N[(z / a), $MachinePrecision] * y + x), $MachinePrecision]}, Block[{t$95$2 = N[(N[(z - t), $MachinePrecision] / N[(a - t), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$2, -500000.0], N[(N[(y / N[(a - t), $MachinePrecision]), $MachinePrecision] * z), $MachinePrecision], If[LessEqual[t$95$2, 1e-17], t$95$1, If[LessEqual[t$95$2, 2.0], N[(x + y), $MachinePrecision], If[LessEqual[t$95$2, 1e+136], t$95$1, N[(N[(z / N[(a - t), $MachinePrecision]), $MachinePrecision] * y), $MachinePrecision]]]]]]]
            
            \begin{array}{l}
            
            \\
            \begin{array}{l}
            t_1 := \mathsf{fma}\left(\frac{z}{a}, y, x\right)\\
            t_2 := \frac{z - t}{a - t}\\
            \mathbf{if}\;t\_2 \leq -500000:\\
            \;\;\;\;\frac{y}{a - t} \cdot z\\
            
            \mathbf{elif}\;t\_2 \leq 10^{-17}:\\
            \;\;\;\;t\_1\\
            
            \mathbf{elif}\;t\_2 \leq 2:\\
            \;\;\;\;x + y\\
            
            \mathbf{elif}\;t\_2 \leq 10^{+136}:\\
            \;\;\;\;t\_1\\
            
            \mathbf{else}:\\
            \;\;\;\;\frac{z}{a - t} \cdot y\\
            
            
            \end{array}
            \end{array}
            
            Derivation
            1. Split input into 4 regimes
            2. if (/.f64 (-.f64 z t) (-.f64 a t)) < -5e5

              1. Initial program 93.0%

                \[x + y \cdot \frac{z - t}{a - t} \]
              2. Add Preprocessing
              3. Taylor expanded in t around inf

                \[\leadsto \color{blue}{x + y} \]
              4. Step-by-step derivation
                1. +-commutativeN/A

                  \[\leadsto \color{blue}{y + x} \]
                2. lower-+.f6419.3

                  \[\leadsto \color{blue}{y + x} \]
              5. Applied rewrites19.3%

                \[\leadsto \color{blue}{y + x} \]
              6. Taylor expanded in z around inf

                \[\leadsto \color{blue}{\frac{y \cdot z}{a - t}} \]
              7. Step-by-step derivation
                1. associate-*l/N/A

                  \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
                2. lower-*.f64N/A

                  \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
                3. lower-/.f64N/A

                  \[\leadsto \color{blue}{\frac{y}{a - t}} \cdot z \]
                4. lower--.f6478.7

                  \[\leadsto \frac{y}{\color{blue}{a - t}} \cdot z \]
              8. Applied rewrites78.7%

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

              if -5e5 < (/.f64 (-.f64 z t) (-.f64 a t)) < 1.00000000000000007e-17 or 2 < (/.f64 (-.f64 z t) (-.f64 a t)) < 1.00000000000000006e136

              1. Initial program 99.9%

                \[x + y \cdot \frac{z - t}{a - t} \]
              2. Add Preprocessing
              3. Taylor expanded in t around 0

                \[\leadsto \color{blue}{x + \frac{y \cdot z}{a}} \]
              4. Step-by-step derivation
                1. +-commutativeN/A

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

                  \[\leadsto \color{blue}{y \cdot \frac{z}{a}} + x \]
                3. *-commutativeN/A

                  \[\leadsto \color{blue}{\frac{z}{a} \cdot y} + x \]
                4. lower-fma.f64N/A

                  \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{z}{a}, y, x\right)} \]
                5. lower-/.f6486.6

                  \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{z}{a}}, y, x\right) \]
              5. Applied rewrites86.6%

                \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{z}{a}, y, x\right)} \]

              if 1.00000000000000007e-17 < (/.f64 (-.f64 z t) (-.f64 a t)) < 2

              1. Initial program 100.0%

                \[x + y \cdot \frac{z - t}{a - t} \]
              2. Add Preprocessing
              3. Taylor expanded in t around inf

                \[\leadsto \color{blue}{x + y} \]
              4. Step-by-step derivation
                1. +-commutativeN/A

                  \[\leadsto \color{blue}{y + x} \]
                2. lower-+.f6499.6

                  \[\leadsto \color{blue}{y + x} \]
              5. Applied rewrites99.6%

                \[\leadsto \color{blue}{y + x} \]

              if 1.00000000000000006e136 < (/.f64 (-.f64 z t) (-.f64 a t))

              1. Initial program 95.0%

                \[x + y \cdot \frac{z - t}{a - t} \]
              2. Add Preprocessing
              3. Taylor expanded in z around inf

                \[\leadsto \color{blue}{\frac{y \cdot z}{a - t}} \]
              4. Step-by-step derivation
                1. associate-/l*N/A

                  \[\leadsto \color{blue}{y \cdot \frac{z}{a - t}} \]
                2. *-commutativeN/A

                  \[\leadsto \color{blue}{\frac{z}{a - t} \cdot y} \]
                3. lower-*.f64N/A

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

                  \[\leadsto \color{blue}{\frac{z}{a - t}} \cdot y \]
                5. lower--.f6484.3

                  \[\leadsto \frac{z}{\color{blue}{a - t}} \cdot y \]
              5. Applied rewrites84.3%

                \[\leadsto \color{blue}{\frac{z}{a - t} \cdot y} \]
            3. Recombined 4 regimes into one program.
            4. Final simplification88.6%

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

            Alternative 8: 82.3% accurate, 0.3× speedup?

            \[\begin{array}{l} \\ \begin{array}{l} t_1 := \mathsf{fma}\left(\frac{z}{a}, y, x\right)\\ t_2 := \frac{z - t}{a - t}\\ \mathbf{if}\;t\_2 \leq -500000:\\ \;\;\;\;\frac{y}{a - t} \cdot z\\ \mathbf{elif}\;t\_2 \leq 10^{-17}:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;t\_2 \leq 2:\\ \;\;\;\;x + y\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \end{array} \]
            (FPCore (x y z t a)
             :precision binary64
             (let* ((t_1 (fma (/ z a) y x)) (t_2 (/ (- z t) (- a t))))
               (if (<= t_2 -500000.0)
                 (* (/ y (- a t)) z)
                 (if (<= t_2 1e-17) t_1 (if (<= t_2 2.0) (+ x y) t_1)))))
            double code(double x, double y, double z, double t, double a) {
            	double t_1 = fma((z / a), y, x);
            	double t_2 = (z - t) / (a - t);
            	double tmp;
            	if (t_2 <= -500000.0) {
            		tmp = (y / (a - t)) * z;
            	} else if (t_2 <= 1e-17) {
            		tmp = t_1;
            	} else if (t_2 <= 2.0) {
            		tmp = x + y;
            	} else {
            		tmp = t_1;
            	}
            	return tmp;
            }
            
            function code(x, y, z, t, a)
            	t_1 = fma(Float64(z / a), y, x)
            	t_2 = Float64(Float64(z - t) / Float64(a - t))
            	tmp = 0.0
            	if (t_2 <= -500000.0)
            		tmp = Float64(Float64(y / Float64(a - t)) * z);
            	elseif (t_2 <= 1e-17)
            		tmp = t_1;
            	elseif (t_2 <= 2.0)
            		tmp = Float64(x + y);
            	else
            		tmp = t_1;
            	end
            	return tmp
            end
            
            code[x_, y_, z_, t_, a_] := Block[{t$95$1 = N[(N[(z / a), $MachinePrecision] * y + x), $MachinePrecision]}, Block[{t$95$2 = N[(N[(z - t), $MachinePrecision] / N[(a - t), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$2, -500000.0], N[(N[(y / N[(a - t), $MachinePrecision]), $MachinePrecision] * z), $MachinePrecision], If[LessEqual[t$95$2, 1e-17], t$95$1, If[LessEqual[t$95$2, 2.0], N[(x + y), $MachinePrecision], t$95$1]]]]]
            
            \begin{array}{l}
            
            \\
            \begin{array}{l}
            t_1 := \mathsf{fma}\left(\frac{z}{a}, y, x\right)\\
            t_2 := \frac{z - t}{a - t}\\
            \mathbf{if}\;t\_2 \leq -500000:\\
            \;\;\;\;\frac{y}{a - t} \cdot z\\
            
            \mathbf{elif}\;t\_2 \leq 10^{-17}:\\
            \;\;\;\;t\_1\\
            
            \mathbf{elif}\;t\_2 \leq 2:\\
            \;\;\;\;x + y\\
            
            \mathbf{else}:\\
            \;\;\;\;t\_1\\
            
            
            \end{array}
            \end{array}
            
            Derivation
            1. Split input into 3 regimes
            2. if (/.f64 (-.f64 z t) (-.f64 a t)) < -5e5

              1. Initial program 93.0%

                \[x + y \cdot \frac{z - t}{a - t} \]
              2. Add Preprocessing
              3. Taylor expanded in t around inf

                \[\leadsto \color{blue}{x + y} \]
              4. Step-by-step derivation
                1. +-commutativeN/A

                  \[\leadsto \color{blue}{y + x} \]
                2. lower-+.f6419.3

                  \[\leadsto \color{blue}{y + x} \]
              5. Applied rewrites19.3%

                \[\leadsto \color{blue}{y + x} \]
              6. Taylor expanded in z around inf

                \[\leadsto \color{blue}{\frac{y \cdot z}{a - t}} \]
              7. Step-by-step derivation
                1. associate-*l/N/A

                  \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
                2. lower-*.f64N/A

                  \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
                3. lower-/.f64N/A

                  \[\leadsto \color{blue}{\frac{y}{a - t}} \cdot z \]
                4. lower--.f6478.7

                  \[\leadsto \frac{y}{\color{blue}{a - t}} \cdot z \]
              8. Applied rewrites78.7%

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

              if -5e5 < (/.f64 (-.f64 z t) (-.f64 a t)) < 1.00000000000000007e-17 or 2 < (/.f64 (-.f64 z t) (-.f64 a t))

              1. Initial program 99.2%

                \[x + y \cdot \frac{z - t}{a - t} \]
              2. Add Preprocessing
              3. Taylor expanded in t around 0

                \[\leadsto \color{blue}{x + \frac{y \cdot z}{a}} \]
              4. Step-by-step derivation
                1. +-commutativeN/A

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

                  \[\leadsto \color{blue}{y \cdot \frac{z}{a}} + x \]
                3. *-commutativeN/A

                  \[\leadsto \color{blue}{\frac{z}{a} \cdot y} + x \]
                4. lower-fma.f64N/A

                  \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{z}{a}, y, x\right)} \]
                5. lower-/.f6483.5

                  \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{z}{a}}, y, x\right) \]
              5. Applied rewrites83.5%

                \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{z}{a}, y, x\right)} \]

              if 1.00000000000000007e-17 < (/.f64 (-.f64 z t) (-.f64 a t)) < 2

              1. Initial program 100.0%

                \[x + y \cdot \frac{z - t}{a - t} \]
              2. Add Preprocessing
              3. Taylor expanded in t around inf

                \[\leadsto \color{blue}{x + y} \]
              4. Step-by-step derivation
                1. +-commutativeN/A

                  \[\leadsto \color{blue}{y + x} \]
                2. lower-+.f6499.6

                  \[\leadsto \color{blue}{y + x} \]
              5. Applied rewrites99.6%

                \[\leadsto \color{blue}{y + x} \]
            3. Recombined 3 regimes into one program.
            4. Final simplification87.1%

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

            Alternative 9: 79.0% accurate, 0.3× speedup?

            \[\begin{array}{l} \\ \begin{array}{l} t_1 := \mathsf{fma}\left(\frac{z}{a}, y, x\right)\\ t_2 := \frac{z - t}{a - t}\\ \mathbf{if}\;t\_2 \leq -1 \cdot 10^{+48}:\\ \;\;\;\;\frac{-y}{t} \cdot z\\ \mathbf{elif}\;t\_2 \leq 10^{-17}:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;t\_2 \leq 2:\\ \;\;\;\;x + y\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \end{array} \]
            (FPCore (x y z t a)
             :precision binary64
             (let* ((t_1 (fma (/ z a) y x)) (t_2 (/ (- z t) (- a t))))
               (if (<= t_2 -1e+48)
                 (* (/ (- y) t) z)
                 (if (<= t_2 1e-17) t_1 (if (<= t_2 2.0) (+ x y) t_1)))))
            double code(double x, double y, double z, double t, double a) {
            	double t_1 = fma((z / a), y, x);
            	double t_2 = (z - t) / (a - t);
            	double tmp;
            	if (t_2 <= -1e+48) {
            		tmp = (-y / t) * z;
            	} else if (t_2 <= 1e-17) {
            		tmp = t_1;
            	} else if (t_2 <= 2.0) {
            		tmp = x + y;
            	} else {
            		tmp = t_1;
            	}
            	return tmp;
            }
            
            function code(x, y, z, t, a)
            	t_1 = fma(Float64(z / a), y, x)
            	t_2 = Float64(Float64(z - t) / Float64(a - t))
            	tmp = 0.0
            	if (t_2 <= -1e+48)
            		tmp = Float64(Float64(Float64(-y) / t) * z);
            	elseif (t_2 <= 1e-17)
            		tmp = t_1;
            	elseif (t_2 <= 2.0)
            		tmp = Float64(x + y);
            	else
            		tmp = t_1;
            	end
            	return tmp
            end
            
            code[x_, y_, z_, t_, a_] := Block[{t$95$1 = N[(N[(z / a), $MachinePrecision] * y + x), $MachinePrecision]}, Block[{t$95$2 = N[(N[(z - t), $MachinePrecision] / N[(a - t), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$2, -1e+48], N[(N[((-y) / t), $MachinePrecision] * z), $MachinePrecision], If[LessEqual[t$95$2, 1e-17], t$95$1, If[LessEqual[t$95$2, 2.0], N[(x + y), $MachinePrecision], t$95$1]]]]]
            
            \begin{array}{l}
            
            \\
            \begin{array}{l}
            t_1 := \mathsf{fma}\left(\frac{z}{a}, y, x\right)\\
            t_2 := \frac{z - t}{a - t}\\
            \mathbf{if}\;t\_2 \leq -1 \cdot 10^{+48}:\\
            \;\;\;\;\frac{-y}{t} \cdot z\\
            
            \mathbf{elif}\;t\_2 \leq 10^{-17}:\\
            \;\;\;\;t\_1\\
            
            \mathbf{elif}\;t\_2 \leq 2:\\
            \;\;\;\;x + y\\
            
            \mathbf{else}:\\
            \;\;\;\;t\_1\\
            
            
            \end{array}
            \end{array}
            
            Derivation
            1. Split input into 3 regimes
            2. if (/.f64 (-.f64 z t) (-.f64 a t)) < -1.00000000000000004e48

              1. Initial program 91.7%

                \[x + y \cdot \frac{z - t}{a - t} \]
              2. Add Preprocessing
              3. Taylor expanded in t around inf

                \[\leadsto \color{blue}{x + y} \]
              4. Step-by-step derivation
                1. +-commutativeN/A

                  \[\leadsto \color{blue}{y + x} \]
                2. lower-+.f6417.3

                  \[\leadsto \color{blue}{y + x} \]
              5. Applied rewrites17.3%

                \[\leadsto \color{blue}{y + x} \]
              6. Taylor expanded in z around inf

                \[\leadsto \color{blue}{\frac{y \cdot z}{a - t}} \]
              7. Step-by-step derivation
                1. associate-*l/N/A

                  \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
                2. lower-*.f64N/A

                  \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
                3. lower-/.f64N/A

                  \[\leadsto \color{blue}{\frac{y}{a - t}} \cdot z \]
                4. lower--.f6482.9

                  \[\leadsto \frac{y}{\color{blue}{a - t}} \cdot z \]
              8. Applied rewrites82.9%

                \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
              9. Taylor expanded in t around inf

                \[\leadsto \left(-1 \cdot \frac{y}{t}\right) \cdot z \]
              10. Step-by-step derivation
                1. Applied rewrites61.2%

                  \[\leadsto \frac{-y}{t} \cdot z \]

                if -1.00000000000000004e48 < (/.f64 (-.f64 z t) (-.f64 a t)) < 1.00000000000000007e-17 or 2 < (/.f64 (-.f64 z t) (-.f64 a t))

                1. Initial program 99.2%

                  \[x + y \cdot \frac{z - t}{a - t} \]
                2. Add Preprocessing
                3. Taylor expanded in t around 0

                  \[\leadsto \color{blue}{x + \frac{y \cdot z}{a}} \]
                4. Step-by-step derivation
                  1. +-commutativeN/A

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

                    \[\leadsto \color{blue}{y \cdot \frac{z}{a}} + x \]
                  3. *-commutativeN/A

                    \[\leadsto \color{blue}{\frac{z}{a} \cdot y} + x \]
                  4. lower-fma.f64N/A

                    \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{z}{a}, y, x\right)} \]
                  5. lower-/.f6481.6

                    \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{z}{a}}, y, x\right) \]
                5. Applied rewrites81.6%

                  \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{z}{a}, y, x\right)} \]

                if 1.00000000000000007e-17 < (/.f64 (-.f64 z t) (-.f64 a t)) < 2

                1. Initial program 100.0%

                  \[x + y \cdot \frac{z - t}{a - t} \]
                2. Add Preprocessing
                3. Taylor expanded in t around inf

                  \[\leadsto \color{blue}{x + y} \]
                4. Step-by-step derivation
                  1. +-commutativeN/A

                    \[\leadsto \color{blue}{y + x} \]
                  2. lower-+.f6499.6

                    \[\leadsto \color{blue}{y + x} \]
                5. Applied rewrites99.6%

                  \[\leadsto \color{blue}{y + x} \]
              11. Recombined 3 regimes into one program.
              12. Final simplification83.6%

                \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{z - t}{a - t} \leq -1 \cdot 10^{+48}:\\ \;\;\;\;\frac{-y}{t} \cdot z\\ \mathbf{elif}\;\frac{z - t}{a - t} \leq 10^{-17}:\\ \;\;\;\;\mathsf{fma}\left(\frac{z}{a}, y, x\right)\\ \mathbf{elif}\;\frac{z - t}{a - t} \leq 2:\\ \;\;\;\;x + y\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(\frac{z}{a}, y, x\right)\\ \end{array} \]
              13. Add Preprocessing

              Alternative 10: 78.9% accurate, 0.3× speedup?

              \[\begin{array}{l} \\ \begin{array}{l} t_1 := \mathsf{fma}\left(\frac{z}{a}, y, x\right)\\ t_2 := \frac{z - t}{a - t}\\ \mathbf{if}\;t\_2 \leq -1 \cdot 10^{+48}:\\ \;\;\;\;\frac{-z}{t} \cdot y\\ \mathbf{elif}\;t\_2 \leq 10^{-17}:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;t\_2 \leq 2:\\ \;\;\;\;x + y\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \end{array} \]
              (FPCore (x y z t a)
               :precision binary64
               (let* ((t_1 (fma (/ z a) y x)) (t_2 (/ (- z t) (- a t))))
                 (if (<= t_2 -1e+48)
                   (* (/ (- z) t) y)
                   (if (<= t_2 1e-17) t_1 (if (<= t_2 2.0) (+ x y) t_1)))))
              double code(double x, double y, double z, double t, double a) {
              	double t_1 = fma((z / a), y, x);
              	double t_2 = (z - t) / (a - t);
              	double tmp;
              	if (t_2 <= -1e+48) {
              		tmp = (-z / t) * y;
              	} else if (t_2 <= 1e-17) {
              		tmp = t_1;
              	} else if (t_2 <= 2.0) {
              		tmp = x + y;
              	} else {
              		tmp = t_1;
              	}
              	return tmp;
              }
              
              function code(x, y, z, t, a)
              	t_1 = fma(Float64(z / a), y, x)
              	t_2 = Float64(Float64(z - t) / Float64(a - t))
              	tmp = 0.0
              	if (t_2 <= -1e+48)
              		tmp = Float64(Float64(Float64(-z) / t) * y);
              	elseif (t_2 <= 1e-17)
              		tmp = t_1;
              	elseif (t_2 <= 2.0)
              		tmp = Float64(x + y);
              	else
              		tmp = t_1;
              	end
              	return tmp
              end
              
              code[x_, y_, z_, t_, a_] := Block[{t$95$1 = N[(N[(z / a), $MachinePrecision] * y + x), $MachinePrecision]}, Block[{t$95$2 = N[(N[(z - t), $MachinePrecision] / N[(a - t), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$2, -1e+48], N[(N[((-z) / t), $MachinePrecision] * y), $MachinePrecision], If[LessEqual[t$95$2, 1e-17], t$95$1, If[LessEqual[t$95$2, 2.0], N[(x + y), $MachinePrecision], t$95$1]]]]]
              
              \begin{array}{l}
              
              \\
              \begin{array}{l}
              t_1 := \mathsf{fma}\left(\frac{z}{a}, y, x\right)\\
              t_2 := \frac{z - t}{a - t}\\
              \mathbf{if}\;t\_2 \leq -1 \cdot 10^{+48}:\\
              \;\;\;\;\frac{-z}{t} \cdot y\\
              
              \mathbf{elif}\;t\_2 \leq 10^{-17}:\\
              \;\;\;\;t\_1\\
              
              \mathbf{elif}\;t\_2 \leq 2:\\
              \;\;\;\;x + y\\
              
              \mathbf{else}:\\
              \;\;\;\;t\_1\\
              
              
              \end{array}
              \end{array}
              
              Derivation
              1. Split input into 3 regimes
              2. if (/.f64 (-.f64 z t) (-.f64 a t)) < -1.00000000000000004e48

                1. Initial program 91.7%

                  \[x + y \cdot \frac{z - t}{a - t} \]
                2. Add Preprocessing
                3. Taylor expanded in t around inf

                  \[\leadsto \color{blue}{x + y} \]
                4. Step-by-step derivation
                  1. +-commutativeN/A

                    \[\leadsto \color{blue}{y + x} \]
                  2. lower-+.f6417.3

                    \[\leadsto \color{blue}{y + x} \]
                5. Applied rewrites17.3%

                  \[\leadsto \color{blue}{y + x} \]
                6. Taylor expanded in z around inf

                  \[\leadsto \color{blue}{\frac{y \cdot z}{a - t}} \]
                7. Step-by-step derivation
                  1. associate-*l/N/A

                    \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
                  2. lower-*.f64N/A

                    \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
                  3. lower-/.f64N/A

                    \[\leadsto \color{blue}{\frac{y}{a - t}} \cdot z \]
                  4. lower--.f6482.9

                    \[\leadsto \frac{y}{\color{blue}{a - t}} \cdot z \]
                8. Applied rewrites82.9%

                  \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
                9. Taylor expanded in t around inf

                  \[\leadsto -1 \cdot \color{blue}{\frac{y \cdot z}{t}} \]
                10. Step-by-step derivation
                  1. Applied rewrites55.8%

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

                  if -1.00000000000000004e48 < (/.f64 (-.f64 z t) (-.f64 a t)) < 1.00000000000000007e-17 or 2 < (/.f64 (-.f64 z t) (-.f64 a t))

                  1. Initial program 99.2%

                    \[x + y \cdot \frac{z - t}{a - t} \]
                  2. Add Preprocessing
                  3. Taylor expanded in t around 0

                    \[\leadsto \color{blue}{x + \frac{y \cdot z}{a}} \]
                  4. Step-by-step derivation
                    1. +-commutativeN/A

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

                      \[\leadsto \color{blue}{y \cdot \frac{z}{a}} + x \]
                    3. *-commutativeN/A

                      \[\leadsto \color{blue}{\frac{z}{a} \cdot y} + x \]
                    4. lower-fma.f64N/A

                      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{z}{a}, y, x\right)} \]
                    5. lower-/.f6481.6

                      \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{z}{a}}, y, x\right) \]
                  5. Applied rewrites81.6%

                    \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{z}{a}, y, x\right)} \]

                  if 1.00000000000000007e-17 < (/.f64 (-.f64 z t) (-.f64 a t)) < 2

                  1. Initial program 100.0%

                    \[x + y \cdot \frac{z - t}{a - t} \]
                  2. Add Preprocessing
                  3. Taylor expanded in t around inf

                    \[\leadsto \color{blue}{x + y} \]
                  4. Step-by-step derivation
                    1. +-commutativeN/A

                      \[\leadsto \color{blue}{y + x} \]
                    2. lower-+.f6499.6

                      \[\leadsto \color{blue}{y + x} \]
                  5. Applied rewrites99.6%

                    \[\leadsto \color{blue}{y + x} \]
                11. Recombined 3 regimes into one program.
                12. Final simplification82.9%

                  \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{z - t}{a - t} \leq -1 \cdot 10^{+48}:\\ \;\;\;\;\frac{-z}{t} \cdot y\\ \mathbf{elif}\;\frac{z - t}{a - t} \leq 10^{-17}:\\ \;\;\;\;\mathsf{fma}\left(\frac{z}{a}, y, x\right)\\ \mathbf{elif}\;\frac{z - t}{a - t} \leq 2:\\ \;\;\;\;x + y\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(\frac{z}{a}, y, x\right)\\ \end{array} \]
                13. Add Preprocessing

                Alternative 11: 81.2% accurate, 0.4× speedup?

                \[\begin{array}{l} \\ \begin{array}{l} t_1 := \frac{z - t}{a - t}\\ t_2 := \mathsf{fma}\left(\frac{z}{a}, y, x\right)\\ \mathbf{if}\;t\_1 \leq 10^{-17}:\\ \;\;\;\;t\_2\\ \mathbf{elif}\;t\_1 \leq 2:\\ \;\;\;\;x + y\\ \mathbf{else}:\\ \;\;\;\;t\_2\\ \end{array} \end{array} \]
                (FPCore (x y z t a)
                 :precision binary64
                 (let* ((t_1 (/ (- z t) (- a t))) (t_2 (fma (/ z a) y x)))
                   (if (<= t_1 1e-17) t_2 (if (<= t_1 2.0) (+ x y) t_2))))
                double code(double x, double y, double z, double t, double a) {
                	double t_1 = (z - t) / (a - t);
                	double t_2 = fma((z / a), y, x);
                	double tmp;
                	if (t_1 <= 1e-17) {
                		tmp = t_2;
                	} else if (t_1 <= 2.0) {
                		tmp = x + y;
                	} else {
                		tmp = t_2;
                	}
                	return tmp;
                }
                
                function code(x, y, z, t, a)
                	t_1 = Float64(Float64(z - t) / Float64(a - t))
                	t_2 = fma(Float64(z / a), y, x)
                	tmp = 0.0
                	if (t_1 <= 1e-17)
                		tmp = t_2;
                	elseif (t_1 <= 2.0)
                		tmp = Float64(x + y);
                	else
                		tmp = t_2;
                	end
                	return tmp
                end
                
                code[x_, y_, z_, t_, a_] := Block[{t$95$1 = N[(N[(z - t), $MachinePrecision] / N[(a - t), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$2 = N[(N[(z / a), $MachinePrecision] * y + x), $MachinePrecision]}, If[LessEqual[t$95$1, 1e-17], t$95$2, If[LessEqual[t$95$1, 2.0], N[(x + y), $MachinePrecision], t$95$2]]]]
                
                \begin{array}{l}
                
                \\
                \begin{array}{l}
                t_1 := \frac{z - t}{a - t}\\
                t_2 := \mathsf{fma}\left(\frac{z}{a}, y, x\right)\\
                \mathbf{if}\;t\_1 \leq 10^{-17}:\\
                \;\;\;\;t\_2\\
                
                \mathbf{elif}\;t\_1 \leq 2:\\
                \;\;\;\;x + y\\
                
                \mathbf{else}:\\
                \;\;\;\;t\_2\\
                
                
                \end{array}
                \end{array}
                
                Derivation
                1. Split input into 2 regimes
                2. if (/.f64 (-.f64 z t) (-.f64 a t)) < 1.00000000000000007e-17 or 2 < (/.f64 (-.f64 z t) (-.f64 a t))

                  1. Initial program 97.8%

                    \[x + y \cdot \frac{z - t}{a - t} \]
                  2. Add Preprocessing
                  3. Taylor expanded in t around 0

                    \[\leadsto \color{blue}{x + \frac{y \cdot z}{a}} \]
                  4. Step-by-step derivation
                    1. +-commutativeN/A

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

                      \[\leadsto \color{blue}{y \cdot \frac{z}{a}} + x \]
                    3. *-commutativeN/A

                      \[\leadsto \color{blue}{\frac{z}{a} \cdot y} + x \]
                    4. lower-fma.f64N/A

                      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{z}{a}, y, x\right)} \]
                    5. lower-/.f6474.1

                      \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{z}{a}}, y, x\right) \]
                  5. Applied rewrites74.1%

                    \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{z}{a}, y, x\right)} \]

                  if 1.00000000000000007e-17 < (/.f64 (-.f64 z t) (-.f64 a t)) < 2

                  1. Initial program 100.0%

                    \[x + y \cdot \frac{z - t}{a - t} \]
                  2. Add Preprocessing
                  3. Taylor expanded in t around inf

                    \[\leadsto \color{blue}{x + y} \]
                  4. Step-by-step derivation
                    1. +-commutativeN/A

                      \[\leadsto \color{blue}{y + x} \]
                    2. lower-+.f6499.6

                      \[\leadsto \color{blue}{y + x} \]
                  5. Applied rewrites99.6%

                    \[\leadsto \color{blue}{y + x} \]
                3. Recombined 2 regimes into one program.
                4. Final simplification81.0%

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

                Alternative 12: 65.0% accurate, 0.4× speedup?

                \[\begin{array}{l} \\ \begin{array}{l} t_1 := \frac{z - t}{a - t}\\ \mathbf{if}\;t\_1 \leq -2 \cdot 10^{+144}:\\ \;\;\;\;\frac{y \cdot z}{a}\\ \mathbf{elif}\;t\_1 \leq 2 \cdot 10^{+18}:\\ \;\;\;\;x + y\\ \mathbf{else}:\\ \;\;\;\;\frac{z}{a} \cdot y\\ \end{array} \end{array} \]
                (FPCore (x y z t a)
                 :precision binary64
                 (let* ((t_1 (/ (- z t) (- a t))))
                   (if (<= t_1 -2e+144)
                     (/ (* y z) a)
                     (if (<= t_1 2e+18) (+ x y) (* (/ z a) y)))))
                double code(double x, double y, double z, double t, double a) {
                	double t_1 = (z - t) / (a - t);
                	double tmp;
                	if (t_1 <= -2e+144) {
                		tmp = (y * z) / a;
                	} else if (t_1 <= 2e+18) {
                		tmp = x + y;
                	} else {
                		tmp = (z / a) * y;
                	}
                	return tmp;
                }
                
                real(8) function code(x, y, z, t, a)
                    real(8), intent (in) :: x
                    real(8), intent (in) :: y
                    real(8), intent (in) :: z
                    real(8), intent (in) :: t
                    real(8), intent (in) :: a
                    real(8) :: t_1
                    real(8) :: tmp
                    t_1 = (z - t) / (a - t)
                    if (t_1 <= (-2d+144)) then
                        tmp = (y * z) / a
                    else if (t_1 <= 2d+18) then
                        tmp = x + y
                    else
                        tmp = (z / a) * y
                    end if
                    code = tmp
                end function
                
                public static double code(double x, double y, double z, double t, double a) {
                	double t_1 = (z - t) / (a - t);
                	double tmp;
                	if (t_1 <= -2e+144) {
                		tmp = (y * z) / a;
                	} else if (t_1 <= 2e+18) {
                		tmp = x + y;
                	} else {
                		tmp = (z / a) * y;
                	}
                	return tmp;
                }
                
                def code(x, y, z, t, a):
                	t_1 = (z - t) / (a - t)
                	tmp = 0
                	if t_1 <= -2e+144:
                		tmp = (y * z) / a
                	elif t_1 <= 2e+18:
                		tmp = x + y
                	else:
                		tmp = (z / a) * y
                	return tmp
                
                function code(x, y, z, t, a)
                	t_1 = Float64(Float64(z - t) / Float64(a - t))
                	tmp = 0.0
                	if (t_1 <= -2e+144)
                		tmp = Float64(Float64(y * z) / a);
                	elseif (t_1 <= 2e+18)
                		tmp = Float64(x + y);
                	else
                		tmp = Float64(Float64(z / a) * y);
                	end
                	return tmp
                end
                
                function tmp_2 = code(x, y, z, t, a)
                	t_1 = (z - t) / (a - t);
                	tmp = 0.0;
                	if (t_1 <= -2e+144)
                		tmp = (y * z) / a;
                	elseif (t_1 <= 2e+18)
                		tmp = x + y;
                	else
                		tmp = (z / a) * y;
                	end
                	tmp_2 = tmp;
                end
                
                code[x_, y_, z_, t_, a_] := Block[{t$95$1 = N[(N[(z - t), $MachinePrecision] / N[(a - t), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$1, -2e+144], N[(N[(y * z), $MachinePrecision] / a), $MachinePrecision], If[LessEqual[t$95$1, 2e+18], N[(x + y), $MachinePrecision], N[(N[(z / a), $MachinePrecision] * y), $MachinePrecision]]]]
                
                \begin{array}{l}
                
                \\
                \begin{array}{l}
                t_1 := \frac{z - t}{a - t}\\
                \mathbf{if}\;t\_1 \leq -2 \cdot 10^{+144}:\\
                \;\;\;\;\frac{y \cdot z}{a}\\
                
                \mathbf{elif}\;t\_1 \leq 2 \cdot 10^{+18}:\\
                \;\;\;\;x + y\\
                
                \mathbf{else}:\\
                \;\;\;\;\frac{z}{a} \cdot y\\
                
                
                \end{array}
                \end{array}
                
                Derivation
                1. Split input into 3 regimes
                2. if (/.f64 (-.f64 z t) (-.f64 a t)) < -2.00000000000000005e144

                  1. Initial program 83.0%

                    \[x + y \cdot \frac{z - t}{a - t} \]
                  2. Add Preprocessing
                  3. Taylor expanded in t around inf

                    \[\leadsto \color{blue}{x + y} \]
                  4. Step-by-step derivation
                    1. +-commutativeN/A

                      \[\leadsto \color{blue}{y + x} \]
                    2. lower-+.f641.5

                      \[\leadsto \color{blue}{y + x} \]
                  5. Applied rewrites1.5%

                    \[\leadsto \color{blue}{y + x} \]
                  6. Taylor expanded in z around inf

                    \[\leadsto \color{blue}{\frac{y \cdot z}{a - t}} \]
                  7. Step-by-step derivation
                    1. associate-*l/N/A

                      \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
                    2. lower-*.f64N/A

                      \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
                    3. lower-/.f64N/A

                      \[\leadsto \color{blue}{\frac{y}{a - t}} \cdot z \]
                    4. lower--.f6498.9

                      \[\leadsto \frac{y}{\color{blue}{a - t}} \cdot z \]
                  8. Applied rewrites98.9%

                    \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
                  9. Taylor expanded in t around 0

                    \[\leadsto \frac{y \cdot z}{\color{blue}{a}} \]
                  10. Step-by-step derivation
                    1. Applied rewrites59.5%

                      \[\leadsto \frac{z}{a} \cdot \color{blue}{y} \]
                    2. Step-by-step derivation
                      1. Applied rewrites65.5%

                        \[\leadsto \frac{z \cdot y}{a} \]

                      if -2.00000000000000005e144 < (/.f64 (-.f64 z t) (-.f64 a t)) < 2e18

                      1. Initial program 99.9%

                        \[x + y \cdot \frac{z - t}{a - t} \]
                      2. Add Preprocessing
                      3. Taylor expanded in t around inf

                        \[\leadsto \color{blue}{x + y} \]
                      4. Step-by-step derivation
                        1. +-commutativeN/A

                          \[\leadsto \color{blue}{y + x} \]
                        2. lower-+.f6469.4

                          \[\leadsto \color{blue}{y + x} \]
                      5. Applied rewrites69.4%

                        \[\leadsto \color{blue}{y + x} \]

                      if 2e18 < (/.f64 (-.f64 z t) (-.f64 a t))

                      1. Initial program 97.7%

                        \[x + y \cdot \frac{z - t}{a - t} \]
                      2. Add Preprocessing
                      3. Taylor expanded in t around inf

                        \[\leadsto \color{blue}{x + y} \]
                      4. Step-by-step derivation
                        1. +-commutativeN/A

                          \[\leadsto \color{blue}{y + x} \]
                        2. lower-+.f6431.7

                          \[\leadsto \color{blue}{y + x} \]
                      5. Applied rewrites31.7%

                        \[\leadsto \color{blue}{y + x} \]
                      6. Taylor expanded in z around inf

                        \[\leadsto \color{blue}{\frac{y \cdot z}{a - t}} \]
                      7. Step-by-step derivation
                        1. associate-*l/N/A

                          \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
                        2. lower-*.f64N/A

                          \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
                        3. lower-/.f64N/A

                          \[\leadsto \color{blue}{\frac{y}{a - t}} \cdot z \]
                        4. lower--.f6465.1

                          \[\leadsto \frac{y}{\color{blue}{a - t}} \cdot z \]
                      8. Applied rewrites65.1%

                        \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
                      9. Taylor expanded in t around 0

                        \[\leadsto \frac{y \cdot z}{\color{blue}{a}} \]
                      10. Step-by-step derivation
                        1. Applied rewrites53.9%

                          \[\leadsto \frac{z}{a} \cdot \color{blue}{y} \]
                      11. Recombined 3 regimes into one program.
                      12. Final simplification66.2%

                        \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{z - t}{a - t} \leq -2 \cdot 10^{+144}:\\ \;\;\;\;\frac{y \cdot z}{a}\\ \mathbf{elif}\;\frac{z - t}{a - t} \leq 2 \cdot 10^{+18}:\\ \;\;\;\;x + y\\ \mathbf{else}:\\ \;\;\;\;\frac{z}{a} \cdot y\\ \end{array} \]
                      13. Add Preprocessing

                      Alternative 13: 64.9% accurate, 0.4× speedup?

                      \[\begin{array}{l} \\ \begin{array}{l} t_1 := \frac{z - t}{a - t}\\ t_2 := \frac{z}{a} \cdot y\\ \mathbf{if}\;t\_1 \leq -2 \cdot 10^{+144}:\\ \;\;\;\;t\_2\\ \mathbf{elif}\;t\_1 \leq 2 \cdot 10^{+18}:\\ \;\;\;\;x + y\\ \mathbf{else}:\\ \;\;\;\;t\_2\\ \end{array} \end{array} \]
                      (FPCore (x y z t a)
                       :precision binary64
                       (let* ((t_1 (/ (- z t) (- a t))) (t_2 (* (/ z a) y)))
                         (if (<= t_1 -2e+144) t_2 (if (<= t_1 2e+18) (+ x y) t_2))))
                      double code(double x, double y, double z, double t, double a) {
                      	double t_1 = (z - t) / (a - t);
                      	double t_2 = (z / a) * y;
                      	double tmp;
                      	if (t_1 <= -2e+144) {
                      		tmp = t_2;
                      	} else if (t_1 <= 2e+18) {
                      		tmp = x + y;
                      	} else {
                      		tmp = t_2;
                      	}
                      	return tmp;
                      }
                      
                      real(8) function code(x, y, z, t, a)
                          real(8), intent (in) :: x
                          real(8), intent (in) :: y
                          real(8), intent (in) :: z
                          real(8), intent (in) :: t
                          real(8), intent (in) :: a
                          real(8) :: t_1
                          real(8) :: t_2
                          real(8) :: tmp
                          t_1 = (z - t) / (a - t)
                          t_2 = (z / a) * y
                          if (t_1 <= (-2d+144)) then
                              tmp = t_2
                          else if (t_1 <= 2d+18) then
                              tmp = x + y
                          else
                              tmp = t_2
                          end if
                          code = tmp
                      end function
                      
                      public static double code(double x, double y, double z, double t, double a) {
                      	double t_1 = (z - t) / (a - t);
                      	double t_2 = (z / a) * y;
                      	double tmp;
                      	if (t_1 <= -2e+144) {
                      		tmp = t_2;
                      	} else if (t_1 <= 2e+18) {
                      		tmp = x + y;
                      	} else {
                      		tmp = t_2;
                      	}
                      	return tmp;
                      }
                      
                      def code(x, y, z, t, a):
                      	t_1 = (z - t) / (a - t)
                      	t_2 = (z / a) * y
                      	tmp = 0
                      	if t_1 <= -2e+144:
                      		tmp = t_2
                      	elif t_1 <= 2e+18:
                      		tmp = x + y
                      	else:
                      		tmp = t_2
                      	return tmp
                      
                      function code(x, y, z, t, a)
                      	t_1 = Float64(Float64(z - t) / Float64(a - t))
                      	t_2 = Float64(Float64(z / a) * y)
                      	tmp = 0.0
                      	if (t_1 <= -2e+144)
                      		tmp = t_2;
                      	elseif (t_1 <= 2e+18)
                      		tmp = Float64(x + y);
                      	else
                      		tmp = t_2;
                      	end
                      	return tmp
                      end
                      
                      function tmp_2 = code(x, y, z, t, a)
                      	t_1 = (z - t) / (a - t);
                      	t_2 = (z / a) * y;
                      	tmp = 0.0;
                      	if (t_1 <= -2e+144)
                      		tmp = t_2;
                      	elseif (t_1 <= 2e+18)
                      		tmp = x + y;
                      	else
                      		tmp = t_2;
                      	end
                      	tmp_2 = tmp;
                      end
                      
                      code[x_, y_, z_, t_, a_] := Block[{t$95$1 = N[(N[(z - t), $MachinePrecision] / N[(a - t), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$2 = N[(N[(z / a), $MachinePrecision] * y), $MachinePrecision]}, If[LessEqual[t$95$1, -2e+144], t$95$2, If[LessEqual[t$95$1, 2e+18], N[(x + y), $MachinePrecision], t$95$2]]]]
                      
                      \begin{array}{l}
                      
                      \\
                      \begin{array}{l}
                      t_1 := \frac{z - t}{a - t}\\
                      t_2 := \frac{z}{a} \cdot y\\
                      \mathbf{if}\;t\_1 \leq -2 \cdot 10^{+144}:\\
                      \;\;\;\;t\_2\\
                      
                      \mathbf{elif}\;t\_1 \leq 2 \cdot 10^{+18}:\\
                      \;\;\;\;x + y\\
                      
                      \mathbf{else}:\\
                      \;\;\;\;t\_2\\
                      
                      
                      \end{array}
                      \end{array}
                      
                      Derivation
                      1. Split input into 2 regimes
                      2. if (/.f64 (-.f64 z t) (-.f64 a t)) < -2.00000000000000005e144 or 2e18 < (/.f64 (-.f64 z t) (-.f64 a t))

                        1. Initial program 93.9%

                          \[x + y \cdot \frac{z - t}{a - t} \]
                        2. Add Preprocessing
                        3. Taylor expanded in t around inf

                          \[\leadsto \color{blue}{x + y} \]
                        4. Step-by-step derivation
                          1. +-commutativeN/A

                            \[\leadsto \color{blue}{y + x} \]
                          2. lower-+.f6423.8

                            \[\leadsto \color{blue}{y + x} \]
                        5. Applied rewrites23.8%

                          \[\leadsto \color{blue}{y + x} \]
                        6. Taylor expanded in z around inf

                          \[\leadsto \color{blue}{\frac{y \cdot z}{a - t}} \]
                        7. Step-by-step derivation
                          1. associate-*l/N/A

                            \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
                          2. lower-*.f64N/A

                            \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
                          3. lower-/.f64N/A

                            \[\leadsto \color{blue}{\frac{y}{a - t}} \cdot z \]
                          4. lower--.f6473.9

                            \[\leadsto \frac{y}{\color{blue}{a - t}} \cdot z \]
                        8. Applied rewrites73.9%

                          \[\leadsto \color{blue}{\frac{y}{a - t} \cdot z} \]
                        9. Taylor expanded in t around 0

                          \[\leadsto \frac{y \cdot z}{\color{blue}{a}} \]
                        10. Step-by-step derivation
                          1. Applied rewrites55.4%

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

                          if -2.00000000000000005e144 < (/.f64 (-.f64 z t) (-.f64 a t)) < 2e18

                          1. Initial program 99.9%

                            \[x + y \cdot \frac{z - t}{a - t} \]
                          2. Add Preprocessing
                          3. Taylor expanded in t around inf

                            \[\leadsto \color{blue}{x + y} \]
                          4. Step-by-step derivation
                            1. +-commutativeN/A

                              \[\leadsto \color{blue}{y + x} \]
                            2. lower-+.f6469.4

                              \[\leadsto \color{blue}{y + x} \]
                          5. Applied rewrites69.4%

                            \[\leadsto \color{blue}{y + x} \]
                        11. Recombined 2 regimes into one program.
                        12. Final simplification65.8%

                          \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{z - t}{a - t} \leq -2 \cdot 10^{+144}:\\ \;\;\;\;\frac{z}{a} \cdot y\\ \mathbf{elif}\;\frac{z - t}{a - t} \leq 2 \cdot 10^{+18}:\\ \;\;\;\;x + y\\ \mathbf{else}:\\ \;\;\;\;\frac{z}{a} \cdot y\\ \end{array} \]
                        13. Add Preprocessing

                        Alternative 14: 98.0% accurate, 1.1× speedup?

                        \[\begin{array}{l} \\ \mathsf{fma}\left(\frac{t - z}{t - a}, y, x\right) \end{array} \]
                        (FPCore (x y z t a) :precision binary64 (fma (/ (- t z) (- t a)) y x))
                        double code(double x, double y, double z, double t, double a) {
                        	return fma(((t - z) / (t - a)), y, x);
                        }
                        
                        function code(x, y, z, t, a)
                        	return fma(Float64(Float64(t - z) / Float64(t - a)), y, x)
                        end
                        
                        code[x_, y_, z_, t_, a_] := N[(N[(N[(t - z), $MachinePrecision] / N[(t - a), $MachinePrecision]), $MachinePrecision] * y + x), $MachinePrecision]
                        
                        \begin{array}{l}
                        
                        \\
                        \mathsf{fma}\left(\frac{t - z}{t - a}, y, x\right)
                        \end{array}
                        
                        Derivation
                        1. Initial program 98.4%

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

                            \[\leadsto \color{blue}{x + y \cdot \frac{z - t}{a - t}} \]
                          2. +-commutativeN/A

                            \[\leadsto \color{blue}{y \cdot \frac{z - t}{a - t} + x} \]
                          3. lift-*.f64N/A

                            \[\leadsto \color{blue}{y \cdot \frac{z - t}{a - t}} + x \]
                          4. *-commutativeN/A

                            \[\leadsto \color{blue}{\frac{z - t}{a - t} \cdot y} + x \]
                          5. lower-fma.f6498.4

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

                            \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{z - t}{a - t}}, y, x\right) \]
                          7. frac-2negN/A

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

                            \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{\mathsf{neg}\left(\left(z - t\right)\right)}{\mathsf{neg}\left(\left(a - t\right)\right)}}, y, x\right) \]
                          9. neg-sub0N/A

                            \[\leadsto \mathsf{fma}\left(\frac{\color{blue}{0 - \left(z - t\right)}}{\mathsf{neg}\left(\left(a - t\right)\right)}, y, x\right) \]
                          10. lift--.f64N/A

                            \[\leadsto \mathsf{fma}\left(\frac{0 - \color{blue}{\left(z - t\right)}}{\mathsf{neg}\left(\left(a - t\right)\right)}, y, x\right) \]
                          11. sub-negN/A

                            \[\leadsto \mathsf{fma}\left(\frac{0 - \color{blue}{\left(z + \left(\mathsf{neg}\left(t\right)\right)\right)}}{\mathsf{neg}\left(\left(a - t\right)\right)}, y, x\right) \]
                          12. +-commutativeN/A

                            \[\leadsto \mathsf{fma}\left(\frac{0 - \color{blue}{\left(\left(\mathsf{neg}\left(t\right)\right) + z\right)}}{\mathsf{neg}\left(\left(a - t\right)\right)}, y, x\right) \]
                          13. associate--r+N/A

                            \[\leadsto \mathsf{fma}\left(\frac{\color{blue}{\left(0 - \left(\mathsf{neg}\left(t\right)\right)\right) - z}}{\mathsf{neg}\left(\left(a - t\right)\right)}, y, x\right) \]
                          14. neg-sub0N/A

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

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

                            \[\leadsto \mathsf{fma}\left(\frac{\color{blue}{t - z}}{\mathsf{neg}\left(\left(a - t\right)\right)}, y, x\right) \]
                          17. neg-sub0N/A

                            \[\leadsto \mathsf{fma}\left(\frac{t - z}{\color{blue}{0 - \left(a - t\right)}}, y, x\right) \]
                          18. lift--.f64N/A

                            \[\leadsto \mathsf{fma}\left(\frac{t - z}{0 - \color{blue}{\left(a - t\right)}}, y, x\right) \]
                          19. sub-negN/A

                            \[\leadsto \mathsf{fma}\left(\frac{t - z}{0 - \color{blue}{\left(a + \left(\mathsf{neg}\left(t\right)\right)\right)}}, y, x\right) \]
                          20. +-commutativeN/A

                            \[\leadsto \mathsf{fma}\left(\frac{t - z}{0 - \color{blue}{\left(\left(\mathsf{neg}\left(t\right)\right) + a\right)}}, y, x\right) \]
                          21. associate--r+N/A

                            \[\leadsto \mathsf{fma}\left(\frac{t - z}{\color{blue}{\left(0 - \left(\mathsf{neg}\left(t\right)\right)\right) - a}}, y, x\right) \]
                          22. neg-sub0N/A

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

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

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

                          \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{t - z}{t - a}, y, x\right)} \]
                        5. Add Preprocessing

                        Alternative 15: 96.0% accurate, 1.1× speedup?

                        \[\begin{array}{l} \\ \mathsf{fma}\left(\frac{y}{t - a}, t - z, x\right) \end{array} \]
                        (FPCore (x y z t a) :precision binary64 (fma (/ y (- t a)) (- t z) x))
                        double code(double x, double y, double z, double t, double a) {
                        	return fma((y / (t - a)), (t - z), x);
                        }
                        
                        function code(x, y, z, t, a)
                        	return fma(Float64(y / Float64(t - a)), Float64(t - z), x)
                        end
                        
                        code[x_, y_, z_, t_, a_] := N[(N[(y / N[(t - a), $MachinePrecision]), $MachinePrecision] * N[(t - z), $MachinePrecision] + x), $MachinePrecision]
                        
                        \begin{array}{l}
                        
                        \\
                        \mathsf{fma}\left(\frac{y}{t - a}, t - z, x\right)
                        \end{array}
                        
                        Derivation
                        1. Initial program 98.4%

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

                            \[\leadsto \color{blue}{x + y \cdot \frac{z - t}{a - t}} \]
                          2. +-commutativeN/A

                            \[\leadsto \color{blue}{y \cdot \frac{z - t}{a - t} + x} \]
                          3. lift-*.f64N/A

                            \[\leadsto \color{blue}{y \cdot \frac{z - t}{a - t}} + x \]
                          4. lift-/.f64N/A

                            \[\leadsto y \cdot \color{blue}{\frac{z - t}{a - t}} + x \]
                          5. clear-numN/A

                            \[\leadsto y \cdot \color{blue}{\frac{1}{\frac{a - t}{z - t}}} + x \]
                          6. un-div-invN/A

                            \[\leadsto \color{blue}{\frac{y}{\frac{a - t}{z - t}}} + x \]
                          7. frac-2negN/A

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

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

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

                          \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{y}{t - a}, t - z, x\right)} \]
                        5. Add Preprocessing

                        Alternative 16: 60.9% accurate, 6.5× speedup?

                        \[\begin{array}{l} \\ x + y \end{array} \]
                        (FPCore (x y z t a) :precision binary64 (+ x y))
                        double code(double x, double y, double z, double t, double a) {
                        	return x + y;
                        }
                        
                        real(8) function code(x, y, z, t, a)
                            real(8), intent (in) :: x
                            real(8), intent (in) :: y
                            real(8), intent (in) :: z
                            real(8), intent (in) :: t
                            real(8), intent (in) :: a
                            code = x + y
                        end function
                        
                        public static double code(double x, double y, double z, double t, double a) {
                        	return x + y;
                        }
                        
                        def code(x, y, z, t, a):
                        	return x + y
                        
                        function code(x, y, z, t, a)
                        	return Float64(x + y)
                        end
                        
                        function tmp = code(x, y, z, t, a)
                        	tmp = x + y;
                        end
                        
                        code[x_, y_, z_, t_, a_] := N[(x + y), $MachinePrecision]
                        
                        \begin{array}{l}
                        
                        \\
                        x + y
                        \end{array}
                        
                        Derivation
                        1. Initial program 98.4%

                          \[x + y \cdot \frac{z - t}{a - t} \]
                        2. Add Preprocessing
                        3. Taylor expanded in t around inf

                          \[\leadsto \color{blue}{x + y} \]
                        4. Step-by-step derivation
                          1. +-commutativeN/A

                            \[\leadsto \color{blue}{y + x} \]
                          2. lower-+.f6457.8

                            \[\leadsto \color{blue}{y + x} \]
                        5. Applied rewrites57.8%

                          \[\leadsto \color{blue}{y + x} \]
                        6. Final simplification57.8%

                          \[\leadsto x + y \]
                        7. Add Preprocessing

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

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

                        Reproduce

                        ?
                        herbie shell --seed 2024332 
                        (FPCore (x y z t a)
                          :name "Graphics.Rendering.Plot.Render.Plot.Axis:renderAxisLine from plot-0.2.3.4, B"
                          :precision binary64
                        
                          :alt
                          (! :herbie-platform default (if (< y -8508084860551241/100000000000000000000000000000000) (+ x (* y (/ (- z t) (- a t)))) (if (< y 2894426862792089/10000000000000000000000000000000000000000000000000000000000000000) (+ x (* (* y (- z t)) (/ 1 (- a t)))) (+ x (* y (/ (- z t) (- a t)))))))
                        
                          (+ x (* y (/ (- z t) (- a t)))))