Graphics.Rendering.Plot.Render.Plot.Axis:renderAxisTicks from plot-0.2.3.4, A

Percentage Accurate: 85.5% → 98.4%
Time: 10.0s
Alternatives: 17
Speedup: 1.0×

Specification

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

\\
x + \frac{y \cdot \left(z - t\right)}{z - a}
\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 17 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: 85.5% accurate, 1.0× speedup?

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

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

Alternative 1: 98.4% accurate, 1.0× speedup?

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

\\
x + \frac{y}{\frac{z - a}{z - t}}
\end{array}
Derivation
  1. Initial program 84.7%

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

      \[\leadsto \mathsf{+.f64}\left(x, \left(y \cdot \color{blue}{\frac{z - t}{z - a}}\right)\right) \]
    2. clear-numN/A

      \[\leadsto \mathsf{+.f64}\left(x, \left(y \cdot \frac{1}{\color{blue}{\frac{z - a}{z - t}}}\right)\right) \]
    3. un-div-invN/A

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

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

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

      \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(y, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(z, a\right), \left(\color{blue}{z} - t\right)\right)\right)\right) \]
    7. --lowering--.f6498.1%

      \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(y, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(z, a\right), \mathsf{\_.f64}\left(z, \color{blue}{t}\right)\right)\right)\right) \]
  4. Applied egg-rr98.1%

    \[\leadsto x + \color{blue}{\frac{y}{\frac{z - a}{z - t}}} \]
  5. Add Preprocessing

Alternative 2: 83.2% accurate, 0.6× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_1 := x + \frac{y}{\frac{z - a}{z}}\\ \mathbf{if}\;z \leq -5.1 \cdot 10^{-48}:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;z \leq 2.05 \cdot 10^{-67}:\\ \;\;\;\;x + y \cdot \frac{t - z}{a}\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \end{array} \]
(FPCore (x y z t a)
 :precision binary64
 (let* ((t_1 (+ x (/ y (/ (- z a) z)))))
   (if (<= z -5.1e-48)
     t_1
     (if (<= z 2.05e-67) (+ x (* y (/ (- t z) a))) t_1))))
double code(double x, double y, double z, double t, double a) {
	double t_1 = x + (y / ((z - a) / z));
	double tmp;
	if (z <= -5.1e-48) {
		tmp = t_1;
	} else if (z <= 2.05e-67) {
		tmp = x + (y * ((t - z) / a));
	} 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 - a) / z))
    if (z <= (-5.1d-48)) then
        tmp = t_1
    else if (z <= 2.05d-67) then
        tmp = x + (y * ((t - z) / a))
    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 - a) / z));
	double tmp;
	if (z <= -5.1e-48) {
		tmp = t_1;
	} else if (z <= 2.05e-67) {
		tmp = x + (y * ((t - z) / a));
	} else {
		tmp = t_1;
	}
	return tmp;
}
def code(x, y, z, t, a):
	t_1 = x + (y / ((z - a) / z))
	tmp = 0
	if z <= -5.1e-48:
		tmp = t_1
	elif z <= 2.05e-67:
		tmp = x + (y * ((t - z) / a))
	else:
		tmp = t_1
	return tmp
function code(x, y, z, t, a)
	t_1 = Float64(x + Float64(y / Float64(Float64(z - a) / z)))
	tmp = 0.0
	if (z <= -5.1e-48)
		tmp = t_1;
	elseif (z <= 2.05e-67)
		tmp = Float64(x + Float64(y * Float64(Float64(t - z) / a)));
	else
		tmp = t_1;
	end
	return tmp
end
function tmp_2 = code(x, y, z, t, a)
	t_1 = x + (y / ((z - a) / z));
	tmp = 0.0;
	if (z <= -5.1e-48)
		tmp = t_1;
	elseif (z <= 2.05e-67)
		tmp = x + (y * ((t - z) / a));
	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 - a), $MachinePrecision] / z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[z, -5.1e-48], t$95$1, If[LessEqual[z, 2.05e-67], N[(x + N[(y * N[(N[(t - z), $MachinePrecision] / a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], t$95$1]]]
\begin{array}{l}

\\
\begin{array}{l}
t_1 := x + \frac{y}{\frac{z - a}{z}}\\
\mathbf{if}\;z \leq -5.1 \cdot 10^{-48}:\\
\;\;\;\;t\_1\\

\mathbf{elif}\;z \leq 2.05 \cdot 10^{-67}:\\
\;\;\;\;x + y \cdot \frac{t - z}{a}\\

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


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if z < -5.10000000000000011e-48 or 2.0499999999999999e-67 < z

    1. Initial program 79.8%

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

        \[\leadsto \mathsf{+.f64}\left(x, \left(y \cdot \color{blue}{\frac{z - t}{z - a}}\right)\right) \]
      2. clear-numN/A

        \[\leadsto \mathsf{+.f64}\left(x, \left(y \cdot \frac{1}{\color{blue}{\frac{z - a}{z - t}}}\right)\right) \]
      3. un-div-invN/A

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

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

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

        \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(y, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(z, a\right), \left(\color{blue}{z} - t\right)\right)\right)\right) \]
      7. --lowering--.f6499.9%

        \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(y, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(z, a\right), \mathsf{\_.f64}\left(z, \color{blue}{t}\right)\right)\right)\right) \]
    4. Applied egg-rr99.9%

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

      \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(y, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(z, a\right), \color{blue}{z}\right)\right)\right) \]
    6. Step-by-step derivation
      1. Simplified88.3%

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

      if -5.10000000000000011e-48 < z < 2.0499999999999999e-67

      1. Initial program 93.7%

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

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

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

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

          \[\leadsto \mathsf{\_.f64}\left(x, \color{blue}{\left(\frac{y \cdot \left(z - t\right)}{a}\right)}\right) \]
        4. associate-/l*N/A

          \[\leadsto \mathsf{\_.f64}\left(x, \left(y \cdot \color{blue}{\frac{z - t}{a}}\right)\right) \]
        5. *-lowering-*.f64N/A

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

          \[\leadsto \mathsf{\_.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{/.f64}\left(\left(z - t\right), \color{blue}{a}\right)\right)\right) \]
        7. --lowering--.f6482.6%

          \[\leadsto \mathsf{\_.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(z, t\right), a\right)\right)\right) \]
      5. Simplified82.6%

        \[\leadsto \color{blue}{x - y \cdot \frac{z - t}{a}} \]
    7. Recombined 2 regimes into one program.
    8. Final simplification86.3%

      \[\leadsto \begin{array}{l} \mathbf{if}\;z \leq -5.1 \cdot 10^{-48}:\\ \;\;\;\;x + \frac{y}{\frac{z - a}{z}}\\ \mathbf{elif}\;z \leq 2.05 \cdot 10^{-67}:\\ \;\;\;\;x + y \cdot \frac{t - z}{a}\\ \mathbf{else}:\\ \;\;\;\;x + \frac{y}{\frac{z - a}{z}}\\ \end{array} \]
    9. Add Preprocessing

    Alternative 3: 82.0% accurate, 0.6× speedup?

    \[\begin{array}{l} \\ \begin{array}{l} t_1 := x + \frac{y}{\frac{z - a}{z}}\\ \mathbf{if}\;z \leq -1.95 \cdot 10^{-47}:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;z \leq 3.1 \cdot 10^{-106}:\\ \;\;\;\;x + t \cdot \left(y \cdot \frac{1}{a}\right)\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \end{array} \]
    (FPCore (x y z t a)
     :precision binary64
     (let* ((t_1 (+ x (/ y (/ (- z a) z)))))
       (if (<= z -1.95e-47)
         t_1
         (if (<= z 3.1e-106) (+ x (* t (* y (/ 1.0 a)))) t_1))))
    double code(double x, double y, double z, double t, double a) {
    	double t_1 = x + (y / ((z - a) / z));
    	double tmp;
    	if (z <= -1.95e-47) {
    		tmp = t_1;
    	} else if (z <= 3.1e-106) {
    		tmp = x + (t * (y * (1.0 / a)));
    	} 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 - a) / z))
        if (z <= (-1.95d-47)) then
            tmp = t_1
        else if (z <= 3.1d-106) then
            tmp = x + (t * (y * (1.0d0 / a)))
        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 - a) / z));
    	double tmp;
    	if (z <= -1.95e-47) {
    		tmp = t_1;
    	} else if (z <= 3.1e-106) {
    		tmp = x + (t * (y * (1.0 / a)));
    	} else {
    		tmp = t_1;
    	}
    	return tmp;
    }
    
    def code(x, y, z, t, a):
    	t_1 = x + (y / ((z - a) / z))
    	tmp = 0
    	if z <= -1.95e-47:
    		tmp = t_1
    	elif z <= 3.1e-106:
    		tmp = x + (t * (y * (1.0 / a)))
    	else:
    		tmp = t_1
    	return tmp
    
    function code(x, y, z, t, a)
    	t_1 = Float64(x + Float64(y / Float64(Float64(z - a) / z)))
    	tmp = 0.0
    	if (z <= -1.95e-47)
    		tmp = t_1;
    	elseif (z <= 3.1e-106)
    		tmp = Float64(x + Float64(t * Float64(y * Float64(1.0 / a))));
    	else
    		tmp = t_1;
    	end
    	return tmp
    end
    
    function tmp_2 = code(x, y, z, t, a)
    	t_1 = x + (y / ((z - a) / z));
    	tmp = 0.0;
    	if (z <= -1.95e-47)
    		tmp = t_1;
    	elseif (z <= 3.1e-106)
    		tmp = x + (t * (y * (1.0 / a)));
    	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 - a), $MachinePrecision] / z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[z, -1.95e-47], t$95$1, If[LessEqual[z, 3.1e-106], N[(x + N[(t * N[(y * N[(1.0 / a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], t$95$1]]]
    
    \begin{array}{l}
    
    \\
    \begin{array}{l}
    t_1 := x + \frac{y}{\frac{z - a}{z}}\\
    \mathbf{if}\;z \leq -1.95 \cdot 10^{-47}:\\
    \;\;\;\;t\_1\\
    
    \mathbf{elif}\;z \leq 3.1 \cdot 10^{-106}:\\
    \;\;\;\;x + t \cdot \left(y \cdot \frac{1}{a}\right)\\
    
    \mathbf{else}:\\
    \;\;\;\;t\_1\\
    
    
    \end{array}
    \end{array}
    
    Derivation
    1. Split input into 2 regimes
    2. if z < -1.94999999999999989e-47 or 3.09999999999999985e-106 < z

      1. Initial program 80.6%

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

          \[\leadsto \mathsf{+.f64}\left(x, \left(y \cdot \color{blue}{\frac{z - t}{z - a}}\right)\right) \]
        2. clear-numN/A

          \[\leadsto \mathsf{+.f64}\left(x, \left(y \cdot \frac{1}{\color{blue}{\frac{z - a}{z - t}}}\right)\right) \]
        3. un-div-invN/A

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

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

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

          \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(y, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(z, a\right), \left(\color{blue}{z} - t\right)\right)\right)\right) \]
        7. --lowering--.f6499.9%

          \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(y, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(z, a\right), \mathsf{\_.f64}\left(z, \color{blue}{t}\right)\right)\right)\right) \]
      4. Applied egg-rr99.9%

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

        \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(y, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(z, a\right), \color{blue}{z}\right)\right)\right) \]
      6. Step-by-step derivation
        1. Simplified86.9%

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

        if -1.94999999999999989e-47 < z < 3.09999999999999985e-106

        1. Initial program 94.0%

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

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

            \[\leadsto \mathsf{+.f64}\left(x, \color{blue}{\left(\frac{t \cdot y}{a}\right)}\right) \]
          2. /-lowering-/.f64N/A

            \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(\left(t \cdot y\right), \color{blue}{a}\right)\right) \]
          3. *-commutativeN/A

            \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(\left(y \cdot t\right), a\right)\right) \]
          4. *-lowering-*.f6482.6%

            \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(\mathsf{*.f64}\left(y, t\right), a\right)\right) \]
        5. Simplified82.6%

          \[\leadsto \color{blue}{x + \frac{y \cdot t}{a}} \]
        6. Step-by-step derivation
          1. div-invN/A

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

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

            \[\leadsto \mathsf{+.f64}\left(x, \left(t \cdot \color{blue}{\left(y \cdot \frac{1}{a}\right)}\right)\right) \]
          4. *-lowering-*.f64N/A

            \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(t, \color{blue}{\left(y \cdot \frac{1}{a}\right)}\right)\right) \]
          5. *-lowering-*.f64N/A

            \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(t, \mathsf{*.f64}\left(y, \color{blue}{\left(\frac{1}{a}\right)}\right)\right)\right) \]
          6. /-lowering-/.f6484.9%

            \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(t, \mathsf{*.f64}\left(y, \mathsf{/.f64}\left(1, \color{blue}{a}\right)\right)\right)\right) \]
        7. Applied egg-rr84.9%

          \[\leadsto x + \color{blue}{t \cdot \left(y \cdot \frac{1}{a}\right)} \]
      7. Recombined 2 regimes into one program.
      8. Add Preprocessing

      Alternative 4: 82.2% accurate, 0.6× speedup?

      \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;z \leq -5 \cdot 10^{-39}:\\ \;\;\;\;x + \frac{y}{\frac{z}{z - t}}\\ \mathbf{elif}\;z \leq 2.6 \cdot 10^{-74}:\\ \;\;\;\;x + t \cdot \left(y \cdot \frac{1}{a}\right)\\ \mathbf{else}:\\ \;\;\;\;x + z \cdot \frac{y}{z - a}\\ \end{array} \end{array} \]
      (FPCore (x y z t a)
       :precision binary64
       (if (<= z -5e-39)
         (+ x (/ y (/ z (- z t))))
         (if (<= z 2.6e-74) (+ x (* t (* y (/ 1.0 a)))) (+ x (* z (/ y (- z a)))))))
      double code(double x, double y, double z, double t, double a) {
      	double tmp;
      	if (z <= -5e-39) {
      		tmp = x + (y / (z / (z - t)));
      	} else if (z <= 2.6e-74) {
      		tmp = x + (t * (y * (1.0 / a)));
      	} else {
      		tmp = x + (z * (y / (z - a)));
      	}
      	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) :: tmp
          if (z <= (-5d-39)) then
              tmp = x + (y / (z / (z - t)))
          else if (z <= 2.6d-74) then
              tmp = x + (t * (y * (1.0d0 / a)))
          else
              tmp = x + (z * (y / (z - a)))
          end if
          code = tmp
      end function
      
      public static double code(double x, double y, double z, double t, double a) {
      	double tmp;
      	if (z <= -5e-39) {
      		tmp = x + (y / (z / (z - t)));
      	} else if (z <= 2.6e-74) {
      		tmp = x + (t * (y * (1.0 / a)));
      	} else {
      		tmp = x + (z * (y / (z - a)));
      	}
      	return tmp;
      }
      
      def code(x, y, z, t, a):
      	tmp = 0
      	if z <= -5e-39:
      		tmp = x + (y / (z / (z - t)))
      	elif z <= 2.6e-74:
      		tmp = x + (t * (y * (1.0 / a)))
      	else:
      		tmp = x + (z * (y / (z - a)))
      	return tmp
      
      function code(x, y, z, t, a)
      	tmp = 0.0
      	if (z <= -5e-39)
      		tmp = Float64(x + Float64(y / Float64(z / Float64(z - t))));
      	elseif (z <= 2.6e-74)
      		tmp = Float64(x + Float64(t * Float64(y * Float64(1.0 / a))));
      	else
      		tmp = Float64(x + Float64(z * Float64(y / Float64(z - a))));
      	end
      	return tmp
      end
      
      function tmp_2 = code(x, y, z, t, a)
      	tmp = 0.0;
      	if (z <= -5e-39)
      		tmp = x + (y / (z / (z - t)));
      	elseif (z <= 2.6e-74)
      		tmp = x + (t * (y * (1.0 / a)));
      	else
      		tmp = x + (z * (y / (z - a)));
      	end
      	tmp_2 = tmp;
      end
      
      code[x_, y_, z_, t_, a_] := If[LessEqual[z, -5e-39], N[(x + N[(y / N[(z / N[(z - t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[z, 2.6e-74], N[(x + N[(t * N[(y * N[(1.0 / a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(x + N[(z * N[(y / N[(z - a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]
      
      \begin{array}{l}
      
      \\
      \begin{array}{l}
      \mathbf{if}\;z \leq -5 \cdot 10^{-39}:\\
      \;\;\;\;x + \frac{y}{\frac{z}{z - t}}\\
      
      \mathbf{elif}\;z \leq 2.6 \cdot 10^{-74}:\\
      \;\;\;\;x + t \cdot \left(y \cdot \frac{1}{a}\right)\\
      
      \mathbf{else}:\\
      \;\;\;\;x + z \cdot \frac{y}{z - a}\\
      
      
      \end{array}
      \end{array}
      
      Derivation
      1. Split input into 3 regimes
      2. if z < -4.9999999999999998e-39

        1. Initial program 83.7%

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

            \[\leadsto \mathsf{+.f64}\left(x, \left(y \cdot \color{blue}{\frac{z - t}{z - a}}\right)\right) \]
          2. clear-numN/A

            \[\leadsto \mathsf{+.f64}\left(x, \left(y \cdot \frac{1}{\color{blue}{\frac{z - a}{z - t}}}\right)\right) \]
          3. un-div-invN/A

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

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

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

            \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(y, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(z, a\right), \left(\color{blue}{z} - t\right)\right)\right)\right) \]
          7. --lowering--.f64100.0%

            \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(y, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(z, a\right), \mathsf{\_.f64}\left(z, \color{blue}{t}\right)\right)\right)\right) \]
        4. Applied egg-rr100.0%

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

          \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(y, \color{blue}{\left(\frac{z}{z - t}\right)}\right)\right) \]
        6. Step-by-step derivation
          1. /-lowering-/.f64N/A

            \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(y, \mathsf{/.f64}\left(z, \color{blue}{\left(z - t\right)}\right)\right)\right) \]
          2. --lowering--.f6482.5%

            \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(y, \mathsf{/.f64}\left(z, \mathsf{\_.f64}\left(z, \color{blue}{t}\right)\right)\right)\right) \]
        7. Simplified82.5%

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

        if -4.9999999999999998e-39 < z < 2.6000000000000001e-74

        1. Initial program 93.6%

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

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

            \[\leadsto \mathsf{+.f64}\left(x, \color{blue}{\left(\frac{t \cdot y}{a}\right)}\right) \]
          2. /-lowering-/.f64N/A

            \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(\left(t \cdot y\right), \color{blue}{a}\right)\right) \]
          3. *-commutativeN/A

            \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(\left(y \cdot t\right), a\right)\right) \]
          4. *-lowering-*.f6477.3%

            \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(\mathsf{*.f64}\left(y, t\right), a\right)\right) \]
        5. Simplified77.3%

          \[\leadsto \color{blue}{x + \frac{y \cdot t}{a}} \]
        6. Step-by-step derivation
          1. div-invN/A

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

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

            \[\leadsto \mathsf{+.f64}\left(x, \left(t \cdot \color{blue}{\left(y \cdot \frac{1}{a}\right)}\right)\right) \]
          4. *-lowering-*.f64N/A

            \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(t, \color{blue}{\left(y \cdot \frac{1}{a}\right)}\right)\right) \]
          5. *-lowering-*.f64N/A

            \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(t, \mathsf{*.f64}\left(y, \color{blue}{\left(\frac{1}{a}\right)}\right)\right)\right) \]
          6. /-lowering-/.f6480.4%

            \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(t, \mathsf{*.f64}\left(y, \mathsf{/.f64}\left(1, \color{blue}{a}\right)\right)\right)\right) \]
        7. Applied egg-rr80.4%

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

        if 2.6000000000000001e-74 < z

        1. Initial program 76.6%

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

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

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

            \[\leadsto \mathsf{+.f64}\left(x, \left(\frac{y}{z - a} \cdot \color{blue}{\left(z - t\right)}\right)\right) \]
          4. *-lowering-*.f64N/A

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

            \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{/.f64}\left(y, \left(z - a\right)\right), \left(\color{blue}{z} - t\right)\right)\right) \]
          6. --lowering--.f64N/A

            \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{/.f64}\left(y, \mathsf{\_.f64}\left(z, a\right)\right), \left(z - t\right)\right)\right) \]
          7. --lowering--.f6497.6%

            \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{/.f64}\left(y, \mathsf{\_.f64}\left(z, a\right)\right), \mathsf{\_.f64}\left(z, \color{blue}{t}\right)\right)\right) \]
        4. Applied egg-rr97.6%

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

          \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{/.f64}\left(y, \mathsf{\_.f64}\left(z, a\right)\right), \color{blue}{z}\right)\right) \]
        6. Step-by-step derivation
          1. Simplified89.2%

            \[\leadsto x + \frac{y}{z - a} \cdot \color{blue}{z} \]
        7. Recombined 3 regimes into one program.
        8. Final simplification84.1%

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

        Alternative 5: 82.2% accurate, 0.6× speedup?

        \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;z \leq -1.16 \cdot 10^{-38}:\\ \;\;\;\;x + y \cdot \left(1 - \frac{t}{z}\right)\\ \mathbf{elif}\;z \leq 8 \cdot 10^{-77}:\\ \;\;\;\;x + t \cdot \left(y \cdot \frac{1}{a}\right)\\ \mathbf{else}:\\ \;\;\;\;x + z \cdot \frac{y}{z - a}\\ \end{array} \end{array} \]
        (FPCore (x y z t a)
         :precision binary64
         (if (<= z -1.16e-38)
           (+ x (* y (- 1.0 (/ t z))))
           (if (<= z 8e-77) (+ x (* t (* y (/ 1.0 a)))) (+ x (* z (/ y (- z a)))))))
        double code(double x, double y, double z, double t, double a) {
        	double tmp;
        	if (z <= -1.16e-38) {
        		tmp = x + (y * (1.0 - (t / z)));
        	} else if (z <= 8e-77) {
        		tmp = x + (t * (y * (1.0 / a)));
        	} else {
        		tmp = x + (z * (y / (z - a)));
        	}
        	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) :: tmp
            if (z <= (-1.16d-38)) then
                tmp = x + (y * (1.0d0 - (t / z)))
            else if (z <= 8d-77) then
                tmp = x + (t * (y * (1.0d0 / a)))
            else
                tmp = x + (z * (y / (z - a)))
            end if
            code = tmp
        end function
        
        public static double code(double x, double y, double z, double t, double a) {
        	double tmp;
        	if (z <= -1.16e-38) {
        		tmp = x + (y * (1.0 - (t / z)));
        	} else if (z <= 8e-77) {
        		tmp = x + (t * (y * (1.0 / a)));
        	} else {
        		tmp = x + (z * (y / (z - a)));
        	}
        	return tmp;
        }
        
        def code(x, y, z, t, a):
        	tmp = 0
        	if z <= -1.16e-38:
        		tmp = x + (y * (1.0 - (t / z)))
        	elif z <= 8e-77:
        		tmp = x + (t * (y * (1.0 / a)))
        	else:
        		tmp = x + (z * (y / (z - a)))
        	return tmp
        
        function code(x, y, z, t, a)
        	tmp = 0.0
        	if (z <= -1.16e-38)
        		tmp = Float64(x + Float64(y * Float64(1.0 - Float64(t / z))));
        	elseif (z <= 8e-77)
        		tmp = Float64(x + Float64(t * Float64(y * Float64(1.0 / a))));
        	else
        		tmp = Float64(x + Float64(z * Float64(y / Float64(z - a))));
        	end
        	return tmp
        end
        
        function tmp_2 = code(x, y, z, t, a)
        	tmp = 0.0;
        	if (z <= -1.16e-38)
        		tmp = x + (y * (1.0 - (t / z)));
        	elseif (z <= 8e-77)
        		tmp = x + (t * (y * (1.0 / a)));
        	else
        		tmp = x + (z * (y / (z - a)));
        	end
        	tmp_2 = tmp;
        end
        
        code[x_, y_, z_, t_, a_] := If[LessEqual[z, -1.16e-38], N[(x + N[(y * N[(1.0 - N[(t / z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[z, 8e-77], N[(x + N[(t * N[(y * N[(1.0 / a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(x + N[(z * N[(y / N[(z - a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]
        
        \begin{array}{l}
        
        \\
        \begin{array}{l}
        \mathbf{if}\;z \leq -1.16 \cdot 10^{-38}:\\
        \;\;\;\;x + y \cdot \left(1 - \frac{t}{z}\right)\\
        
        \mathbf{elif}\;z \leq 8 \cdot 10^{-77}:\\
        \;\;\;\;x + t \cdot \left(y \cdot \frac{1}{a}\right)\\
        
        \mathbf{else}:\\
        \;\;\;\;x + z \cdot \frac{y}{z - a}\\
        
        
        \end{array}
        \end{array}
        
        Derivation
        1. Split input into 3 regimes
        2. if z < -1.15999999999999995e-38

          1. Initial program 83.7%

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

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

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

              \[\leadsto \mathsf{+.f64}\left(x, \left(y \cdot \color{blue}{\frac{z - t}{z}}\right)\right) \]
            3. *-lowering-*.f64N/A

              \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(y, \color{blue}{\left(\frac{z - t}{z}\right)}\right)\right) \]
            4. div-subN/A

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

              \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(y, \left(1 - \frac{\color{blue}{t}}{z}\right)\right)\right) \]
            6. --lowering--.f64N/A

              \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{\_.f64}\left(1, \color{blue}{\left(\frac{t}{z}\right)}\right)\right)\right) \]
            7. /-lowering-/.f6482.5%

              \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{\_.f64}\left(1, \mathsf{/.f64}\left(t, \color{blue}{z}\right)\right)\right)\right) \]
          5. Simplified82.5%

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

          if -1.15999999999999995e-38 < z < 7.9999999999999994e-77

          1. Initial program 93.6%

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

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

              \[\leadsto \mathsf{+.f64}\left(x, \color{blue}{\left(\frac{t \cdot y}{a}\right)}\right) \]
            2. /-lowering-/.f64N/A

              \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(\left(t \cdot y\right), \color{blue}{a}\right)\right) \]
            3. *-commutativeN/A

              \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(\left(y \cdot t\right), a\right)\right) \]
            4. *-lowering-*.f6477.3%

              \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(\mathsf{*.f64}\left(y, t\right), a\right)\right) \]
          5. Simplified77.3%

            \[\leadsto \color{blue}{x + \frac{y \cdot t}{a}} \]
          6. Step-by-step derivation
            1. div-invN/A

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

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

              \[\leadsto \mathsf{+.f64}\left(x, \left(t \cdot \color{blue}{\left(y \cdot \frac{1}{a}\right)}\right)\right) \]
            4. *-lowering-*.f64N/A

              \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(t, \color{blue}{\left(y \cdot \frac{1}{a}\right)}\right)\right) \]
            5. *-lowering-*.f64N/A

              \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(t, \mathsf{*.f64}\left(y, \color{blue}{\left(\frac{1}{a}\right)}\right)\right)\right) \]
            6. /-lowering-/.f6480.4%

              \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(t, \mathsf{*.f64}\left(y, \mathsf{/.f64}\left(1, \color{blue}{a}\right)\right)\right)\right) \]
          7. Applied egg-rr80.4%

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

          if 7.9999999999999994e-77 < z

          1. Initial program 76.6%

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

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

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

              \[\leadsto \mathsf{+.f64}\left(x, \left(\frac{y}{z - a} \cdot \color{blue}{\left(z - t\right)}\right)\right) \]
            4. *-lowering-*.f64N/A

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

              \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{/.f64}\left(y, \left(z - a\right)\right), \left(\color{blue}{z} - t\right)\right)\right) \]
            6. --lowering--.f64N/A

              \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{/.f64}\left(y, \mathsf{\_.f64}\left(z, a\right)\right), \left(z - t\right)\right)\right) \]
            7. --lowering--.f6497.6%

              \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{/.f64}\left(y, \mathsf{\_.f64}\left(z, a\right)\right), \mathsf{\_.f64}\left(z, \color{blue}{t}\right)\right)\right) \]
          4. Applied egg-rr97.6%

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

            \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{/.f64}\left(y, \mathsf{\_.f64}\left(z, a\right)\right), \color{blue}{z}\right)\right) \]
          6. Step-by-step derivation
            1. Simplified89.2%

              \[\leadsto x + \frac{y}{z - a} \cdot \color{blue}{z} \]
          7. Recombined 3 regimes into one program.
          8. Final simplification84.1%

            \[\leadsto \begin{array}{l} \mathbf{if}\;z \leq -1.16 \cdot 10^{-38}:\\ \;\;\;\;x + y \cdot \left(1 - \frac{t}{z}\right)\\ \mathbf{elif}\;z \leq 8 \cdot 10^{-77}:\\ \;\;\;\;x + t \cdot \left(y \cdot \frac{1}{a}\right)\\ \mathbf{else}:\\ \;\;\;\;x + z \cdot \frac{y}{z - a}\\ \end{array} \]
          9. Add Preprocessing

          Alternative 6: 79.3% accurate, 0.6× speedup?

          \[\begin{array}{l} \\ \begin{array}{l} t_1 := x + y \cdot \frac{t}{a}\\ \mathbf{if}\;a \leq -1.75 \cdot 10^{-10}:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;a \leq 1.5 \cdot 10^{+81}:\\ \;\;\;\;x + y \cdot \left(1 - \frac{t}{z}\right)\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \end{array} \]
          (FPCore (x y z t a)
           :precision binary64
           (let* ((t_1 (+ x (* y (/ t a)))))
             (if (<= a -1.75e-10)
               t_1
               (if (<= a 1.5e+81) (+ x (* y (- 1.0 (/ t z)))) t_1))))
          double code(double x, double y, double z, double t, double a) {
          	double t_1 = x + (y * (t / a));
          	double tmp;
          	if (a <= -1.75e-10) {
          		tmp = t_1;
          	} else if (a <= 1.5e+81) {
          		tmp = x + (y * (1.0 - (t / z)));
          	} 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 * (t / a))
              if (a <= (-1.75d-10)) then
                  tmp = t_1
              else if (a <= 1.5d+81) then
                  tmp = x + (y * (1.0d0 - (t / z)))
              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 * (t / a));
          	double tmp;
          	if (a <= -1.75e-10) {
          		tmp = t_1;
          	} else if (a <= 1.5e+81) {
          		tmp = x + (y * (1.0 - (t / z)));
          	} else {
          		tmp = t_1;
          	}
          	return tmp;
          }
          
          def code(x, y, z, t, a):
          	t_1 = x + (y * (t / a))
          	tmp = 0
          	if a <= -1.75e-10:
          		tmp = t_1
          	elif a <= 1.5e+81:
          		tmp = x + (y * (1.0 - (t / z)))
          	else:
          		tmp = t_1
          	return tmp
          
          function code(x, y, z, t, a)
          	t_1 = Float64(x + Float64(y * Float64(t / a)))
          	tmp = 0.0
          	if (a <= -1.75e-10)
          		tmp = t_1;
          	elseif (a <= 1.5e+81)
          		tmp = Float64(x + Float64(y * Float64(1.0 - Float64(t / z))));
          	else
          		tmp = t_1;
          	end
          	return tmp
          end
          
          function tmp_2 = code(x, y, z, t, a)
          	t_1 = x + (y * (t / a));
          	tmp = 0.0;
          	if (a <= -1.75e-10)
          		tmp = t_1;
          	elseif (a <= 1.5e+81)
          		tmp = x + (y * (1.0 - (t / z)));
          	else
          		tmp = t_1;
          	end
          	tmp_2 = tmp;
          end
          
          code[x_, y_, z_, t_, a_] := Block[{t$95$1 = N[(x + N[(y * N[(t / a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[a, -1.75e-10], t$95$1, If[LessEqual[a, 1.5e+81], N[(x + N[(y * N[(1.0 - N[(t / z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], t$95$1]]]
          
          \begin{array}{l}
          
          \\
          \begin{array}{l}
          t_1 := x + y \cdot \frac{t}{a}\\
          \mathbf{if}\;a \leq -1.75 \cdot 10^{-10}:\\
          \;\;\;\;t\_1\\
          
          \mathbf{elif}\;a \leq 1.5 \cdot 10^{+81}:\\
          \;\;\;\;x + y \cdot \left(1 - \frac{t}{z}\right)\\
          
          \mathbf{else}:\\
          \;\;\;\;t\_1\\
          
          
          \end{array}
          \end{array}
          
          Derivation
          1. Split input into 2 regimes
          2. if a < -1.7499999999999999e-10 or 1.49999999999999999e81 < a

            1. Initial program 84.3%

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

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

                \[\leadsto \mathsf{+.f64}\left(x, \color{blue}{\left(\frac{t \cdot y}{a}\right)}\right) \]
              2. /-lowering-/.f64N/A

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(\left(t \cdot y\right), \color{blue}{a}\right)\right) \]
              3. *-commutativeN/A

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(\left(y \cdot t\right), a\right)\right) \]
              4. *-lowering-*.f6474.2%

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(\mathsf{*.f64}\left(y, t\right), a\right)\right) \]
            5. Simplified74.2%

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

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

                \[\leadsto \mathsf{+.f64}\left(x, \left(\frac{t}{a} \cdot \color{blue}{y}\right)\right) \]
              3. *-lowering-*.f64N/A

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\left(\frac{t}{a}\right), \color{blue}{y}\right)\right) \]
              4. /-lowering-/.f6480.6%

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{/.f64}\left(t, a\right), y\right)\right) \]
            7. Applied egg-rr80.6%

              \[\leadsto x + \color{blue}{\frac{t}{a} \cdot y} \]

            if -1.7499999999999999e-10 < a < 1.49999999999999999e81

            1. Initial program 85.0%

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

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

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

                \[\leadsto \mathsf{+.f64}\left(x, \left(y \cdot \color{blue}{\frac{z - t}{z}}\right)\right) \]
              3. *-lowering-*.f64N/A

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(y, \color{blue}{\left(\frac{z - t}{z}\right)}\right)\right) \]
              4. div-subN/A

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

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(y, \left(1 - \frac{\color{blue}{t}}{z}\right)\right)\right) \]
              6. --lowering--.f64N/A

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{\_.f64}\left(1, \color{blue}{\left(\frac{t}{z}\right)}\right)\right)\right) \]
              7. /-lowering-/.f6484.7%

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{\_.f64}\left(1, \mathsf{/.f64}\left(t, \color{blue}{z}\right)\right)\right)\right) \]
            5. Simplified84.7%

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

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

          Alternative 7: 77.2% accurate, 0.6× speedup?

          \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;z \leq -1.04 \cdot 10^{-38}:\\ \;\;\;\;x + y\\ \mathbf{elif}\;z \leq 1.05 \cdot 10^{-50}:\\ \;\;\;\;x + t \cdot \left(y \cdot \frac{1}{a}\right)\\ \mathbf{else}:\\ \;\;\;\;x + y\\ \end{array} \end{array} \]
          (FPCore (x y z t a)
           :precision binary64
           (if (<= z -1.04e-38)
             (+ x y)
             (if (<= z 1.05e-50) (+ x (* t (* y (/ 1.0 a)))) (+ x y))))
          double code(double x, double y, double z, double t, double a) {
          	double tmp;
          	if (z <= -1.04e-38) {
          		tmp = x + y;
          	} else if (z <= 1.05e-50) {
          		tmp = x + (t * (y * (1.0 / a)));
          	} else {
          		tmp = x + 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) :: tmp
              if (z <= (-1.04d-38)) then
                  tmp = x + y
              else if (z <= 1.05d-50) then
                  tmp = x + (t * (y * (1.0d0 / a)))
              else
                  tmp = x + y
              end if
              code = tmp
          end function
          
          public static double code(double x, double y, double z, double t, double a) {
          	double tmp;
          	if (z <= -1.04e-38) {
          		tmp = x + y;
          	} else if (z <= 1.05e-50) {
          		tmp = x + (t * (y * (1.0 / a)));
          	} else {
          		tmp = x + y;
          	}
          	return tmp;
          }
          
          def code(x, y, z, t, a):
          	tmp = 0
          	if z <= -1.04e-38:
          		tmp = x + y
          	elif z <= 1.05e-50:
          		tmp = x + (t * (y * (1.0 / a)))
          	else:
          		tmp = x + y
          	return tmp
          
          function code(x, y, z, t, a)
          	tmp = 0.0
          	if (z <= -1.04e-38)
          		tmp = Float64(x + y);
          	elseif (z <= 1.05e-50)
          		tmp = Float64(x + Float64(t * Float64(y * Float64(1.0 / a))));
          	else
          		tmp = Float64(x + y);
          	end
          	return tmp
          end
          
          function tmp_2 = code(x, y, z, t, a)
          	tmp = 0.0;
          	if (z <= -1.04e-38)
          		tmp = x + y;
          	elseif (z <= 1.05e-50)
          		tmp = x + (t * (y * (1.0 / a)));
          	else
          		tmp = x + y;
          	end
          	tmp_2 = tmp;
          end
          
          code[x_, y_, z_, t_, a_] := If[LessEqual[z, -1.04e-38], N[(x + y), $MachinePrecision], If[LessEqual[z, 1.05e-50], N[(x + N[(t * N[(y * N[(1.0 / a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(x + y), $MachinePrecision]]]
          
          \begin{array}{l}
          
          \\
          \begin{array}{l}
          \mathbf{if}\;z \leq -1.04 \cdot 10^{-38}:\\
          \;\;\;\;x + y\\
          
          \mathbf{elif}\;z \leq 1.05 \cdot 10^{-50}:\\
          \;\;\;\;x + t \cdot \left(y \cdot \frac{1}{a}\right)\\
          
          \mathbf{else}:\\
          \;\;\;\;x + y\\
          
          
          \end{array}
          \end{array}
          
          Derivation
          1. Split input into 2 regimes
          2. if z < -1.04e-38 or 1.05e-50 < z

            1. Initial program 79.3%

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

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

                \[\leadsto y + \color{blue}{x} \]
              2. +-lowering-+.f6477.9%

                \[\leadsto \mathsf{+.f64}\left(y, \color{blue}{x}\right) \]
            5. Simplified77.9%

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

            if -1.04e-38 < z < 1.05e-50

            1. Initial program 94.0%

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

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

                \[\leadsto \mathsf{+.f64}\left(x, \color{blue}{\left(\frac{t \cdot y}{a}\right)}\right) \]
              2. /-lowering-/.f64N/A

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(\left(t \cdot y\right), \color{blue}{a}\right)\right) \]
              3. *-commutativeN/A

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(\left(y \cdot t\right), a\right)\right) \]
              4. *-lowering-*.f6478.5%

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(\mathsf{*.f64}\left(y, t\right), a\right)\right) \]
            5. Simplified78.5%

              \[\leadsto \color{blue}{x + \frac{y \cdot t}{a}} \]
            6. Step-by-step derivation
              1. div-invN/A

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

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

                \[\leadsto \mathsf{+.f64}\left(x, \left(t \cdot \color{blue}{\left(y \cdot \frac{1}{a}\right)}\right)\right) \]
              4. *-lowering-*.f64N/A

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(t, \color{blue}{\left(y \cdot \frac{1}{a}\right)}\right)\right) \]
              5. *-lowering-*.f64N/A

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(t, \mathsf{*.f64}\left(y, \color{blue}{\left(\frac{1}{a}\right)}\right)\right)\right) \]
              6. /-lowering-/.f6481.4%

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(t, \mathsf{*.f64}\left(y, \mathsf{/.f64}\left(1, \color{blue}{a}\right)\right)\right)\right) \]
            7. Applied egg-rr81.4%

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

            \[\leadsto \begin{array}{l} \mathbf{if}\;z \leq -1.04 \cdot 10^{-38}:\\ \;\;\;\;x + y\\ \mathbf{elif}\;z \leq 1.05 \cdot 10^{-50}:\\ \;\;\;\;x + t \cdot \left(y \cdot \frac{1}{a}\right)\\ \mathbf{else}:\\ \;\;\;\;x + y\\ \end{array} \]
          5. Add Preprocessing

          Alternative 8: 76.6% accurate, 0.6× speedup?

          \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;z \leq -3.2 \cdot 10^{+19}:\\ \;\;\;\;x + y\\ \mathbf{elif}\;z \leq 6.2 \cdot 10^{-51}:\\ \;\;\;\;x + \frac{y \cdot t}{a}\\ \mathbf{else}:\\ \;\;\;\;x + y\\ \end{array} \end{array} \]
          (FPCore (x y z t a)
           :precision binary64
           (if (<= z -3.2e+19) (+ x y) (if (<= z 6.2e-51) (+ x (/ (* y t) a)) (+ x y))))
          double code(double x, double y, double z, double t, double a) {
          	double tmp;
          	if (z <= -3.2e+19) {
          		tmp = x + y;
          	} else if (z <= 6.2e-51) {
          		tmp = x + ((y * t) / a);
          	} else {
          		tmp = x + 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) :: tmp
              if (z <= (-3.2d+19)) then
                  tmp = x + y
              else if (z <= 6.2d-51) then
                  tmp = x + ((y * t) / a)
              else
                  tmp = x + y
              end if
              code = tmp
          end function
          
          public static double code(double x, double y, double z, double t, double a) {
          	double tmp;
          	if (z <= -3.2e+19) {
          		tmp = x + y;
          	} else if (z <= 6.2e-51) {
          		tmp = x + ((y * t) / a);
          	} else {
          		tmp = x + y;
          	}
          	return tmp;
          }
          
          def code(x, y, z, t, a):
          	tmp = 0
          	if z <= -3.2e+19:
          		tmp = x + y
          	elif z <= 6.2e-51:
          		tmp = x + ((y * t) / a)
          	else:
          		tmp = x + y
          	return tmp
          
          function code(x, y, z, t, a)
          	tmp = 0.0
          	if (z <= -3.2e+19)
          		tmp = Float64(x + y);
          	elseif (z <= 6.2e-51)
          		tmp = Float64(x + Float64(Float64(y * t) / a));
          	else
          		tmp = Float64(x + y);
          	end
          	return tmp
          end
          
          function tmp_2 = code(x, y, z, t, a)
          	tmp = 0.0;
          	if (z <= -3.2e+19)
          		tmp = x + y;
          	elseif (z <= 6.2e-51)
          		tmp = x + ((y * t) / a);
          	else
          		tmp = x + y;
          	end
          	tmp_2 = tmp;
          end
          
          code[x_, y_, z_, t_, a_] := If[LessEqual[z, -3.2e+19], N[(x + y), $MachinePrecision], If[LessEqual[z, 6.2e-51], N[(x + N[(N[(y * t), $MachinePrecision] / a), $MachinePrecision]), $MachinePrecision], N[(x + y), $MachinePrecision]]]
          
          \begin{array}{l}
          
          \\
          \begin{array}{l}
          \mathbf{if}\;z \leq -3.2 \cdot 10^{+19}:\\
          \;\;\;\;x + y\\
          
          \mathbf{elif}\;z \leq 6.2 \cdot 10^{-51}:\\
          \;\;\;\;x + \frac{y \cdot t}{a}\\
          
          \mathbf{else}:\\
          \;\;\;\;x + y\\
          
          
          \end{array}
          \end{array}
          
          Derivation
          1. Split input into 2 regimes
          2. if z < -3.2e19 or 6.1999999999999995e-51 < z

            1. Initial program 77.3%

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

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

                \[\leadsto y + \color{blue}{x} \]
              2. +-lowering-+.f6480.4%

                \[\leadsto \mathsf{+.f64}\left(y, \color{blue}{x}\right) \]
            5. Simplified80.4%

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

            if -3.2e19 < z < 6.1999999999999995e-51

            1. Initial program 94.7%

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

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

                \[\leadsto \mathsf{+.f64}\left(x, \color{blue}{\left(\frac{t \cdot y}{a}\right)}\right) \]
              2. /-lowering-/.f64N/A

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(\left(t \cdot y\right), \color{blue}{a}\right)\right) \]
              3. *-commutativeN/A

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(\left(y \cdot t\right), a\right)\right) \]
              4. *-lowering-*.f6476.0%

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(\mathsf{*.f64}\left(y, t\right), a\right)\right) \]
            5. Simplified76.0%

              \[\leadsto \color{blue}{x + \frac{y \cdot t}{a}} \]
          3. Recombined 2 regimes into one program.
          4. Final simplification78.5%

            \[\leadsto \begin{array}{l} \mathbf{if}\;z \leq -3.2 \cdot 10^{+19}:\\ \;\;\;\;x + y\\ \mathbf{elif}\;z \leq 6.2 \cdot 10^{-51}:\\ \;\;\;\;x + \frac{y \cdot t}{a}\\ \mathbf{else}:\\ \;\;\;\;x + y\\ \end{array} \]
          5. Add Preprocessing

          Alternative 9: 77.7% accurate, 0.6× speedup?

          \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;z \leq -1.02 \cdot 10^{+18}:\\ \;\;\;\;x + y\\ \mathbf{elif}\;z \leq 2.3 \cdot 10^{-51}:\\ \;\;\;\;x + \frac{y}{\frac{a}{t}}\\ \mathbf{else}:\\ \;\;\;\;x + y\\ \end{array} \end{array} \]
          (FPCore (x y z t a)
           :precision binary64
           (if (<= z -1.02e+18) (+ x y) (if (<= z 2.3e-51) (+ x (/ y (/ a t))) (+ x y))))
          double code(double x, double y, double z, double t, double a) {
          	double tmp;
          	if (z <= -1.02e+18) {
          		tmp = x + y;
          	} else if (z <= 2.3e-51) {
          		tmp = x + (y / (a / t));
          	} else {
          		tmp = x + 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) :: tmp
              if (z <= (-1.02d+18)) then
                  tmp = x + y
              else if (z <= 2.3d-51) then
                  tmp = x + (y / (a / t))
              else
                  tmp = x + y
              end if
              code = tmp
          end function
          
          public static double code(double x, double y, double z, double t, double a) {
          	double tmp;
          	if (z <= -1.02e+18) {
          		tmp = x + y;
          	} else if (z <= 2.3e-51) {
          		tmp = x + (y / (a / t));
          	} else {
          		tmp = x + y;
          	}
          	return tmp;
          }
          
          def code(x, y, z, t, a):
          	tmp = 0
          	if z <= -1.02e+18:
          		tmp = x + y
          	elif z <= 2.3e-51:
          		tmp = x + (y / (a / t))
          	else:
          		tmp = x + y
          	return tmp
          
          function code(x, y, z, t, a)
          	tmp = 0.0
          	if (z <= -1.02e+18)
          		tmp = Float64(x + y);
          	elseif (z <= 2.3e-51)
          		tmp = Float64(x + Float64(y / Float64(a / t)));
          	else
          		tmp = Float64(x + y);
          	end
          	return tmp
          end
          
          function tmp_2 = code(x, y, z, t, a)
          	tmp = 0.0;
          	if (z <= -1.02e+18)
          		tmp = x + y;
          	elseif (z <= 2.3e-51)
          		tmp = x + (y / (a / t));
          	else
          		tmp = x + y;
          	end
          	tmp_2 = tmp;
          end
          
          code[x_, y_, z_, t_, a_] := If[LessEqual[z, -1.02e+18], N[(x + y), $MachinePrecision], If[LessEqual[z, 2.3e-51], N[(x + N[(y / N[(a / t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(x + y), $MachinePrecision]]]
          
          \begin{array}{l}
          
          \\
          \begin{array}{l}
          \mathbf{if}\;z \leq -1.02 \cdot 10^{+18}:\\
          \;\;\;\;x + y\\
          
          \mathbf{elif}\;z \leq 2.3 \cdot 10^{-51}:\\
          \;\;\;\;x + \frac{y}{\frac{a}{t}}\\
          
          \mathbf{else}:\\
          \;\;\;\;x + y\\
          
          
          \end{array}
          \end{array}
          
          Derivation
          1. Split input into 2 regimes
          2. if z < -1.02e18 or 2.30000000000000002e-51 < z

            1. Initial program 77.3%

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

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

                \[\leadsto y + \color{blue}{x} \]
              2. +-lowering-+.f6480.4%

                \[\leadsto \mathsf{+.f64}\left(y, \color{blue}{x}\right) \]
            5. Simplified80.4%

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

            if -1.02e18 < z < 2.30000000000000002e-51

            1. Initial program 94.7%

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

                \[\leadsto \mathsf{+.f64}\left(x, \left(y \cdot \color{blue}{\frac{z - t}{z - a}}\right)\right) \]
              2. clear-numN/A

                \[\leadsto \mathsf{+.f64}\left(x, \left(y \cdot \frac{1}{\color{blue}{\frac{z - a}{z - t}}}\right)\right) \]
              3. un-div-invN/A

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

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

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

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(y, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(z, a\right), \left(\color{blue}{z} - t\right)\right)\right)\right) \]
              7. --lowering--.f6495.6%

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(y, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(z, a\right), \mathsf{\_.f64}\left(z, \color{blue}{t}\right)\right)\right)\right) \]
            4. Applied egg-rr95.6%

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

              \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(y, \color{blue}{\left(\frac{a}{t}\right)}\right)\right) \]
            6. Step-by-step derivation
              1. /-lowering-/.f6475.1%

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(y, \mathsf{/.f64}\left(a, \color{blue}{t}\right)\right)\right) \]
            7. Simplified75.1%

              \[\leadsto x + \frac{y}{\color{blue}{\frac{a}{t}}} \]
          3. Recombined 2 regimes into one program.
          4. Final simplification78.1%

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

          Alternative 10: 77.6% accurate, 0.6× speedup?

          \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;z \leq -9.8 \cdot 10^{+17}:\\ \;\;\;\;x + y\\ \mathbf{elif}\;z \leq 2 \cdot 10^{-51}:\\ \;\;\;\;x + y \cdot \frac{t}{a}\\ \mathbf{else}:\\ \;\;\;\;x + y\\ \end{array} \end{array} \]
          (FPCore (x y z t a)
           :precision binary64
           (if (<= z -9.8e+17) (+ x y) (if (<= z 2e-51) (+ x (* y (/ t a))) (+ x y))))
          double code(double x, double y, double z, double t, double a) {
          	double tmp;
          	if (z <= -9.8e+17) {
          		tmp = x + y;
          	} else if (z <= 2e-51) {
          		tmp = x + (y * (t / a));
          	} else {
          		tmp = x + 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) :: tmp
              if (z <= (-9.8d+17)) then
                  tmp = x + y
              else if (z <= 2d-51) then
                  tmp = x + (y * (t / a))
              else
                  tmp = x + y
              end if
              code = tmp
          end function
          
          public static double code(double x, double y, double z, double t, double a) {
          	double tmp;
          	if (z <= -9.8e+17) {
          		tmp = x + y;
          	} else if (z <= 2e-51) {
          		tmp = x + (y * (t / a));
          	} else {
          		tmp = x + y;
          	}
          	return tmp;
          }
          
          def code(x, y, z, t, a):
          	tmp = 0
          	if z <= -9.8e+17:
          		tmp = x + y
          	elif z <= 2e-51:
          		tmp = x + (y * (t / a))
          	else:
          		tmp = x + y
          	return tmp
          
          function code(x, y, z, t, a)
          	tmp = 0.0
          	if (z <= -9.8e+17)
          		tmp = Float64(x + y);
          	elseif (z <= 2e-51)
          		tmp = Float64(x + Float64(y * Float64(t / a)));
          	else
          		tmp = Float64(x + y);
          	end
          	return tmp
          end
          
          function tmp_2 = code(x, y, z, t, a)
          	tmp = 0.0;
          	if (z <= -9.8e+17)
          		tmp = x + y;
          	elseif (z <= 2e-51)
          		tmp = x + (y * (t / a));
          	else
          		tmp = x + y;
          	end
          	tmp_2 = tmp;
          end
          
          code[x_, y_, z_, t_, a_] := If[LessEqual[z, -9.8e+17], N[(x + y), $MachinePrecision], If[LessEqual[z, 2e-51], N[(x + N[(y * N[(t / a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(x + y), $MachinePrecision]]]
          
          \begin{array}{l}
          
          \\
          \begin{array}{l}
          \mathbf{if}\;z \leq -9.8 \cdot 10^{+17}:\\
          \;\;\;\;x + y\\
          
          \mathbf{elif}\;z \leq 2 \cdot 10^{-51}:\\
          \;\;\;\;x + y \cdot \frac{t}{a}\\
          
          \mathbf{else}:\\
          \;\;\;\;x + y\\
          
          
          \end{array}
          \end{array}
          
          Derivation
          1. Split input into 2 regimes
          2. if z < -9.8e17 or 2e-51 < z

            1. Initial program 77.3%

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

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

                \[\leadsto y + \color{blue}{x} \]
              2. +-lowering-+.f6480.4%

                \[\leadsto \mathsf{+.f64}\left(y, \color{blue}{x}\right) \]
            5. Simplified80.4%

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

            if -9.8e17 < z < 2e-51

            1. Initial program 94.7%

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

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

                \[\leadsto \mathsf{+.f64}\left(x, \color{blue}{\left(\frac{t \cdot y}{a}\right)}\right) \]
              2. /-lowering-/.f64N/A

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(\left(t \cdot y\right), \color{blue}{a}\right)\right) \]
              3. *-commutativeN/A

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(\left(y \cdot t\right), a\right)\right) \]
              4. *-lowering-*.f6476.0%

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(\mathsf{*.f64}\left(y, t\right), a\right)\right) \]
            5. Simplified76.0%

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

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

                \[\leadsto \mathsf{+.f64}\left(x, \left(\frac{t}{a} \cdot \color{blue}{y}\right)\right) \]
              3. *-lowering-*.f64N/A

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\left(\frac{t}{a}\right), \color{blue}{y}\right)\right) \]
              4. /-lowering-/.f6475.0%

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{/.f64}\left(t, a\right), y\right)\right) \]
            7. Applied egg-rr75.0%

              \[\leadsto x + \color{blue}{\frac{t}{a} \cdot y} \]
          3. Recombined 2 regimes into one program.
          4. Final simplification78.1%

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

          Alternative 11: 61.1% accurate, 0.7× speedup?

          \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;t \leq -1.85 \cdot 10^{+233}:\\ \;\;\;\;y \cdot \frac{t}{a}\\ \mathbf{elif}\;t \leq 7.8 \cdot 10^{+245}:\\ \;\;\;\;x + y\\ \mathbf{else}:\\ \;\;\;\;\frac{y \cdot t}{a}\\ \end{array} \end{array} \]
          (FPCore (x y z t a)
           :precision binary64
           (if (<= t -1.85e+233)
             (* y (/ t a))
             (if (<= t 7.8e+245) (+ x y) (/ (* y t) a))))
          double code(double x, double y, double z, double t, double a) {
          	double tmp;
          	if (t <= -1.85e+233) {
          		tmp = y * (t / a);
          	} else if (t <= 7.8e+245) {
          		tmp = x + y;
          	} else {
          		tmp = (y * t) / a;
          	}
          	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) :: tmp
              if (t <= (-1.85d+233)) then
                  tmp = y * (t / a)
              else if (t <= 7.8d+245) then
                  tmp = x + y
              else
                  tmp = (y * t) / a
              end if
              code = tmp
          end function
          
          public static double code(double x, double y, double z, double t, double a) {
          	double tmp;
          	if (t <= -1.85e+233) {
          		tmp = y * (t / a);
          	} else if (t <= 7.8e+245) {
          		tmp = x + y;
          	} else {
          		tmp = (y * t) / a;
          	}
          	return tmp;
          }
          
          def code(x, y, z, t, a):
          	tmp = 0
          	if t <= -1.85e+233:
          		tmp = y * (t / a)
          	elif t <= 7.8e+245:
          		tmp = x + y
          	else:
          		tmp = (y * t) / a
          	return tmp
          
          function code(x, y, z, t, a)
          	tmp = 0.0
          	if (t <= -1.85e+233)
          		tmp = Float64(y * Float64(t / a));
          	elseif (t <= 7.8e+245)
          		tmp = Float64(x + y);
          	else
          		tmp = Float64(Float64(y * t) / a);
          	end
          	return tmp
          end
          
          function tmp_2 = code(x, y, z, t, a)
          	tmp = 0.0;
          	if (t <= -1.85e+233)
          		tmp = y * (t / a);
          	elseif (t <= 7.8e+245)
          		tmp = x + y;
          	else
          		tmp = (y * t) / a;
          	end
          	tmp_2 = tmp;
          end
          
          code[x_, y_, z_, t_, a_] := If[LessEqual[t, -1.85e+233], N[(y * N[(t / a), $MachinePrecision]), $MachinePrecision], If[LessEqual[t, 7.8e+245], N[(x + y), $MachinePrecision], N[(N[(y * t), $MachinePrecision] / a), $MachinePrecision]]]
          
          \begin{array}{l}
          
          \\
          \begin{array}{l}
          \mathbf{if}\;t \leq -1.85 \cdot 10^{+233}:\\
          \;\;\;\;y \cdot \frac{t}{a}\\
          
          \mathbf{elif}\;t \leq 7.8 \cdot 10^{+245}:\\
          \;\;\;\;x + y\\
          
          \mathbf{else}:\\
          \;\;\;\;\frac{y \cdot t}{a}\\
          
          
          \end{array}
          \end{array}
          
          Derivation
          1. Split input into 3 regimes
          2. if t < -1.8499999999999999e233

            1. Initial program 88.0%

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

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

                \[\leadsto \mathsf{+.f64}\left(x, \color{blue}{\left(\frac{t \cdot y}{a}\right)}\right) \]
              2. /-lowering-/.f64N/A

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(\left(t \cdot y\right), \color{blue}{a}\right)\right) \]
              3. *-commutativeN/A

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(\left(y \cdot t\right), a\right)\right) \]
              4. *-lowering-*.f6457.3%

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(\mathsf{*.f64}\left(y, t\right), a\right)\right) \]
            5. Simplified57.3%

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

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

                \[\leadsto \mathsf{+.f64}\left(x, \left(\frac{t}{a} \cdot \color{blue}{y}\right)\right) \]
              3. *-lowering-*.f64N/A

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\left(\frac{t}{a}\right), \color{blue}{y}\right)\right) \]
              4. /-lowering-/.f6463.1%

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{/.f64}\left(t, a\right), y\right)\right) \]
            7. Applied egg-rr63.1%

              \[\leadsto x + \color{blue}{\frac{t}{a} \cdot y} \]
            8. Taylor expanded in x around 0

              \[\leadsto \color{blue}{\frac{t \cdot y}{a}} \]
            9. Step-by-step derivation
              1. *-commutativeN/A

                \[\leadsto \frac{y \cdot t}{a} \]
              2. associate-*r/N/A

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

                \[\leadsto \mathsf{*.f64}\left(y, \color{blue}{\left(\frac{t}{a}\right)}\right) \]
              4. /-lowering-/.f6451.2%

                \[\leadsto \mathsf{*.f64}\left(y, \mathsf{/.f64}\left(t, \color{blue}{a}\right)\right) \]
            10. Simplified51.2%

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

            if -1.8499999999999999e233 < t < 7.7999999999999996e245

            1. Initial program 83.7%

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

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

                \[\leadsto y + \color{blue}{x} \]
              2. +-lowering-+.f6471.8%

                \[\leadsto \mathsf{+.f64}\left(y, \color{blue}{x}\right) \]
            5. Simplified71.8%

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

            if 7.7999999999999996e245 < t

            1. Initial program 100.0%

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

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

                \[\leadsto \mathsf{+.f64}\left(x, \color{blue}{\left(\frac{t \cdot y}{a}\right)}\right) \]
              2. /-lowering-/.f64N/A

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(\left(t \cdot y\right), \color{blue}{a}\right)\right) \]
              3. *-commutativeN/A

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(\left(y \cdot t\right), a\right)\right) \]
              4. *-lowering-*.f6475.8%

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(\mathsf{*.f64}\left(y, t\right), a\right)\right) \]
            5. Simplified75.8%

              \[\leadsto \color{blue}{x + \frac{y \cdot t}{a}} \]
            6. Taylor expanded in x around 0

              \[\leadsto \color{blue}{\frac{t \cdot y}{a}} \]
            7. Step-by-step derivation
              1. /-lowering-/.f64N/A

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

                \[\leadsto \mathsf{/.f64}\left(\left(y \cdot t\right), a\right) \]
              3. *-lowering-*.f6475.8%

                \[\leadsto \mathsf{/.f64}\left(\mathsf{*.f64}\left(y, t\right), a\right) \]
            8. Simplified75.8%

              \[\leadsto \color{blue}{\frac{y \cdot t}{a}} \]
          3. Recombined 3 regimes into one program.
          4. Final simplification70.7%

            \[\leadsto \begin{array}{l} \mathbf{if}\;t \leq -1.85 \cdot 10^{+233}:\\ \;\;\;\;y \cdot \frac{t}{a}\\ \mathbf{elif}\;t \leq 7.8 \cdot 10^{+245}:\\ \;\;\;\;x + y\\ \mathbf{else}:\\ \;\;\;\;\frac{y \cdot t}{a}\\ \end{array} \]
          5. Add Preprocessing

          Alternative 12: 61.5% accurate, 0.7× speedup?

          \[\begin{array}{l} \\ \begin{array}{l} t_1 := y \cdot \frac{t}{a}\\ \mathbf{if}\;t \leq -3.7 \cdot 10^{+227}:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;t \leq 1.58 \cdot 10^{+243}:\\ \;\;\;\;x + y\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \end{array} \]
          (FPCore (x y z t a)
           :precision binary64
           (let* ((t_1 (* y (/ t a))))
             (if (<= t -3.7e+227) t_1 (if (<= t 1.58e+243) (+ x y) t_1))))
          double code(double x, double y, double z, double t, double a) {
          	double t_1 = y * (t / a);
          	double tmp;
          	if (t <= -3.7e+227) {
          		tmp = t_1;
          	} else if (t <= 1.58e+243) {
          		tmp = x + y;
          	} 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 = y * (t / a)
              if (t <= (-3.7d+227)) then
                  tmp = t_1
              else if (t <= 1.58d+243) then
                  tmp = x + y
              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 = y * (t / a);
          	double tmp;
          	if (t <= -3.7e+227) {
          		tmp = t_1;
          	} else if (t <= 1.58e+243) {
          		tmp = x + y;
          	} else {
          		tmp = t_1;
          	}
          	return tmp;
          }
          
          def code(x, y, z, t, a):
          	t_1 = y * (t / a)
          	tmp = 0
          	if t <= -3.7e+227:
          		tmp = t_1
          	elif t <= 1.58e+243:
          		tmp = x + y
          	else:
          		tmp = t_1
          	return tmp
          
          function code(x, y, z, t, a)
          	t_1 = Float64(y * Float64(t / a))
          	tmp = 0.0
          	if (t <= -3.7e+227)
          		tmp = t_1;
          	elseif (t <= 1.58e+243)
          		tmp = Float64(x + y);
          	else
          		tmp = t_1;
          	end
          	return tmp
          end
          
          function tmp_2 = code(x, y, z, t, a)
          	t_1 = y * (t / a);
          	tmp = 0.0;
          	if (t <= -3.7e+227)
          		tmp = t_1;
          	elseif (t <= 1.58e+243)
          		tmp = x + y;
          	else
          		tmp = t_1;
          	end
          	tmp_2 = tmp;
          end
          
          code[x_, y_, z_, t_, a_] := Block[{t$95$1 = N[(y * N[(t / a), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t, -3.7e+227], t$95$1, If[LessEqual[t, 1.58e+243], N[(x + y), $MachinePrecision], t$95$1]]]
          
          \begin{array}{l}
          
          \\
          \begin{array}{l}
          t_1 := y \cdot \frac{t}{a}\\
          \mathbf{if}\;t \leq -3.7 \cdot 10^{+227}:\\
          \;\;\;\;t\_1\\
          
          \mathbf{elif}\;t \leq 1.58 \cdot 10^{+243}:\\
          \;\;\;\;x + y\\
          
          \mathbf{else}:\\
          \;\;\;\;t\_1\\
          
          
          \end{array}
          \end{array}
          
          Derivation
          1. Split input into 2 regimes
          2. if t < -3.6999999999999999e227 or 1.57999999999999997e243 < t

            1. Initial program 90.1%

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

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

                \[\leadsto \mathsf{+.f64}\left(x, \color{blue}{\left(\frac{t \cdot y}{a}\right)}\right) \]
              2. /-lowering-/.f64N/A

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(\left(t \cdot y\right), \color{blue}{a}\right)\right) \]
              3. *-commutativeN/A

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(\left(y \cdot t\right), a\right)\right) \]
              4. *-lowering-*.f6463.2%

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{/.f64}\left(\mathsf{*.f64}\left(y, t\right), a\right)\right) \]
            5. Simplified63.2%

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

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

                \[\leadsto \mathsf{+.f64}\left(x, \left(\frac{t}{a} \cdot \color{blue}{y}\right)\right) \]
              3. *-lowering-*.f64N/A

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\left(\frac{t}{a}\right), \color{blue}{y}\right)\right) \]
              4. /-lowering-/.f6466.4%

                \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{/.f64}\left(t, a\right), y\right)\right) \]
            7. Applied egg-rr66.4%

              \[\leadsto x + \color{blue}{\frac{t}{a} \cdot y} \]
            8. Taylor expanded in x around 0

              \[\leadsto \color{blue}{\frac{t \cdot y}{a}} \]
            9. Step-by-step derivation
              1. *-commutativeN/A

                \[\leadsto \frac{y \cdot t}{a} \]
              2. associate-*r/N/A

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

                \[\leadsto \mathsf{*.f64}\left(y, \color{blue}{\left(\frac{t}{a}\right)}\right) \]
              4. /-lowering-/.f6459.9%

                \[\leadsto \mathsf{*.f64}\left(y, \mathsf{/.f64}\left(t, \color{blue}{a}\right)\right) \]
            10. Simplified59.9%

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

            if -3.6999999999999999e227 < t < 1.57999999999999997e243

            1. Initial program 84.0%

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

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

                \[\leadsto y + \color{blue}{x} \]
              2. +-lowering-+.f6472.0%

                \[\leadsto \mathsf{+.f64}\left(y, \color{blue}{x}\right) \]
            5. Simplified72.0%

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

            \[\leadsto \begin{array}{l} \mathbf{if}\;t \leq -3.7 \cdot 10^{+227}:\\ \;\;\;\;y \cdot \frac{t}{a}\\ \mathbf{elif}\;t \leq 1.58 \cdot 10^{+243}:\\ \;\;\;\;x + y\\ \mathbf{else}:\\ \;\;\;\;y \cdot \frac{t}{a}\\ \end{array} \]
          5. Add Preprocessing

          Alternative 13: 53.4% accurate, 1.0× speedup?

          \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;y \leq -1.5 \cdot 10^{+113}:\\ \;\;\;\;y\\ \mathbf{elif}\;y \leq 2.6 \cdot 10^{+106}:\\ \;\;\;\;x\\ \mathbf{else}:\\ \;\;\;\;y\\ \end{array} \end{array} \]
          (FPCore (x y z t a)
           :precision binary64
           (if (<= y -1.5e+113) y (if (<= y 2.6e+106) x y)))
          double code(double x, double y, double z, double t, double a) {
          	double tmp;
          	if (y <= -1.5e+113) {
          		tmp = y;
          	} else if (y <= 2.6e+106) {
          		tmp = x;
          	} else {
          		tmp = 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) :: tmp
              if (y <= (-1.5d+113)) then
                  tmp = y
              else if (y <= 2.6d+106) then
                  tmp = x
              else
                  tmp = y
              end if
              code = tmp
          end function
          
          public static double code(double x, double y, double z, double t, double a) {
          	double tmp;
          	if (y <= -1.5e+113) {
          		tmp = y;
          	} else if (y <= 2.6e+106) {
          		tmp = x;
          	} else {
          		tmp = y;
          	}
          	return tmp;
          }
          
          def code(x, y, z, t, a):
          	tmp = 0
          	if y <= -1.5e+113:
          		tmp = y
          	elif y <= 2.6e+106:
          		tmp = x
          	else:
          		tmp = y
          	return tmp
          
          function code(x, y, z, t, a)
          	tmp = 0.0
          	if (y <= -1.5e+113)
          		tmp = y;
          	elseif (y <= 2.6e+106)
          		tmp = x;
          	else
          		tmp = y;
          	end
          	return tmp
          end
          
          function tmp_2 = code(x, y, z, t, a)
          	tmp = 0.0;
          	if (y <= -1.5e+113)
          		tmp = y;
          	elseif (y <= 2.6e+106)
          		tmp = x;
          	else
          		tmp = y;
          	end
          	tmp_2 = tmp;
          end
          
          code[x_, y_, z_, t_, a_] := If[LessEqual[y, -1.5e+113], y, If[LessEqual[y, 2.6e+106], x, y]]
          
          \begin{array}{l}
          
          \\
          \begin{array}{l}
          \mathbf{if}\;y \leq -1.5 \cdot 10^{+113}:\\
          \;\;\;\;y\\
          
          \mathbf{elif}\;y \leq 2.6 \cdot 10^{+106}:\\
          \;\;\;\;x\\
          
          \mathbf{else}:\\
          \;\;\;\;y\\
          
          
          \end{array}
          \end{array}
          
          Derivation
          1. Split input into 2 regimes
          2. if y < -1.5e113 or 2.6000000000000002e106 < y

            1. Initial program 61.3%

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

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

                \[\leadsto y + \color{blue}{x} \]
              2. +-lowering-+.f6453.4%

                \[\leadsto \mathsf{+.f64}\left(y, \color{blue}{x}\right) \]
            5. Simplified53.4%

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

              \[\leadsto \color{blue}{y} \]
            7. Step-by-step derivation
              1. Simplified44.3%

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

              if -1.5e113 < y < 2.6000000000000002e106

              1. Initial program 97.0%

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

                \[\leadsto \color{blue}{x} \]
              4. Step-by-step derivation
                1. Simplified65.5%

                  \[\leadsto \color{blue}{x} \]
              5. Recombined 2 regimes into one program.
              6. Add Preprocessing

              Alternative 14: 98.3% accurate, 1.0× speedup?

              \[\begin{array}{l} \\ x + y \cdot \frac{z - t}{z - a} \end{array} \]
              (FPCore (x y z t a) :precision binary64 (+ x (* y (/ (- z t) (- z a)))))
              double code(double x, double y, double z, double t, double a) {
              	return x + (y * ((z - t) / (z - a)));
              }
              
              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) / (z - a)))
              end function
              
              public static double code(double x, double y, double z, double t, double a) {
              	return x + (y * ((z - t) / (z - a)));
              }
              
              def code(x, y, z, t, a):
              	return x + (y * ((z - t) / (z - a)))
              
              function code(x, y, z, t, a)
              	return Float64(x + Float64(y * Float64(Float64(z - t) / Float64(z - a))))
              end
              
              function tmp = code(x, y, z, t, a)
              	tmp = x + (y * ((z - t) / (z - a)));
              end
              
              code[x_, y_, z_, t_, a_] := N[(x + N[(y * N[(N[(z - t), $MachinePrecision] / N[(z - a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
              
              \begin{array}{l}
              
              \\
              x + y \cdot \frac{z - t}{z - a}
              \end{array}
              
              Derivation
              1. Initial program 84.7%

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

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

                  \[\leadsto \mathsf{+.f64}\left(x, \left(\frac{z - t}{z - a} \cdot \color{blue}{y}\right)\right) \]
                3. *-lowering-*.f64N/A

                  \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\left(\frac{z - t}{z - a}\right), \color{blue}{y}\right)\right) \]
                4. /-lowering-/.f64N/A

                  \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{/.f64}\left(\left(z - t\right), \left(z - a\right)\right), y\right)\right) \]
                5. --lowering--.f64N/A

                  \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{/.f64}\left(\mathsf{\_.f64}\left(z, t\right), \left(z - a\right)\right), y\right)\right) \]
                6. --lowering--.f6498.0%

                  \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{/.f64}\left(\mathsf{\_.f64}\left(z, t\right), \mathsf{\_.f64}\left(z, a\right)\right), y\right)\right) \]
              4. Applied egg-rr98.0%

                \[\leadsto x + \color{blue}{\frac{z - t}{z - a} \cdot y} \]
              5. Final simplification98.0%

                \[\leadsto x + y \cdot \frac{z - t}{z - a} \]
              6. Add Preprocessing

              Alternative 15: 95.8% accurate, 1.0× speedup?

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

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

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

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

                  \[\leadsto \mathsf{+.f64}\left(x, \left(\frac{y}{z - a} \cdot \color{blue}{\left(z - t\right)}\right)\right) \]
                4. *-lowering-*.f64N/A

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

                  \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{/.f64}\left(y, \left(z - a\right)\right), \left(\color{blue}{z} - t\right)\right)\right) \]
                6. --lowering--.f64N/A

                  \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{/.f64}\left(y, \mathsf{\_.f64}\left(z, a\right)\right), \left(z - t\right)\right)\right) \]
                7. --lowering--.f6494.0%

                  \[\leadsto \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{/.f64}\left(y, \mathsf{\_.f64}\left(z, a\right)\right), \mathsf{\_.f64}\left(z, \color{blue}{t}\right)\right)\right) \]
              4. Applied egg-rr94.0%

                \[\leadsto x + \color{blue}{\frac{y}{z - a} \cdot \left(z - t\right)} \]
              5. Final simplification94.0%

                \[\leadsto x + \left(z - t\right) \cdot \frac{y}{z - a} \]
              6. Add Preprocessing

              Alternative 16: 62.2% accurate, 1.4× speedup?

              \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;a \leq 9 \cdot 10^{+115}:\\ \;\;\;\;x + y\\ \mathbf{else}:\\ \;\;\;\;x\\ \end{array} \end{array} \]
              (FPCore (x y z t a) :precision binary64 (if (<= a 9e+115) (+ x y) x))
              double code(double x, double y, double z, double t, double a) {
              	double tmp;
              	if (a <= 9e+115) {
              		tmp = x + y;
              	} else {
              		tmp = x;
              	}
              	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) :: tmp
                  if (a <= 9d+115) then
                      tmp = x + y
                  else
                      tmp = x
                  end if
                  code = tmp
              end function
              
              public static double code(double x, double y, double z, double t, double a) {
              	double tmp;
              	if (a <= 9e+115) {
              		tmp = x + y;
              	} else {
              		tmp = x;
              	}
              	return tmp;
              }
              
              def code(x, y, z, t, a):
              	tmp = 0
              	if a <= 9e+115:
              		tmp = x + y
              	else:
              		tmp = x
              	return tmp
              
              function code(x, y, z, t, a)
              	tmp = 0.0
              	if (a <= 9e+115)
              		tmp = Float64(x + y);
              	else
              		tmp = x;
              	end
              	return tmp
              end
              
              function tmp_2 = code(x, y, z, t, a)
              	tmp = 0.0;
              	if (a <= 9e+115)
              		tmp = x + y;
              	else
              		tmp = x;
              	end
              	tmp_2 = tmp;
              end
              
              code[x_, y_, z_, t_, a_] := If[LessEqual[a, 9e+115], N[(x + y), $MachinePrecision], x]
              
              \begin{array}{l}
              
              \\
              \begin{array}{l}
              \mathbf{if}\;a \leq 9 \cdot 10^{+115}:\\
              \;\;\;\;x + y\\
              
              \mathbf{else}:\\
              \;\;\;\;x\\
              
              
              \end{array}
              \end{array}
              
              Derivation
              1. Split input into 2 regimes
              2. if a < 8.99999999999999927e115

                1. Initial program 84.6%

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

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

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

                    \[\leadsto \mathsf{+.f64}\left(y, \color{blue}{x}\right) \]
                5. Simplified69.4%

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

                if 8.99999999999999927e115 < a

                1. Initial program 85.3%

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

                  \[\leadsto \color{blue}{x} \]
                4. Step-by-step derivation
                  1. Simplified63.5%

                    \[\leadsto \color{blue}{x} \]
                5. Recombined 2 regimes into one program.
                6. Final simplification68.5%

                  \[\leadsto \begin{array}{l} \mathbf{if}\;a \leq 9 \cdot 10^{+115}:\\ \;\;\;\;x + y\\ \mathbf{else}:\\ \;\;\;\;x\\ \end{array} \]
                7. Add Preprocessing

                Alternative 17: 50.5% accurate, 11.0× speedup?

                \[\begin{array}{l} \\ x \end{array} \]
                (FPCore (x y z t a) :precision binary64 x)
                double code(double x, double y, double z, double t, double a) {
                	return x;
                }
                
                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
                end function
                
                public static double code(double x, double y, double z, double t, double a) {
                	return x;
                }
                
                def code(x, y, z, t, a):
                	return x
                
                function code(x, y, z, t, a)
                	return x
                end
                
                function tmp = code(x, y, z, t, a)
                	tmp = x;
                end
                
                code[x_, y_, z_, t_, a_] := x
                
                \begin{array}{l}
                
                \\
                x
                \end{array}
                
                Derivation
                1. Initial program 84.7%

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

                  \[\leadsto \color{blue}{x} \]
                4. Step-by-step derivation
                  1. Simplified48.6%

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

                  Developer Target 1: 98.4% accurate, 1.0× speedup?

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

                  Reproduce

                  ?
                  herbie shell --seed 2024158 
                  (FPCore (x y z t a)
                    :name "Graphics.Rendering.Plot.Render.Plot.Axis:renderAxisTicks from plot-0.2.3.4, A"
                    :precision binary64
                  
                    :alt
                    (! :herbie-platform default (+ x (/ y (/ (- z a) (- z t)))))
                  
                    (+ x (/ (* y (- z t)) (- z a))))