Numeric.SpecFunctions:invIncompleteBetaWorker from math-functions-0.1.5.2, I

Percentage Accurate: 94.2% → 96.6%
Time: 15.3s
Alternatives: 8
Speedup: 0.7×

Specification

?
\[\begin{array}{l} \\ \frac{x}{x + y \cdot e^{2 \cdot \left(\frac{z \cdot \sqrt{t + a}}{t} - \left(b - c\right) \cdot \left(\left(a + \frac{5}{6}\right) - \frac{2}{t \cdot 3}\right)\right)}} \end{array} \]
(FPCore (x y z t a b c)
 :precision binary64
 (/
  x
  (+
   x
   (*
    y
    (exp
     (*
      2.0
      (-
       (/ (* z (sqrt (+ t a))) t)
       (* (- b c) (- (+ a (/ 5.0 6.0)) (/ 2.0 (* t 3.0)))))))))))
double code(double x, double y, double z, double t, double a, double b, double c) {
	return x / (x + (y * exp((2.0 * (((z * sqrt((t + a))) / t) - ((b - c) * ((a + (5.0 / 6.0)) - (2.0 / (t * 3.0)))))))));
}
real(8) function code(x, y, z, t, a, b, c)
    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), intent (in) :: b
    real(8), intent (in) :: c
    code = x / (x + (y * exp((2.0d0 * (((z * sqrt((t + a))) / t) - ((b - c) * ((a + (5.0d0 / 6.0d0)) - (2.0d0 / (t * 3.0d0)))))))))
end function
public static double code(double x, double y, double z, double t, double a, double b, double c) {
	return x / (x + (y * Math.exp((2.0 * (((z * Math.sqrt((t + a))) / t) - ((b - c) * ((a + (5.0 / 6.0)) - (2.0 / (t * 3.0)))))))));
}
def code(x, y, z, t, a, b, c):
	return x / (x + (y * math.exp((2.0 * (((z * math.sqrt((t + a))) / t) - ((b - c) * ((a + (5.0 / 6.0)) - (2.0 / (t * 3.0)))))))))
function code(x, y, z, t, a, b, c)
	return Float64(x / Float64(x + Float64(y * exp(Float64(2.0 * Float64(Float64(Float64(z * sqrt(Float64(t + a))) / t) - Float64(Float64(b - c) * Float64(Float64(a + Float64(5.0 / 6.0)) - Float64(2.0 / Float64(t * 3.0))))))))))
end
function tmp = code(x, y, z, t, a, b, c)
	tmp = x / (x + (y * exp((2.0 * (((z * sqrt((t + a))) / t) - ((b - c) * ((a + (5.0 / 6.0)) - (2.0 / (t * 3.0)))))))));
end
code[x_, y_, z_, t_, a_, b_, c_] := N[(x / N[(x + N[(y * N[Exp[N[(2.0 * N[(N[(N[(z * N[Sqrt[N[(t + a), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] / t), $MachinePrecision] - N[(N[(b - c), $MachinePrecision] * N[(N[(a + N[(5.0 / 6.0), $MachinePrecision]), $MachinePrecision] - N[(2.0 / N[(t * 3.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\frac{x}{x + y \cdot e^{2 \cdot \left(\frac{z \cdot \sqrt{t + a}}{t} - \left(b - c\right) \cdot \left(\left(a + \frac{5}{6}\right) - \frac{2}{t \cdot 3}\right)\right)}}
\end{array}

Sampling outcomes in binary64 precision:

Local Percentage Accuracy vs ?

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

Accuracy vs Speed?

Herbie found 8 alternatives:

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

Initial Program: 94.2% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \frac{x}{x + y \cdot e^{2 \cdot \left(\frac{z \cdot \sqrt{t + a}}{t} - \left(b - c\right) \cdot \left(\left(a + \frac{5}{6}\right) - \frac{2}{t \cdot 3}\right)\right)}} \end{array} \]
(FPCore (x y z t a b c)
 :precision binary64
 (/
  x
  (+
   x
   (*
    y
    (exp
     (*
      2.0
      (-
       (/ (* z (sqrt (+ t a))) t)
       (* (- b c) (- (+ a (/ 5.0 6.0)) (/ 2.0 (* t 3.0)))))))))))
double code(double x, double y, double z, double t, double a, double b, double c) {
	return x / (x + (y * exp((2.0 * (((z * sqrt((t + a))) / t) - ((b - c) * ((a + (5.0 / 6.0)) - (2.0 / (t * 3.0)))))))));
}
real(8) function code(x, y, z, t, a, b, c)
    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), intent (in) :: b
    real(8), intent (in) :: c
    code = x / (x + (y * exp((2.0d0 * (((z * sqrt((t + a))) / t) - ((b - c) * ((a + (5.0d0 / 6.0d0)) - (2.0d0 / (t * 3.0d0)))))))))
end function
public static double code(double x, double y, double z, double t, double a, double b, double c) {
	return x / (x + (y * Math.exp((2.0 * (((z * Math.sqrt((t + a))) / t) - ((b - c) * ((a + (5.0 / 6.0)) - (2.0 / (t * 3.0)))))))));
}
def code(x, y, z, t, a, b, c):
	return x / (x + (y * math.exp((2.0 * (((z * math.sqrt((t + a))) / t) - ((b - c) * ((a + (5.0 / 6.0)) - (2.0 / (t * 3.0)))))))))
function code(x, y, z, t, a, b, c)
	return Float64(x / Float64(x + Float64(y * exp(Float64(2.0 * Float64(Float64(Float64(z * sqrt(Float64(t + a))) / t) - Float64(Float64(b - c) * Float64(Float64(a + Float64(5.0 / 6.0)) - Float64(2.0 / Float64(t * 3.0))))))))))
end
function tmp = code(x, y, z, t, a, b, c)
	tmp = x / (x + (y * exp((2.0 * (((z * sqrt((t + a))) / t) - ((b - c) * ((a + (5.0 / 6.0)) - (2.0 / (t * 3.0)))))))));
end
code[x_, y_, z_, t_, a_, b_, c_] := N[(x / N[(x + N[(y * N[Exp[N[(2.0 * N[(N[(N[(z * N[Sqrt[N[(t + a), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] / t), $MachinePrecision] - N[(N[(b - c), $MachinePrecision] * N[(N[(a + N[(5.0 / 6.0), $MachinePrecision]), $MachinePrecision] - N[(2.0 / N[(t * 3.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\frac{x}{x + y \cdot e^{2 \cdot \left(\frac{z \cdot \sqrt{t + a}}{t} - \left(b - c\right) \cdot \left(\left(a + \frac{5}{6}\right) - \frac{2}{t \cdot 3}\right)\right)}}
\end{array}

Alternative 1: 96.6% accurate, 0.7× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_1 := \frac{\sqrt{a + t} \cdot z}{t} - \left(\frac{2}{3 \cdot t} - \left(\frac{5}{6} + a\right)\right) \cdot \left(c - b\right)\\ \mathbf{if}\;t\_1 \leq \infty:\\ \;\;\;\;\frac{x}{e^{t\_1 \cdot 2} \cdot y + x}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{e^{\left(\frac{-0.6666666666666666}{t} \cdot c\right) \cdot 2} \cdot y + x}\\ \end{array} \end{array} \]
(FPCore (x y z t a b c)
 :precision binary64
 (let* ((t_1
         (-
          (/ (* (sqrt (+ a t)) z) t)
          (* (- (/ 2.0 (* 3.0 t)) (+ (/ 5.0 6.0) a)) (- c b)))))
   (if (<= t_1 INFINITY)
     (/ x (+ (* (exp (* t_1 2.0)) y) x))
     (/ x (+ (* (exp (* (* (/ -0.6666666666666666 t) c) 2.0)) y) x)))))
double code(double x, double y, double z, double t, double a, double b, double c) {
	double t_1 = ((sqrt((a + t)) * z) / t) - (((2.0 / (3.0 * t)) - ((5.0 / 6.0) + a)) * (c - b));
	double tmp;
	if (t_1 <= ((double) INFINITY)) {
		tmp = x / ((exp((t_1 * 2.0)) * y) + x);
	} else {
		tmp = x / ((exp((((-0.6666666666666666 / t) * c) * 2.0)) * y) + x);
	}
	return tmp;
}
public static double code(double x, double y, double z, double t, double a, double b, double c) {
	double t_1 = ((Math.sqrt((a + t)) * z) / t) - (((2.0 / (3.0 * t)) - ((5.0 / 6.0) + a)) * (c - b));
	double tmp;
	if (t_1 <= Double.POSITIVE_INFINITY) {
		tmp = x / ((Math.exp((t_1 * 2.0)) * y) + x);
	} else {
		tmp = x / ((Math.exp((((-0.6666666666666666 / t) * c) * 2.0)) * y) + x);
	}
	return tmp;
}
def code(x, y, z, t, a, b, c):
	t_1 = ((math.sqrt((a + t)) * z) / t) - (((2.0 / (3.0 * t)) - ((5.0 / 6.0) + a)) * (c - b))
	tmp = 0
	if t_1 <= math.inf:
		tmp = x / ((math.exp((t_1 * 2.0)) * y) + x)
	else:
		tmp = x / ((math.exp((((-0.6666666666666666 / t) * c) * 2.0)) * y) + x)
	return tmp
function code(x, y, z, t, a, b, c)
	t_1 = Float64(Float64(Float64(sqrt(Float64(a + t)) * z) / t) - Float64(Float64(Float64(2.0 / Float64(3.0 * t)) - Float64(Float64(5.0 / 6.0) + a)) * Float64(c - b)))
	tmp = 0.0
	if (t_1 <= Inf)
		tmp = Float64(x / Float64(Float64(exp(Float64(t_1 * 2.0)) * y) + x));
	else
		tmp = Float64(x / Float64(Float64(exp(Float64(Float64(Float64(-0.6666666666666666 / t) * c) * 2.0)) * y) + x));
	end
	return tmp
end
function tmp_2 = code(x, y, z, t, a, b, c)
	t_1 = ((sqrt((a + t)) * z) / t) - (((2.0 / (3.0 * t)) - ((5.0 / 6.0) + a)) * (c - b));
	tmp = 0.0;
	if (t_1 <= Inf)
		tmp = x / ((exp((t_1 * 2.0)) * y) + x);
	else
		tmp = x / ((exp((((-0.6666666666666666 / t) * c) * 2.0)) * y) + x);
	end
	tmp_2 = tmp;
end
code[x_, y_, z_, t_, a_, b_, c_] := Block[{t$95$1 = N[(N[(N[(N[Sqrt[N[(a + t), $MachinePrecision]], $MachinePrecision] * z), $MachinePrecision] / t), $MachinePrecision] - N[(N[(N[(2.0 / N[(3.0 * t), $MachinePrecision]), $MachinePrecision] - N[(N[(5.0 / 6.0), $MachinePrecision] + a), $MachinePrecision]), $MachinePrecision] * N[(c - b), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$1, Infinity], N[(x / N[(N[(N[Exp[N[(t$95$1 * 2.0), $MachinePrecision]], $MachinePrecision] * y), $MachinePrecision] + x), $MachinePrecision]), $MachinePrecision], N[(x / N[(N[(N[Exp[N[(N[(N[(-0.6666666666666666 / t), $MachinePrecision] * c), $MachinePrecision] * 2.0), $MachinePrecision]], $MachinePrecision] * y), $MachinePrecision] + x), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}

\\
\begin{array}{l}
t_1 := \frac{\sqrt{a + t} \cdot z}{t} - \left(\frac{2}{3 \cdot t} - \left(\frac{5}{6} + a\right)\right) \cdot \left(c - b\right)\\
\mathbf{if}\;t\_1 \leq \infty:\\
\;\;\;\;\frac{x}{e^{t\_1 \cdot 2} \cdot y + x}\\

\mathbf{else}:\\
\;\;\;\;\frac{x}{e^{\left(\frac{-0.6666666666666666}{t} \cdot c\right) \cdot 2} \cdot y + x}\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (-.f64 (/.f64 (*.f64 z (sqrt.f64 (+.f64 t a))) t) (*.f64 (-.f64 b c) (-.f64 (+.f64 a (/.f64 #s(literal 5 binary64) #s(literal 6 binary64))) (/.f64 #s(literal 2 binary64) (*.f64 t #s(literal 3 binary64)))))) < +inf.0

    1. Initial program 98.0%

      \[\frac{x}{x + y \cdot e^{2 \cdot \left(\frac{z \cdot \sqrt{t + a}}{t} - \left(b - c\right) \cdot \left(\left(a + \frac{5}{6}\right) - \frac{2}{t \cdot 3}\right)\right)}} \]
    2. Add Preprocessing

    if +inf.0 < (-.f64 (/.f64 (*.f64 z (sqrt.f64 (+.f64 t a))) t) (*.f64 (-.f64 b c) (-.f64 (+.f64 a (/.f64 #s(literal 5 binary64) #s(literal 6 binary64))) (/.f64 #s(literal 2 binary64) (*.f64 t #s(literal 3 binary64))))))

    1. Initial program 0.0%

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

      \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}}} \]
    4. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}}} \]
      2. lower--.f64N/A

        \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \color{blue}{\left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)}\right)}} \]
      3. lower-+.f64N/A

        \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\color{blue}{\left(\frac{5}{6} + a\right)} - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}} \]
      4. associate-*r/N/A

        \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(\frac{5}{6} + a\right) - \color{blue}{\frac{\frac{2}{3} \cdot 1}{t}}\right)\right)}} \]
      5. metadata-evalN/A

        \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{\color{blue}{\frac{2}{3}}}{t}\right)\right)}} \]
      6. lower-/.f6457.6

        \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(0.8333333333333334 + a\right) - \color{blue}{\frac{0.6666666666666666}{t}}\right)\right)}} \]
    5. Applied rewrites57.6%

      \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(0.8333333333333334 + a\right) - \frac{0.6666666666666666}{t}\right)\right)}}} \]
    6. Taylor expanded in t around 0

      \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \frac{\frac{-2}{3}}{\color{blue}{t}}\right)}} \]
    7. Step-by-step derivation
      1. Applied rewrites57.6%

        \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \frac{-0.6666666666666666}{\color{blue}{t}}\right)}} \]
    8. Recombined 2 regimes into one program.
    9. Final simplification95.5%

      \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{\sqrt{a + t} \cdot z}{t} - \left(\frac{2}{3 \cdot t} - \left(\frac{5}{6} + a\right)\right) \cdot \left(c - b\right) \leq \infty:\\ \;\;\;\;\frac{x}{e^{\left(\frac{\sqrt{a + t} \cdot z}{t} - \left(\frac{2}{3 \cdot t} - \left(\frac{5}{6} + a\right)\right) \cdot \left(c - b\right)\right) \cdot 2} \cdot y + x}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{e^{\left(\frac{-0.6666666666666666}{t} \cdot c\right) \cdot 2} \cdot y + x}\\ \end{array} \]
    10. Add Preprocessing

    Alternative 2: 80.5% accurate, 0.6× speedup?

    \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;e^{\left(\frac{\sqrt{a + t} \cdot z}{t} - \left(\frac{2}{3 \cdot t} - \left(\frac{5}{6} + a\right)\right) \cdot \left(c - b\right)\right) \cdot 2} \leq 0:\\ \;\;\;\;1\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{e^{\left(\left(\left(0.8333333333333334 + a\right) - \frac{0.6666666666666666}{t}\right) \cdot c\right) \cdot 2} \cdot y + x}\\ \end{array} \end{array} \]
    (FPCore (x y z t a b c)
     :precision binary64
     (if (<=
          (exp
           (*
            (-
             (/ (* (sqrt (+ a t)) z) t)
             (* (- (/ 2.0 (* 3.0 t)) (+ (/ 5.0 6.0) a)) (- c b)))
            2.0))
          0.0)
       1.0
       (/
        x
        (+
         (*
          (exp (* (* (- (+ 0.8333333333333334 a) (/ 0.6666666666666666 t)) c) 2.0))
          y)
         x))))
    double code(double x, double y, double z, double t, double a, double b, double c) {
    	double tmp;
    	if (exp(((((sqrt((a + t)) * z) / t) - (((2.0 / (3.0 * t)) - ((5.0 / 6.0) + a)) * (c - b))) * 2.0)) <= 0.0) {
    		tmp = 1.0;
    	} else {
    		tmp = x / ((exp(((((0.8333333333333334 + a) - (0.6666666666666666 / t)) * c) * 2.0)) * y) + x);
    	}
    	return tmp;
    }
    
    real(8) function code(x, y, z, t, a, b, c)
        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), intent (in) :: b
        real(8), intent (in) :: c
        real(8) :: tmp
        if (exp(((((sqrt((a + t)) * z) / t) - (((2.0d0 / (3.0d0 * t)) - ((5.0d0 / 6.0d0) + a)) * (c - b))) * 2.0d0)) <= 0.0d0) then
            tmp = 1.0d0
        else
            tmp = x / ((exp(((((0.8333333333333334d0 + a) - (0.6666666666666666d0 / t)) * c) * 2.0d0)) * y) + x)
        end if
        code = tmp
    end function
    
    public static double code(double x, double y, double z, double t, double a, double b, double c) {
    	double tmp;
    	if (Math.exp(((((Math.sqrt((a + t)) * z) / t) - (((2.0 / (3.0 * t)) - ((5.0 / 6.0) + a)) * (c - b))) * 2.0)) <= 0.0) {
    		tmp = 1.0;
    	} else {
    		tmp = x / ((Math.exp(((((0.8333333333333334 + a) - (0.6666666666666666 / t)) * c) * 2.0)) * y) + x);
    	}
    	return tmp;
    }
    
    def code(x, y, z, t, a, b, c):
    	tmp = 0
    	if math.exp(((((math.sqrt((a + t)) * z) / t) - (((2.0 / (3.0 * t)) - ((5.0 / 6.0) + a)) * (c - b))) * 2.0)) <= 0.0:
    		tmp = 1.0
    	else:
    		tmp = x / ((math.exp(((((0.8333333333333334 + a) - (0.6666666666666666 / t)) * c) * 2.0)) * y) + x)
    	return tmp
    
    function code(x, y, z, t, a, b, c)
    	tmp = 0.0
    	if (exp(Float64(Float64(Float64(Float64(sqrt(Float64(a + t)) * z) / t) - Float64(Float64(Float64(2.0 / Float64(3.0 * t)) - Float64(Float64(5.0 / 6.0) + a)) * Float64(c - b))) * 2.0)) <= 0.0)
    		tmp = 1.0;
    	else
    		tmp = Float64(x / Float64(Float64(exp(Float64(Float64(Float64(Float64(0.8333333333333334 + a) - Float64(0.6666666666666666 / t)) * c) * 2.0)) * y) + x));
    	end
    	return tmp
    end
    
    function tmp_2 = code(x, y, z, t, a, b, c)
    	tmp = 0.0;
    	if (exp(((((sqrt((a + t)) * z) / t) - (((2.0 / (3.0 * t)) - ((5.0 / 6.0) + a)) * (c - b))) * 2.0)) <= 0.0)
    		tmp = 1.0;
    	else
    		tmp = x / ((exp(((((0.8333333333333334 + a) - (0.6666666666666666 / t)) * c) * 2.0)) * y) + x);
    	end
    	tmp_2 = tmp;
    end
    
    code[x_, y_, z_, t_, a_, b_, c_] := If[LessEqual[N[Exp[N[(N[(N[(N[(N[Sqrt[N[(a + t), $MachinePrecision]], $MachinePrecision] * z), $MachinePrecision] / t), $MachinePrecision] - N[(N[(N[(2.0 / N[(3.0 * t), $MachinePrecision]), $MachinePrecision] - N[(N[(5.0 / 6.0), $MachinePrecision] + a), $MachinePrecision]), $MachinePrecision] * N[(c - b), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * 2.0), $MachinePrecision]], $MachinePrecision], 0.0], 1.0, N[(x / N[(N[(N[Exp[N[(N[(N[(N[(0.8333333333333334 + a), $MachinePrecision] - N[(0.6666666666666666 / t), $MachinePrecision]), $MachinePrecision] * c), $MachinePrecision] * 2.0), $MachinePrecision]], $MachinePrecision] * y), $MachinePrecision] + x), $MachinePrecision]), $MachinePrecision]]
    
    \begin{array}{l}
    
    \\
    \begin{array}{l}
    \mathbf{if}\;e^{\left(\frac{\sqrt{a + t} \cdot z}{t} - \left(\frac{2}{3 \cdot t} - \left(\frac{5}{6} + a\right)\right) \cdot \left(c - b\right)\right) \cdot 2} \leq 0:\\
    \;\;\;\;1\\
    
    \mathbf{else}:\\
    \;\;\;\;\frac{x}{e^{\left(\left(\left(0.8333333333333334 + a\right) - \frac{0.6666666666666666}{t}\right) \cdot c\right) \cdot 2} \cdot y + x}\\
    
    
    \end{array}
    \end{array}
    
    Derivation
    1. Split input into 2 regimes
    2. if (exp.f64 (*.f64 #s(literal 2 binary64) (-.f64 (/.f64 (*.f64 z (sqrt.f64 (+.f64 t a))) t) (*.f64 (-.f64 b c) (-.f64 (+.f64 a (/.f64 #s(literal 5 binary64) #s(literal 6 binary64))) (/.f64 #s(literal 2 binary64) (*.f64 t #s(literal 3 binary64)))))))) < 0.0

      1. Initial program 98.3%

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

        \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}}} \]
      4. Step-by-step derivation
        1. lower-*.f64N/A

          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}}} \]
        2. lower--.f64N/A

          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \color{blue}{\left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)}\right)}} \]
        3. lower-+.f64N/A

          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\color{blue}{\left(\frac{5}{6} + a\right)} - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}} \]
        4. associate-*r/N/A

          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(\frac{5}{6} + a\right) - \color{blue}{\frac{\frac{2}{3} \cdot 1}{t}}\right)\right)}} \]
        5. metadata-evalN/A

          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{\color{blue}{\frac{2}{3}}}{t}\right)\right)}} \]
        6. lower-/.f6464.6

          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(0.8333333333333334 + a\right) - \color{blue}{\frac{0.6666666666666666}{t}}\right)\right)}} \]
      5. Applied rewrites64.6%

        \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(0.8333333333333334 + a\right) - \frac{0.6666666666666666}{t}\right)\right)}}} \]
      6. Taylor expanded in y around 0

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

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

        if 0.0 < (exp.f64 (*.f64 #s(literal 2 binary64) (-.f64 (/.f64 (*.f64 z (sqrt.f64 (+.f64 t a))) t) (*.f64 (-.f64 b c) (-.f64 (+.f64 a (/.f64 #s(literal 5 binary64) #s(literal 6 binary64))) (/.f64 #s(literal 2 binary64) (*.f64 t #s(literal 3 binary64))))))))

        1. Initial program 86.5%

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

          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}}} \]
        4. Step-by-step derivation
          1. lower-*.f64N/A

            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}}} \]
          2. lower--.f64N/A

            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \color{blue}{\left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)}\right)}} \]
          3. lower-+.f64N/A

            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\color{blue}{\left(\frac{5}{6} + a\right)} - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}} \]
          4. associate-*r/N/A

            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(\frac{5}{6} + a\right) - \color{blue}{\frac{\frac{2}{3} \cdot 1}{t}}\right)\right)}} \]
          5. metadata-evalN/A

            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{\color{blue}{\frac{2}{3}}}{t}\right)\right)}} \]
          6. lower-/.f6463.8

            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(0.8333333333333334 + a\right) - \color{blue}{\frac{0.6666666666666666}{t}}\right)\right)}} \]
        5. Applied rewrites63.8%

          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(0.8333333333333334 + a\right) - \frac{0.6666666666666666}{t}\right)\right)}}} \]
      8. Recombined 2 regimes into one program.
      9. Final simplification79.4%

        \[\leadsto \begin{array}{l} \mathbf{if}\;e^{\left(\frac{\sqrt{a + t} \cdot z}{t} - \left(\frac{2}{3 \cdot t} - \left(\frac{5}{6} + a\right)\right) \cdot \left(c - b\right)\right) \cdot 2} \leq 0:\\ \;\;\;\;1\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{e^{\left(\left(\left(0.8333333333333334 + a\right) - \frac{0.6666666666666666}{t}\right) \cdot c\right) \cdot 2} \cdot y + x}\\ \end{array} \]
      10. Add Preprocessing

      Alternative 3: 74.6% accurate, 0.6× speedup?

      \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;e^{\left(\frac{\sqrt{a + t} \cdot z}{t} - \left(\frac{2}{3 \cdot t} - \left(\frac{5}{6} + a\right)\right) \cdot \left(c - b\right)\right) \cdot 2} \leq 0:\\ \;\;\;\;1\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{e^{\left(\left(0.8333333333333334 + a\right) \cdot c\right) \cdot 2} \cdot y + x}\\ \end{array} \end{array} \]
      (FPCore (x y z t a b c)
       :precision binary64
       (if (<=
            (exp
             (*
              (-
               (/ (* (sqrt (+ a t)) z) t)
               (* (- (/ 2.0 (* 3.0 t)) (+ (/ 5.0 6.0) a)) (- c b)))
              2.0))
            0.0)
         1.0
         (/ x (+ (* (exp (* (* (+ 0.8333333333333334 a) c) 2.0)) y) x))))
      double code(double x, double y, double z, double t, double a, double b, double c) {
      	double tmp;
      	if (exp(((((sqrt((a + t)) * z) / t) - (((2.0 / (3.0 * t)) - ((5.0 / 6.0) + a)) * (c - b))) * 2.0)) <= 0.0) {
      		tmp = 1.0;
      	} else {
      		tmp = x / ((exp((((0.8333333333333334 + a) * c) * 2.0)) * y) + x);
      	}
      	return tmp;
      }
      
      real(8) function code(x, y, z, t, a, b, c)
          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), intent (in) :: b
          real(8), intent (in) :: c
          real(8) :: tmp
          if (exp(((((sqrt((a + t)) * z) / t) - (((2.0d0 / (3.0d0 * t)) - ((5.0d0 / 6.0d0) + a)) * (c - b))) * 2.0d0)) <= 0.0d0) then
              tmp = 1.0d0
          else
              tmp = x / ((exp((((0.8333333333333334d0 + a) * c) * 2.0d0)) * y) + x)
          end if
          code = tmp
      end function
      
      public static double code(double x, double y, double z, double t, double a, double b, double c) {
      	double tmp;
      	if (Math.exp(((((Math.sqrt((a + t)) * z) / t) - (((2.0 / (3.0 * t)) - ((5.0 / 6.0) + a)) * (c - b))) * 2.0)) <= 0.0) {
      		tmp = 1.0;
      	} else {
      		tmp = x / ((Math.exp((((0.8333333333333334 + a) * c) * 2.0)) * y) + x);
      	}
      	return tmp;
      }
      
      def code(x, y, z, t, a, b, c):
      	tmp = 0
      	if math.exp(((((math.sqrt((a + t)) * z) / t) - (((2.0 / (3.0 * t)) - ((5.0 / 6.0) + a)) * (c - b))) * 2.0)) <= 0.0:
      		tmp = 1.0
      	else:
      		tmp = x / ((math.exp((((0.8333333333333334 + a) * c) * 2.0)) * y) + x)
      	return tmp
      
      function code(x, y, z, t, a, b, c)
      	tmp = 0.0
      	if (exp(Float64(Float64(Float64(Float64(sqrt(Float64(a + t)) * z) / t) - Float64(Float64(Float64(2.0 / Float64(3.0 * t)) - Float64(Float64(5.0 / 6.0) + a)) * Float64(c - b))) * 2.0)) <= 0.0)
      		tmp = 1.0;
      	else
      		tmp = Float64(x / Float64(Float64(exp(Float64(Float64(Float64(0.8333333333333334 + a) * c) * 2.0)) * y) + x));
      	end
      	return tmp
      end
      
      function tmp_2 = code(x, y, z, t, a, b, c)
      	tmp = 0.0;
      	if (exp(((((sqrt((a + t)) * z) / t) - (((2.0 / (3.0 * t)) - ((5.0 / 6.0) + a)) * (c - b))) * 2.0)) <= 0.0)
      		tmp = 1.0;
      	else
      		tmp = x / ((exp((((0.8333333333333334 + a) * c) * 2.0)) * y) + x);
      	end
      	tmp_2 = tmp;
      end
      
      code[x_, y_, z_, t_, a_, b_, c_] := If[LessEqual[N[Exp[N[(N[(N[(N[(N[Sqrt[N[(a + t), $MachinePrecision]], $MachinePrecision] * z), $MachinePrecision] / t), $MachinePrecision] - N[(N[(N[(2.0 / N[(3.0 * t), $MachinePrecision]), $MachinePrecision] - N[(N[(5.0 / 6.0), $MachinePrecision] + a), $MachinePrecision]), $MachinePrecision] * N[(c - b), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * 2.0), $MachinePrecision]], $MachinePrecision], 0.0], 1.0, N[(x / N[(N[(N[Exp[N[(N[(N[(0.8333333333333334 + a), $MachinePrecision] * c), $MachinePrecision] * 2.0), $MachinePrecision]], $MachinePrecision] * y), $MachinePrecision] + x), $MachinePrecision]), $MachinePrecision]]
      
      \begin{array}{l}
      
      \\
      \begin{array}{l}
      \mathbf{if}\;e^{\left(\frac{\sqrt{a + t} \cdot z}{t} - \left(\frac{2}{3 \cdot t} - \left(\frac{5}{6} + a\right)\right) \cdot \left(c - b\right)\right) \cdot 2} \leq 0:\\
      \;\;\;\;1\\
      
      \mathbf{else}:\\
      \;\;\;\;\frac{x}{e^{\left(\left(0.8333333333333334 + a\right) \cdot c\right) \cdot 2} \cdot y + x}\\
      
      
      \end{array}
      \end{array}
      
      Derivation
      1. Split input into 2 regimes
      2. if (exp.f64 (*.f64 #s(literal 2 binary64) (-.f64 (/.f64 (*.f64 z (sqrt.f64 (+.f64 t a))) t) (*.f64 (-.f64 b c) (-.f64 (+.f64 a (/.f64 #s(literal 5 binary64) #s(literal 6 binary64))) (/.f64 #s(literal 2 binary64) (*.f64 t #s(literal 3 binary64)))))))) < 0.0

        1. Initial program 98.3%

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

          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}}} \]
        4. Step-by-step derivation
          1. lower-*.f64N/A

            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}}} \]
          2. lower--.f64N/A

            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \color{blue}{\left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)}\right)}} \]
          3. lower-+.f64N/A

            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\color{blue}{\left(\frac{5}{6} + a\right)} - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}} \]
          4. associate-*r/N/A

            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(\frac{5}{6} + a\right) - \color{blue}{\frac{\frac{2}{3} \cdot 1}{t}}\right)\right)}} \]
          5. metadata-evalN/A

            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{\color{blue}{\frac{2}{3}}}{t}\right)\right)}} \]
          6. lower-/.f6464.6

            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(0.8333333333333334 + a\right) - \color{blue}{\frac{0.6666666666666666}{t}}\right)\right)}} \]
        5. Applied rewrites64.6%

          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(0.8333333333333334 + a\right) - \frac{0.6666666666666666}{t}\right)\right)}}} \]
        6. Taylor expanded in y around 0

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

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

          if 0.0 < (exp.f64 (*.f64 #s(literal 2 binary64) (-.f64 (/.f64 (*.f64 z (sqrt.f64 (+.f64 t a))) t) (*.f64 (-.f64 b c) (-.f64 (+.f64 a (/.f64 #s(literal 5 binary64) #s(literal 6 binary64))) (/.f64 #s(literal 2 binary64) (*.f64 t #s(literal 3 binary64))))))))

          1. Initial program 86.5%

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

            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}}} \]
          4. Step-by-step derivation
            1. lower-*.f64N/A

              \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}}} \]
            2. lower--.f64N/A

              \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \color{blue}{\left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)}\right)}} \]
            3. lower-+.f64N/A

              \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\color{blue}{\left(\frac{5}{6} + a\right)} - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}} \]
            4. associate-*r/N/A

              \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(\frac{5}{6} + a\right) - \color{blue}{\frac{\frac{2}{3} \cdot 1}{t}}\right)\right)}} \]
            5. metadata-evalN/A

              \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{\color{blue}{\frac{2}{3}}}{t}\right)\right)}} \]
            6. lower-/.f6463.8

              \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(0.8333333333333334 + a\right) - \color{blue}{\frac{0.6666666666666666}{t}}\right)\right)}} \]
          5. Applied rewrites63.8%

            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(0.8333333333333334 + a\right) - \frac{0.6666666666666666}{t}\right)\right)}}} \]
          6. Taylor expanded in t around inf

            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\frac{5}{6} + \color{blue}{a}\right)\right)}} \]
          7. Step-by-step derivation
            1. Applied rewrites56.9%

              \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(0.8333333333333334 + \color{blue}{a}\right)\right)}} \]
          8. Recombined 2 regimes into one program.
          9. Final simplification75.7%

            \[\leadsto \begin{array}{l} \mathbf{if}\;e^{\left(\frac{\sqrt{a + t} \cdot z}{t} - \left(\frac{2}{3 \cdot t} - \left(\frac{5}{6} + a\right)\right) \cdot \left(c - b\right)\right) \cdot 2} \leq 0:\\ \;\;\;\;1\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{e^{\left(\left(0.8333333333333334 + a\right) \cdot c\right) \cdot 2} \cdot y + x}\\ \end{array} \]
          10. Add Preprocessing

          Alternative 4: 72.0% accurate, 0.7× speedup?

          \[\begin{array}{l} \\ \begin{array}{l} t_1 := \frac{\sqrt{a + t} \cdot z}{t} - \left(\frac{2}{3 \cdot t} - \left(\frac{5}{6} + a\right)\right) \cdot \left(c - b\right)\\ \mathbf{if}\;t\_1 \leq -1 \cdot 10^{+23}:\\ \;\;\;\;1\\ \mathbf{elif}\;t\_1 \leq 10^{+244}:\\ \;\;\;\;\frac{x}{e^{\left(0.8333333333333334 \cdot c\right) \cdot 2} \cdot y + x}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{e^{\left(c \cdot a\right) \cdot 2} \cdot y + x}\\ \end{array} \end{array} \]
          (FPCore (x y z t a b c)
           :precision binary64
           (let* ((t_1
                   (-
                    (/ (* (sqrt (+ a t)) z) t)
                    (* (- (/ 2.0 (* 3.0 t)) (+ (/ 5.0 6.0) a)) (- c b)))))
             (if (<= t_1 -1e+23)
               1.0
               (if (<= t_1 1e+244)
                 (/ x (+ (* (exp (* (* 0.8333333333333334 c) 2.0)) y) x))
                 (/ x (+ (* (exp (* (* c a) 2.0)) y) x))))))
          double code(double x, double y, double z, double t, double a, double b, double c) {
          	double t_1 = ((sqrt((a + t)) * z) / t) - (((2.0 / (3.0 * t)) - ((5.0 / 6.0) + a)) * (c - b));
          	double tmp;
          	if (t_1 <= -1e+23) {
          		tmp = 1.0;
          	} else if (t_1 <= 1e+244) {
          		tmp = x / ((exp(((0.8333333333333334 * c) * 2.0)) * y) + x);
          	} else {
          		tmp = x / ((exp(((c * a) * 2.0)) * y) + x);
          	}
          	return tmp;
          }
          
          real(8) function code(x, y, z, t, a, b, c)
              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), intent (in) :: b
              real(8), intent (in) :: c
              real(8) :: t_1
              real(8) :: tmp
              t_1 = ((sqrt((a + t)) * z) / t) - (((2.0d0 / (3.0d0 * t)) - ((5.0d0 / 6.0d0) + a)) * (c - b))
              if (t_1 <= (-1d+23)) then
                  tmp = 1.0d0
              else if (t_1 <= 1d+244) then
                  tmp = x / ((exp(((0.8333333333333334d0 * c) * 2.0d0)) * y) + x)
              else
                  tmp = x / ((exp(((c * a) * 2.0d0)) * y) + x)
              end if
              code = tmp
          end function
          
          public static double code(double x, double y, double z, double t, double a, double b, double c) {
          	double t_1 = ((Math.sqrt((a + t)) * z) / t) - (((2.0 / (3.0 * t)) - ((5.0 / 6.0) + a)) * (c - b));
          	double tmp;
          	if (t_1 <= -1e+23) {
          		tmp = 1.0;
          	} else if (t_1 <= 1e+244) {
          		tmp = x / ((Math.exp(((0.8333333333333334 * c) * 2.0)) * y) + x);
          	} else {
          		tmp = x / ((Math.exp(((c * a) * 2.0)) * y) + x);
          	}
          	return tmp;
          }
          
          def code(x, y, z, t, a, b, c):
          	t_1 = ((math.sqrt((a + t)) * z) / t) - (((2.0 / (3.0 * t)) - ((5.0 / 6.0) + a)) * (c - b))
          	tmp = 0
          	if t_1 <= -1e+23:
          		tmp = 1.0
          	elif t_1 <= 1e+244:
          		tmp = x / ((math.exp(((0.8333333333333334 * c) * 2.0)) * y) + x)
          	else:
          		tmp = x / ((math.exp(((c * a) * 2.0)) * y) + x)
          	return tmp
          
          function code(x, y, z, t, a, b, c)
          	t_1 = Float64(Float64(Float64(sqrt(Float64(a + t)) * z) / t) - Float64(Float64(Float64(2.0 / Float64(3.0 * t)) - Float64(Float64(5.0 / 6.0) + a)) * Float64(c - b)))
          	tmp = 0.0
          	if (t_1 <= -1e+23)
          		tmp = 1.0;
          	elseif (t_1 <= 1e+244)
          		tmp = Float64(x / Float64(Float64(exp(Float64(Float64(0.8333333333333334 * c) * 2.0)) * y) + x));
          	else
          		tmp = Float64(x / Float64(Float64(exp(Float64(Float64(c * a) * 2.0)) * y) + x));
          	end
          	return tmp
          end
          
          function tmp_2 = code(x, y, z, t, a, b, c)
          	t_1 = ((sqrt((a + t)) * z) / t) - (((2.0 / (3.0 * t)) - ((5.0 / 6.0) + a)) * (c - b));
          	tmp = 0.0;
          	if (t_1 <= -1e+23)
          		tmp = 1.0;
          	elseif (t_1 <= 1e+244)
          		tmp = x / ((exp(((0.8333333333333334 * c) * 2.0)) * y) + x);
          	else
          		tmp = x / ((exp(((c * a) * 2.0)) * y) + x);
          	end
          	tmp_2 = tmp;
          end
          
          code[x_, y_, z_, t_, a_, b_, c_] := Block[{t$95$1 = N[(N[(N[(N[Sqrt[N[(a + t), $MachinePrecision]], $MachinePrecision] * z), $MachinePrecision] / t), $MachinePrecision] - N[(N[(N[(2.0 / N[(3.0 * t), $MachinePrecision]), $MachinePrecision] - N[(N[(5.0 / 6.0), $MachinePrecision] + a), $MachinePrecision]), $MachinePrecision] * N[(c - b), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$1, -1e+23], 1.0, If[LessEqual[t$95$1, 1e+244], N[(x / N[(N[(N[Exp[N[(N[(0.8333333333333334 * c), $MachinePrecision] * 2.0), $MachinePrecision]], $MachinePrecision] * y), $MachinePrecision] + x), $MachinePrecision]), $MachinePrecision], N[(x / N[(N[(N[Exp[N[(N[(c * a), $MachinePrecision] * 2.0), $MachinePrecision]], $MachinePrecision] * y), $MachinePrecision] + x), $MachinePrecision]), $MachinePrecision]]]]
          
          \begin{array}{l}
          
          \\
          \begin{array}{l}
          t_1 := \frac{\sqrt{a + t} \cdot z}{t} - \left(\frac{2}{3 \cdot t} - \left(\frac{5}{6} + a\right)\right) \cdot \left(c - b\right)\\
          \mathbf{if}\;t\_1 \leq -1 \cdot 10^{+23}:\\
          \;\;\;\;1\\
          
          \mathbf{elif}\;t\_1 \leq 10^{+244}:\\
          \;\;\;\;\frac{x}{e^{\left(0.8333333333333334 \cdot c\right) \cdot 2} \cdot y + x}\\
          
          \mathbf{else}:\\
          \;\;\;\;\frac{x}{e^{\left(c \cdot a\right) \cdot 2} \cdot y + x}\\
          
          
          \end{array}
          \end{array}
          
          Derivation
          1. Split input into 3 regimes
          2. if (-.f64 (/.f64 (*.f64 z (sqrt.f64 (+.f64 t a))) t) (*.f64 (-.f64 b c) (-.f64 (+.f64 a (/.f64 #s(literal 5 binary64) #s(literal 6 binary64))) (/.f64 #s(literal 2 binary64) (*.f64 t #s(literal 3 binary64)))))) < -9.9999999999999992e22

            1. Initial program 98.3%

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

              \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}}} \]
            4. Step-by-step derivation
              1. lower-*.f64N/A

                \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}}} \]
              2. lower--.f64N/A

                \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \color{blue}{\left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)}\right)}} \]
              3. lower-+.f64N/A

                \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\color{blue}{\left(\frac{5}{6} + a\right)} - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}} \]
              4. associate-*r/N/A

                \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(\frac{5}{6} + a\right) - \color{blue}{\frac{\frac{2}{3} \cdot 1}{t}}\right)\right)}} \]
              5. metadata-evalN/A

                \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{\color{blue}{\frac{2}{3}}}{t}\right)\right)}} \]
              6. lower-/.f6464.6

                \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(0.8333333333333334 + a\right) - \color{blue}{\frac{0.6666666666666666}{t}}\right)\right)}} \]
            5. Applied rewrites64.6%

              \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(0.8333333333333334 + a\right) - \frac{0.6666666666666666}{t}\right)\right)}}} \]
            6. Taylor expanded in y around 0

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

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

              if -9.9999999999999992e22 < (-.f64 (/.f64 (*.f64 z (sqrt.f64 (+.f64 t a))) t) (*.f64 (-.f64 b c) (-.f64 (+.f64 a (/.f64 #s(literal 5 binary64) #s(literal 6 binary64))) (/.f64 #s(literal 2 binary64) (*.f64 t #s(literal 3 binary64)))))) < 1.00000000000000007e244

              1. Initial program 100.0%

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

                \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}}} \]
              4. Step-by-step derivation
                1. lower-*.f64N/A

                  \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}}} \]
                2. lower--.f64N/A

                  \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \color{blue}{\left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)}\right)}} \]
                3. lower-+.f64N/A

                  \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\color{blue}{\left(\frac{5}{6} + a\right)} - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}} \]
                4. associate-*r/N/A

                  \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(\frac{5}{6} + a\right) - \color{blue}{\frac{\frac{2}{3} \cdot 1}{t}}\right)\right)}} \]
                5. metadata-evalN/A

                  \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{\color{blue}{\frac{2}{3}}}{t}\right)\right)}} \]
                6. lower-/.f6467.5

                  \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(0.8333333333333334 + a\right) - \color{blue}{\frac{0.6666666666666666}{t}}\right)\right)}} \]
              5. Applied rewrites67.5%

                \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(0.8333333333333334 + a\right) - \frac{0.6666666666666666}{t}\right)\right)}}} \]
              6. Taylor expanded in t around inf

                \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\frac{5}{6} + \color{blue}{a}\right)\right)}} \]
              7. Step-by-step derivation
                1. Applied rewrites61.3%

                  \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(0.8333333333333334 + \color{blue}{a}\right)\right)}} \]
                2. Taylor expanded in a around 0

                  \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \frac{5}{6}\right)}} \]
                3. Step-by-step derivation
                  1. Applied rewrites59.7%

                    \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot 0.8333333333333334\right)}} \]

                  if 1.00000000000000007e244 < (-.f64 (/.f64 (*.f64 z (sqrt.f64 (+.f64 t a))) t) (*.f64 (-.f64 b c) (-.f64 (+.f64 a (/.f64 #s(literal 5 binary64) #s(literal 6 binary64))) (/.f64 #s(literal 2 binary64) (*.f64 t #s(literal 3 binary64))))))

                  1. Initial program 79.9%

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

                    \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}}} \]
                  4. Step-by-step derivation
                    1. lower-*.f64N/A

                      \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}}} \]
                    2. lower--.f64N/A

                      \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \color{blue}{\left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)}\right)}} \]
                    3. lower-+.f64N/A

                      \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\color{blue}{\left(\frac{5}{6} + a\right)} - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}} \]
                    4. associate-*r/N/A

                      \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(\frac{5}{6} + a\right) - \color{blue}{\frac{\frac{2}{3} \cdot 1}{t}}\right)\right)}} \]
                    5. metadata-evalN/A

                      \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{\color{blue}{\frac{2}{3}}}{t}\right)\right)}} \]
                    6. lower-/.f6461.9

                      \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(0.8333333333333334 + a\right) - \color{blue}{\frac{0.6666666666666666}{t}}\right)\right)}} \]
                  5. Applied rewrites61.9%

                    \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(0.8333333333333334 + a\right) - \frac{0.6666666666666666}{t}\right)\right)}}} \]
                  6. Taylor expanded in a around inf

                    \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(a \cdot \color{blue}{c}\right)}} \]
                  7. Step-by-step derivation
                    1. Applied rewrites52.8%

                      \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \color{blue}{a}\right)}} \]
                  8. Recombined 3 regimes into one program.
                  9. Final simplification74.7%

                    \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{\sqrt{a + t} \cdot z}{t} - \left(\frac{2}{3 \cdot t} - \left(\frac{5}{6} + a\right)\right) \cdot \left(c - b\right) \leq -1 \cdot 10^{+23}:\\ \;\;\;\;1\\ \mathbf{elif}\;\frac{\sqrt{a + t} \cdot z}{t} - \left(\frac{2}{3 \cdot t} - \left(\frac{5}{6} + a\right)\right) \cdot \left(c - b\right) \leq 10^{+244}:\\ \;\;\;\;\frac{x}{e^{\left(0.8333333333333334 \cdot c\right) \cdot 2} \cdot y + x}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{e^{\left(c \cdot a\right) \cdot 2} \cdot y + x}\\ \end{array} \]
                  10. Add Preprocessing

                  Alternative 5: 71.4% accurate, 0.9× speedup?

                  \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\frac{\sqrt{a + t} \cdot z}{t} - \left(\frac{2}{3 \cdot t} - \left(\frac{5}{6} + a\right)\right) \cdot \left(c - b\right) \leq -1 \cdot 10^{+23}:\\ \;\;\;\;1\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{e^{\left(c \cdot a\right) \cdot 2} \cdot y + x}\\ \end{array} \end{array} \]
                  (FPCore (x y z t a b c)
                   :precision binary64
                   (if (<=
                        (-
                         (/ (* (sqrt (+ a t)) z) t)
                         (* (- (/ 2.0 (* 3.0 t)) (+ (/ 5.0 6.0) a)) (- c b)))
                        -1e+23)
                     1.0
                     (/ x (+ (* (exp (* (* c a) 2.0)) y) x))))
                  double code(double x, double y, double z, double t, double a, double b, double c) {
                  	double tmp;
                  	if ((((sqrt((a + t)) * z) / t) - (((2.0 / (3.0 * t)) - ((5.0 / 6.0) + a)) * (c - b))) <= -1e+23) {
                  		tmp = 1.0;
                  	} else {
                  		tmp = x / ((exp(((c * a) * 2.0)) * y) + x);
                  	}
                  	return tmp;
                  }
                  
                  real(8) function code(x, y, z, t, a, b, c)
                      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), intent (in) :: b
                      real(8), intent (in) :: c
                      real(8) :: tmp
                      if ((((sqrt((a + t)) * z) / t) - (((2.0d0 / (3.0d0 * t)) - ((5.0d0 / 6.0d0) + a)) * (c - b))) <= (-1d+23)) then
                          tmp = 1.0d0
                      else
                          tmp = x / ((exp(((c * a) * 2.0d0)) * y) + x)
                      end if
                      code = tmp
                  end function
                  
                  public static double code(double x, double y, double z, double t, double a, double b, double c) {
                  	double tmp;
                  	if ((((Math.sqrt((a + t)) * z) / t) - (((2.0 / (3.0 * t)) - ((5.0 / 6.0) + a)) * (c - b))) <= -1e+23) {
                  		tmp = 1.0;
                  	} else {
                  		tmp = x / ((Math.exp(((c * a) * 2.0)) * y) + x);
                  	}
                  	return tmp;
                  }
                  
                  def code(x, y, z, t, a, b, c):
                  	tmp = 0
                  	if (((math.sqrt((a + t)) * z) / t) - (((2.0 / (3.0 * t)) - ((5.0 / 6.0) + a)) * (c - b))) <= -1e+23:
                  		tmp = 1.0
                  	else:
                  		tmp = x / ((math.exp(((c * a) * 2.0)) * y) + x)
                  	return tmp
                  
                  function code(x, y, z, t, a, b, c)
                  	tmp = 0.0
                  	if (Float64(Float64(Float64(sqrt(Float64(a + t)) * z) / t) - Float64(Float64(Float64(2.0 / Float64(3.0 * t)) - Float64(Float64(5.0 / 6.0) + a)) * Float64(c - b))) <= -1e+23)
                  		tmp = 1.0;
                  	else
                  		tmp = Float64(x / Float64(Float64(exp(Float64(Float64(c * a) * 2.0)) * y) + x));
                  	end
                  	return tmp
                  end
                  
                  function tmp_2 = code(x, y, z, t, a, b, c)
                  	tmp = 0.0;
                  	if ((((sqrt((a + t)) * z) / t) - (((2.0 / (3.0 * t)) - ((5.0 / 6.0) + a)) * (c - b))) <= -1e+23)
                  		tmp = 1.0;
                  	else
                  		tmp = x / ((exp(((c * a) * 2.0)) * y) + x);
                  	end
                  	tmp_2 = tmp;
                  end
                  
                  code[x_, y_, z_, t_, a_, b_, c_] := If[LessEqual[N[(N[(N[(N[Sqrt[N[(a + t), $MachinePrecision]], $MachinePrecision] * z), $MachinePrecision] / t), $MachinePrecision] - N[(N[(N[(2.0 / N[(3.0 * t), $MachinePrecision]), $MachinePrecision] - N[(N[(5.0 / 6.0), $MachinePrecision] + a), $MachinePrecision]), $MachinePrecision] * N[(c - b), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], -1e+23], 1.0, N[(x / N[(N[(N[Exp[N[(N[(c * a), $MachinePrecision] * 2.0), $MachinePrecision]], $MachinePrecision] * y), $MachinePrecision] + x), $MachinePrecision]), $MachinePrecision]]
                  
                  \begin{array}{l}
                  
                  \\
                  \begin{array}{l}
                  \mathbf{if}\;\frac{\sqrt{a + t} \cdot z}{t} - \left(\frac{2}{3 \cdot t} - \left(\frac{5}{6} + a\right)\right) \cdot \left(c - b\right) \leq -1 \cdot 10^{+23}:\\
                  \;\;\;\;1\\
                  
                  \mathbf{else}:\\
                  \;\;\;\;\frac{x}{e^{\left(c \cdot a\right) \cdot 2} \cdot y + x}\\
                  
                  
                  \end{array}
                  \end{array}
                  
                  Derivation
                  1. Split input into 2 regimes
                  2. if (-.f64 (/.f64 (*.f64 z (sqrt.f64 (+.f64 t a))) t) (*.f64 (-.f64 b c) (-.f64 (+.f64 a (/.f64 #s(literal 5 binary64) #s(literal 6 binary64))) (/.f64 #s(literal 2 binary64) (*.f64 t #s(literal 3 binary64)))))) < -9.9999999999999992e22

                    1. Initial program 98.3%

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

                      \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}}} \]
                    4. Step-by-step derivation
                      1. lower-*.f64N/A

                        \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}}} \]
                      2. lower--.f64N/A

                        \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \color{blue}{\left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)}\right)}} \]
                      3. lower-+.f64N/A

                        \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\color{blue}{\left(\frac{5}{6} + a\right)} - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}} \]
                      4. associate-*r/N/A

                        \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(\frac{5}{6} + a\right) - \color{blue}{\frac{\frac{2}{3} \cdot 1}{t}}\right)\right)}} \]
                      5. metadata-evalN/A

                        \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{\color{blue}{\frac{2}{3}}}{t}\right)\right)}} \]
                      6. lower-/.f6464.6

                        \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(0.8333333333333334 + a\right) - \color{blue}{\frac{0.6666666666666666}{t}}\right)\right)}} \]
                    5. Applied rewrites64.6%

                      \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(0.8333333333333334 + a\right) - \frac{0.6666666666666666}{t}\right)\right)}}} \]
                    6. Taylor expanded in y around 0

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

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

                      if -9.9999999999999992e22 < (-.f64 (/.f64 (*.f64 z (sqrt.f64 (+.f64 t a))) t) (*.f64 (-.f64 b c) (-.f64 (+.f64 a (/.f64 #s(literal 5 binary64) #s(literal 6 binary64))) (/.f64 #s(literal 2 binary64) (*.f64 t #s(literal 3 binary64))))))

                      1. Initial program 86.5%

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

                        \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}}} \]
                      4. Step-by-step derivation
                        1. lower-*.f64N/A

                          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}}} \]
                        2. lower--.f64N/A

                          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \color{blue}{\left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)}\right)}} \]
                        3. lower-+.f64N/A

                          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\color{blue}{\left(\frac{5}{6} + a\right)} - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}} \]
                        4. associate-*r/N/A

                          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(\frac{5}{6} + a\right) - \color{blue}{\frac{\frac{2}{3} \cdot 1}{t}}\right)\right)}} \]
                        5. metadata-evalN/A

                          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{\color{blue}{\frac{2}{3}}}{t}\right)\right)}} \]
                        6. lower-/.f6463.8

                          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(0.8333333333333334 + a\right) - \color{blue}{\frac{0.6666666666666666}{t}}\right)\right)}} \]
                      5. Applied rewrites63.8%

                        \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(0.8333333333333334 + a\right) - \frac{0.6666666666666666}{t}\right)\right)}}} \]
                      6. Taylor expanded in a around inf

                        \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(a \cdot \color{blue}{c}\right)}} \]
                      7. Step-by-step derivation
                        1. Applied rewrites51.5%

                          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \color{blue}{a}\right)}} \]
                      8. Recombined 2 regimes into one program.
                      9. Final simplification72.7%

                        \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{\sqrt{a + t} \cdot z}{t} - \left(\frac{2}{3 \cdot t} - \left(\frac{5}{6} + a\right)\right) \cdot \left(c - b\right) \leq -1 \cdot 10^{+23}:\\ \;\;\;\;1\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{e^{\left(c \cdot a\right) \cdot 2} \cdot y + x}\\ \end{array} \]
                      10. Add Preprocessing

                      Alternative 6: 77.8% accurate, 1.2× speedup?

                      \[\begin{array}{l} \\ \begin{array}{l} t_1 := \frac{x}{e^{\left(\left(\left(\frac{0.6666666666666666}{t} - 0.8333333333333334\right) - a\right) \cdot b\right) \cdot 2} \cdot y + x}\\ t_2 := \frac{x}{e^{\left(\left(\left(0.8333333333333334 + a\right) - \frac{0.6666666666666666}{t}\right) \cdot c\right) \cdot 2} \cdot y + x}\\ \mathbf{if}\;b \leq -1.05 \cdot 10^{+22}:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;b \leq -4.2 \cdot 10^{-265}:\\ \;\;\;\;t\_2\\ \mathbf{elif}\;b \leq 5.8 \cdot 10^{-135}:\\ \;\;\;\;\frac{x}{e^{\left(\frac{z}{t} \cdot \sqrt{a + t}\right) \cdot 2} \cdot y + x}\\ \mathbf{elif}\;b \leq 5.5 \cdot 10^{+73}:\\ \;\;\;\;t\_2\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \end{array} \]
                      (FPCore (x y z t a b c)
                       :precision binary64
                       (let* ((t_1
                               (/
                                x
                                (+
                                 (*
                                  (exp
                                   (*
                                    (* (- (- (/ 0.6666666666666666 t) 0.8333333333333334) a) b)
                                    2.0))
                                  y)
                                 x)))
                              (t_2
                               (/
                                x
                                (+
                                 (*
                                  (exp
                                   (*
                                    (* (- (+ 0.8333333333333334 a) (/ 0.6666666666666666 t)) c)
                                    2.0))
                                  y)
                                 x))))
                         (if (<= b -1.05e+22)
                           t_1
                           (if (<= b -4.2e-265)
                             t_2
                             (if (<= b 5.8e-135)
                               (/ x (+ (* (exp (* (* (/ z t) (sqrt (+ a t))) 2.0)) y) x))
                               (if (<= b 5.5e+73) t_2 t_1))))))
                      double code(double x, double y, double z, double t, double a, double b, double c) {
                      	double t_1 = x / ((exp((((((0.6666666666666666 / t) - 0.8333333333333334) - a) * b) * 2.0)) * y) + x);
                      	double t_2 = x / ((exp(((((0.8333333333333334 + a) - (0.6666666666666666 / t)) * c) * 2.0)) * y) + x);
                      	double tmp;
                      	if (b <= -1.05e+22) {
                      		tmp = t_1;
                      	} else if (b <= -4.2e-265) {
                      		tmp = t_2;
                      	} else if (b <= 5.8e-135) {
                      		tmp = x / ((exp((((z / t) * sqrt((a + t))) * 2.0)) * y) + x);
                      	} else if (b <= 5.5e+73) {
                      		tmp = t_2;
                      	} else {
                      		tmp = t_1;
                      	}
                      	return tmp;
                      }
                      
                      real(8) function code(x, y, z, t, a, b, c)
                          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), intent (in) :: b
                          real(8), intent (in) :: c
                          real(8) :: t_1
                          real(8) :: t_2
                          real(8) :: tmp
                          t_1 = x / ((exp((((((0.6666666666666666d0 / t) - 0.8333333333333334d0) - a) * b) * 2.0d0)) * y) + x)
                          t_2 = x / ((exp(((((0.8333333333333334d0 + a) - (0.6666666666666666d0 / t)) * c) * 2.0d0)) * y) + x)
                          if (b <= (-1.05d+22)) then
                              tmp = t_1
                          else if (b <= (-4.2d-265)) then
                              tmp = t_2
                          else if (b <= 5.8d-135) then
                              tmp = x / ((exp((((z / t) * sqrt((a + t))) * 2.0d0)) * y) + x)
                          else if (b <= 5.5d+73) then
                              tmp = t_2
                          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 b, double c) {
                      	double t_1 = x / ((Math.exp((((((0.6666666666666666 / t) - 0.8333333333333334) - a) * b) * 2.0)) * y) + x);
                      	double t_2 = x / ((Math.exp(((((0.8333333333333334 + a) - (0.6666666666666666 / t)) * c) * 2.0)) * y) + x);
                      	double tmp;
                      	if (b <= -1.05e+22) {
                      		tmp = t_1;
                      	} else if (b <= -4.2e-265) {
                      		tmp = t_2;
                      	} else if (b <= 5.8e-135) {
                      		tmp = x / ((Math.exp((((z / t) * Math.sqrt((a + t))) * 2.0)) * y) + x);
                      	} else if (b <= 5.5e+73) {
                      		tmp = t_2;
                      	} else {
                      		tmp = t_1;
                      	}
                      	return tmp;
                      }
                      
                      def code(x, y, z, t, a, b, c):
                      	t_1 = x / ((math.exp((((((0.6666666666666666 / t) - 0.8333333333333334) - a) * b) * 2.0)) * y) + x)
                      	t_2 = x / ((math.exp(((((0.8333333333333334 + a) - (0.6666666666666666 / t)) * c) * 2.0)) * y) + x)
                      	tmp = 0
                      	if b <= -1.05e+22:
                      		tmp = t_1
                      	elif b <= -4.2e-265:
                      		tmp = t_2
                      	elif b <= 5.8e-135:
                      		tmp = x / ((math.exp((((z / t) * math.sqrt((a + t))) * 2.0)) * y) + x)
                      	elif b <= 5.5e+73:
                      		tmp = t_2
                      	else:
                      		tmp = t_1
                      	return tmp
                      
                      function code(x, y, z, t, a, b, c)
                      	t_1 = Float64(x / Float64(Float64(exp(Float64(Float64(Float64(Float64(Float64(0.6666666666666666 / t) - 0.8333333333333334) - a) * b) * 2.0)) * y) + x))
                      	t_2 = Float64(x / Float64(Float64(exp(Float64(Float64(Float64(Float64(0.8333333333333334 + a) - Float64(0.6666666666666666 / t)) * c) * 2.0)) * y) + x))
                      	tmp = 0.0
                      	if (b <= -1.05e+22)
                      		tmp = t_1;
                      	elseif (b <= -4.2e-265)
                      		tmp = t_2;
                      	elseif (b <= 5.8e-135)
                      		tmp = Float64(x / Float64(Float64(exp(Float64(Float64(Float64(z / t) * sqrt(Float64(a + t))) * 2.0)) * y) + x));
                      	elseif (b <= 5.5e+73)
                      		tmp = t_2;
                      	else
                      		tmp = t_1;
                      	end
                      	return tmp
                      end
                      
                      function tmp_2 = code(x, y, z, t, a, b, c)
                      	t_1 = x / ((exp((((((0.6666666666666666 / t) - 0.8333333333333334) - a) * b) * 2.0)) * y) + x);
                      	t_2 = x / ((exp(((((0.8333333333333334 + a) - (0.6666666666666666 / t)) * c) * 2.0)) * y) + x);
                      	tmp = 0.0;
                      	if (b <= -1.05e+22)
                      		tmp = t_1;
                      	elseif (b <= -4.2e-265)
                      		tmp = t_2;
                      	elseif (b <= 5.8e-135)
                      		tmp = x / ((exp((((z / t) * sqrt((a + t))) * 2.0)) * y) + x);
                      	elseif (b <= 5.5e+73)
                      		tmp = t_2;
                      	else
                      		tmp = t_1;
                      	end
                      	tmp_2 = tmp;
                      end
                      
                      code[x_, y_, z_, t_, a_, b_, c_] := Block[{t$95$1 = N[(x / N[(N[(N[Exp[N[(N[(N[(N[(N[(0.6666666666666666 / t), $MachinePrecision] - 0.8333333333333334), $MachinePrecision] - a), $MachinePrecision] * b), $MachinePrecision] * 2.0), $MachinePrecision]], $MachinePrecision] * y), $MachinePrecision] + x), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$2 = N[(x / N[(N[(N[Exp[N[(N[(N[(N[(0.8333333333333334 + a), $MachinePrecision] - N[(0.6666666666666666 / t), $MachinePrecision]), $MachinePrecision] * c), $MachinePrecision] * 2.0), $MachinePrecision]], $MachinePrecision] * y), $MachinePrecision] + x), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[b, -1.05e+22], t$95$1, If[LessEqual[b, -4.2e-265], t$95$2, If[LessEqual[b, 5.8e-135], N[(x / N[(N[(N[Exp[N[(N[(N[(z / t), $MachinePrecision] * N[Sqrt[N[(a + t), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * 2.0), $MachinePrecision]], $MachinePrecision] * y), $MachinePrecision] + x), $MachinePrecision]), $MachinePrecision], If[LessEqual[b, 5.5e+73], t$95$2, t$95$1]]]]]]
                      
                      \begin{array}{l}
                      
                      \\
                      \begin{array}{l}
                      t_1 := \frac{x}{e^{\left(\left(\left(\frac{0.6666666666666666}{t} - 0.8333333333333334\right) - a\right) \cdot b\right) \cdot 2} \cdot y + x}\\
                      t_2 := \frac{x}{e^{\left(\left(\left(0.8333333333333334 + a\right) - \frac{0.6666666666666666}{t}\right) \cdot c\right) \cdot 2} \cdot y + x}\\
                      \mathbf{if}\;b \leq -1.05 \cdot 10^{+22}:\\
                      \;\;\;\;t\_1\\
                      
                      \mathbf{elif}\;b \leq -4.2 \cdot 10^{-265}:\\
                      \;\;\;\;t\_2\\
                      
                      \mathbf{elif}\;b \leq 5.8 \cdot 10^{-135}:\\
                      \;\;\;\;\frac{x}{e^{\left(\frac{z}{t} \cdot \sqrt{a + t}\right) \cdot 2} \cdot y + x}\\
                      
                      \mathbf{elif}\;b \leq 5.5 \cdot 10^{+73}:\\
                      \;\;\;\;t\_2\\
                      
                      \mathbf{else}:\\
                      \;\;\;\;t\_1\\
                      
                      
                      \end{array}
                      \end{array}
                      
                      Derivation
                      1. Split input into 3 regimes
                      2. if b < -1.0499999999999999e22 or 5.5000000000000003e73 < b

                        1. Initial program 91.1%

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

                          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(b \cdot \left(\frac{2}{3} \cdot \frac{1}{t} - \left(\frac{5}{6} + a\right)\right)\right)}}} \]
                        4. Step-by-step derivation
                          1. *-commutativeN/A

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(\left(\frac{2}{3} \cdot \frac{1}{t} - \left(\frac{5}{6} + a\right)\right) \cdot b\right)}}} \]
                          2. lower-*.f64N/A

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(\left(\frac{2}{3} \cdot \frac{1}{t} - \left(\frac{5}{6} + a\right)\right) \cdot b\right)}}} \]
                          3. associate--r+N/A

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(\color{blue}{\left(\left(\frac{2}{3} \cdot \frac{1}{t} - \frac{5}{6}\right) - a\right)} \cdot b\right)}} \]
                          4. lower--.f64N/A

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(\color{blue}{\left(\left(\frac{2}{3} \cdot \frac{1}{t} - \frac{5}{6}\right) - a\right)} \cdot b\right)}} \]
                          5. lower--.f64N/A

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(\left(\color{blue}{\left(\frac{2}{3} \cdot \frac{1}{t} - \frac{5}{6}\right)} - a\right) \cdot b\right)}} \]
                          6. associate-*r/N/A

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(\left(\left(\color{blue}{\frac{\frac{2}{3} \cdot 1}{t}} - \frac{5}{6}\right) - a\right) \cdot b\right)}} \]
                          7. metadata-evalN/A

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(\left(\left(\frac{\color{blue}{\frac{2}{3}}}{t} - \frac{5}{6}\right) - a\right) \cdot b\right)}} \]
                          8. lower-/.f6490.4

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(\left(\left(\color{blue}{\frac{0.6666666666666666}{t}} - 0.8333333333333334\right) - a\right) \cdot b\right)}} \]
                        5. Applied rewrites90.4%

                          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(\left(\left(\frac{0.6666666666666666}{t} - 0.8333333333333334\right) - a\right) \cdot b\right)}}} \]

                        if -1.0499999999999999e22 < b < -4.20000000000000007e-265 or 5.8000000000000004e-135 < b < 5.5000000000000003e73

                        1. Initial program 91.9%

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

                          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}}} \]
                        4. Step-by-step derivation
                          1. lower-*.f64N/A

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}}} \]
                          2. lower--.f64N/A

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \color{blue}{\left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)}\right)}} \]
                          3. lower-+.f64N/A

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\color{blue}{\left(\frac{5}{6} + a\right)} - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}} \]
                          4. associate-*r/N/A

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(\frac{5}{6} + a\right) - \color{blue}{\frac{\frac{2}{3} \cdot 1}{t}}\right)\right)}} \]
                          5. metadata-evalN/A

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{\color{blue}{\frac{2}{3}}}{t}\right)\right)}} \]
                          6. lower-/.f6478.7

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(0.8333333333333334 + a\right) - \color{blue}{\frac{0.6666666666666666}{t}}\right)\right)}} \]
                        5. Applied rewrites78.7%

                          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(0.8333333333333334 + a\right) - \frac{0.6666666666666666}{t}\right)\right)}}} \]

                        if -4.20000000000000007e-265 < b < 5.8000000000000004e-135

                        1. Initial program 94.1%

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

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

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

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(\sqrt{a + t} \cdot \frac{z}{t}\right)}}} \]
                          3. lower-sqrt.f64N/A

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

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(\sqrt{\color{blue}{a + t}} \cdot \frac{z}{t}\right)}} \]
                          5. lower-/.f6491.7

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(\sqrt{a + t} \cdot \color{blue}{\frac{z}{t}}\right)}} \]
                        5. Applied rewrites91.7%

                          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(\sqrt{a + t} \cdot \frac{z}{t}\right)}}} \]
                      3. Recombined 3 regimes into one program.
                      4. Final simplification85.5%

                        \[\leadsto \begin{array}{l} \mathbf{if}\;b \leq -1.05 \cdot 10^{+22}:\\ \;\;\;\;\frac{x}{e^{\left(\left(\left(\frac{0.6666666666666666}{t} - 0.8333333333333334\right) - a\right) \cdot b\right) \cdot 2} \cdot y + x}\\ \mathbf{elif}\;b \leq -4.2 \cdot 10^{-265}:\\ \;\;\;\;\frac{x}{e^{\left(\left(\left(0.8333333333333334 + a\right) - \frac{0.6666666666666666}{t}\right) \cdot c\right) \cdot 2} \cdot y + x}\\ \mathbf{elif}\;b \leq 5.8 \cdot 10^{-135}:\\ \;\;\;\;\frac{x}{e^{\left(\frac{z}{t} \cdot \sqrt{a + t}\right) \cdot 2} \cdot y + x}\\ \mathbf{elif}\;b \leq 5.5 \cdot 10^{+73}:\\ \;\;\;\;\frac{x}{e^{\left(\left(\left(0.8333333333333334 + a\right) - \frac{0.6666666666666666}{t}\right) \cdot c\right) \cdot 2} \cdot y + x}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{e^{\left(\left(\left(\frac{0.6666666666666666}{t} - 0.8333333333333334\right) - a\right) \cdot b\right) \cdot 2} \cdot y + x}\\ \end{array} \]
                      5. Add Preprocessing

                      Alternative 7: 80.4% accurate, 1.2× speedup?

                      \[\begin{array}{l} \\ \begin{array}{l} t_1 := \frac{x}{e^{\left(\left(\left(\frac{0.6666666666666666}{t} - 0.8333333333333334\right) - a\right) \cdot b\right) \cdot 2} \cdot y + x}\\ \mathbf{if}\;b \leq -1.05 \cdot 10^{+22}:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;b \leq 5.5 \cdot 10^{+73}:\\ \;\;\;\;\frac{x}{e^{\left(\left(\left(0.8333333333333334 + a\right) - \frac{0.6666666666666666}{t}\right) \cdot c\right) \cdot 2} \cdot y + x}\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \end{array} \]
                      (FPCore (x y z t a b c)
                       :precision binary64
                       (let* ((t_1
                               (/
                                x
                                (+
                                 (*
                                  (exp
                                   (*
                                    (* (- (- (/ 0.6666666666666666 t) 0.8333333333333334) a) b)
                                    2.0))
                                  y)
                                 x))))
                         (if (<= b -1.05e+22)
                           t_1
                           (if (<= b 5.5e+73)
                             (/
                              x
                              (+
                               (*
                                (exp
                                 (* (* (- (+ 0.8333333333333334 a) (/ 0.6666666666666666 t)) c) 2.0))
                                y)
                               x))
                             t_1))))
                      double code(double x, double y, double z, double t, double a, double b, double c) {
                      	double t_1 = x / ((exp((((((0.6666666666666666 / t) - 0.8333333333333334) - a) * b) * 2.0)) * y) + x);
                      	double tmp;
                      	if (b <= -1.05e+22) {
                      		tmp = t_1;
                      	} else if (b <= 5.5e+73) {
                      		tmp = x / ((exp(((((0.8333333333333334 + a) - (0.6666666666666666 / t)) * c) * 2.0)) * y) + x);
                      	} else {
                      		tmp = t_1;
                      	}
                      	return tmp;
                      }
                      
                      real(8) function code(x, y, z, t, a, b, c)
                          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), intent (in) :: b
                          real(8), intent (in) :: c
                          real(8) :: t_1
                          real(8) :: tmp
                          t_1 = x / ((exp((((((0.6666666666666666d0 / t) - 0.8333333333333334d0) - a) * b) * 2.0d0)) * y) + x)
                          if (b <= (-1.05d+22)) then
                              tmp = t_1
                          else if (b <= 5.5d+73) then
                              tmp = x / ((exp(((((0.8333333333333334d0 + a) - (0.6666666666666666d0 / t)) * c) * 2.0d0)) * y) + x)
                          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 b, double c) {
                      	double t_1 = x / ((Math.exp((((((0.6666666666666666 / t) - 0.8333333333333334) - a) * b) * 2.0)) * y) + x);
                      	double tmp;
                      	if (b <= -1.05e+22) {
                      		tmp = t_1;
                      	} else if (b <= 5.5e+73) {
                      		tmp = x / ((Math.exp(((((0.8333333333333334 + a) - (0.6666666666666666 / t)) * c) * 2.0)) * y) + x);
                      	} else {
                      		tmp = t_1;
                      	}
                      	return tmp;
                      }
                      
                      def code(x, y, z, t, a, b, c):
                      	t_1 = x / ((math.exp((((((0.6666666666666666 / t) - 0.8333333333333334) - a) * b) * 2.0)) * y) + x)
                      	tmp = 0
                      	if b <= -1.05e+22:
                      		tmp = t_1
                      	elif b <= 5.5e+73:
                      		tmp = x / ((math.exp(((((0.8333333333333334 + a) - (0.6666666666666666 / t)) * c) * 2.0)) * y) + x)
                      	else:
                      		tmp = t_1
                      	return tmp
                      
                      function code(x, y, z, t, a, b, c)
                      	t_1 = Float64(x / Float64(Float64(exp(Float64(Float64(Float64(Float64(Float64(0.6666666666666666 / t) - 0.8333333333333334) - a) * b) * 2.0)) * y) + x))
                      	tmp = 0.0
                      	if (b <= -1.05e+22)
                      		tmp = t_1;
                      	elseif (b <= 5.5e+73)
                      		tmp = Float64(x / Float64(Float64(exp(Float64(Float64(Float64(Float64(0.8333333333333334 + a) - Float64(0.6666666666666666 / t)) * c) * 2.0)) * y) + x));
                      	else
                      		tmp = t_1;
                      	end
                      	return tmp
                      end
                      
                      function tmp_2 = code(x, y, z, t, a, b, c)
                      	t_1 = x / ((exp((((((0.6666666666666666 / t) - 0.8333333333333334) - a) * b) * 2.0)) * y) + x);
                      	tmp = 0.0;
                      	if (b <= -1.05e+22)
                      		tmp = t_1;
                      	elseif (b <= 5.5e+73)
                      		tmp = x / ((exp(((((0.8333333333333334 + a) - (0.6666666666666666 / t)) * c) * 2.0)) * y) + x);
                      	else
                      		tmp = t_1;
                      	end
                      	tmp_2 = tmp;
                      end
                      
                      code[x_, y_, z_, t_, a_, b_, c_] := Block[{t$95$1 = N[(x / N[(N[(N[Exp[N[(N[(N[(N[(N[(0.6666666666666666 / t), $MachinePrecision] - 0.8333333333333334), $MachinePrecision] - a), $MachinePrecision] * b), $MachinePrecision] * 2.0), $MachinePrecision]], $MachinePrecision] * y), $MachinePrecision] + x), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[b, -1.05e+22], t$95$1, If[LessEqual[b, 5.5e+73], N[(x / N[(N[(N[Exp[N[(N[(N[(N[(0.8333333333333334 + a), $MachinePrecision] - N[(0.6666666666666666 / t), $MachinePrecision]), $MachinePrecision] * c), $MachinePrecision] * 2.0), $MachinePrecision]], $MachinePrecision] * y), $MachinePrecision] + x), $MachinePrecision]), $MachinePrecision], t$95$1]]]
                      
                      \begin{array}{l}
                      
                      \\
                      \begin{array}{l}
                      t_1 := \frac{x}{e^{\left(\left(\left(\frac{0.6666666666666666}{t} - 0.8333333333333334\right) - a\right) \cdot b\right) \cdot 2} \cdot y + x}\\
                      \mathbf{if}\;b \leq -1.05 \cdot 10^{+22}:\\
                      \;\;\;\;t\_1\\
                      
                      \mathbf{elif}\;b \leq 5.5 \cdot 10^{+73}:\\
                      \;\;\;\;\frac{x}{e^{\left(\left(\left(0.8333333333333334 + a\right) - \frac{0.6666666666666666}{t}\right) \cdot c\right) \cdot 2} \cdot y + x}\\
                      
                      \mathbf{else}:\\
                      \;\;\;\;t\_1\\
                      
                      
                      \end{array}
                      \end{array}
                      
                      Derivation
                      1. Split input into 2 regimes
                      2. if b < -1.0499999999999999e22 or 5.5000000000000003e73 < b

                        1. Initial program 91.1%

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

                          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(b \cdot \left(\frac{2}{3} \cdot \frac{1}{t} - \left(\frac{5}{6} + a\right)\right)\right)}}} \]
                        4. Step-by-step derivation
                          1. *-commutativeN/A

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(\left(\frac{2}{3} \cdot \frac{1}{t} - \left(\frac{5}{6} + a\right)\right) \cdot b\right)}}} \]
                          2. lower-*.f64N/A

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(\left(\frac{2}{3} \cdot \frac{1}{t} - \left(\frac{5}{6} + a\right)\right) \cdot b\right)}}} \]
                          3. associate--r+N/A

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(\color{blue}{\left(\left(\frac{2}{3} \cdot \frac{1}{t} - \frac{5}{6}\right) - a\right)} \cdot b\right)}} \]
                          4. lower--.f64N/A

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(\color{blue}{\left(\left(\frac{2}{3} \cdot \frac{1}{t} - \frac{5}{6}\right) - a\right)} \cdot b\right)}} \]
                          5. lower--.f64N/A

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(\left(\color{blue}{\left(\frac{2}{3} \cdot \frac{1}{t} - \frac{5}{6}\right)} - a\right) \cdot b\right)}} \]
                          6. associate-*r/N/A

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(\left(\left(\color{blue}{\frac{\frac{2}{3} \cdot 1}{t}} - \frac{5}{6}\right) - a\right) \cdot b\right)}} \]
                          7. metadata-evalN/A

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(\left(\left(\frac{\color{blue}{\frac{2}{3}}}{t} - \frac{5}{6}\right) - a\right) \cdot b\right)}} \]
                          8. lower-/.f6490.4

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(\left(\left(\color{blue}{\frac{0.6666666666666666}{t}} - 0.8333333333333334\right) - a\right) \cdot b\right)}} \]
                        5. Applied rewrites90.4%

                          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(\left(\left(\frac{0.6666666666666666}{t} - 0.8333333333333334\right) - a\right) \cdot b\right)}}} \]

                        if -1.0499999999999999e22 < b < 5.5000000000000003e73

                        1. Initial program 92.4%

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

                          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}}} \]
                        4. Step-by-step derivation
                          1. lower-*.f64N/A

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}}} \]
                          2. lower--.f64N/A

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \color{blue}{\left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)}\right)}} \]
                          3. lower-+.f64N/A

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\color{blue}{\left(\frac{5}{6} + a\right)} - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}} \]
                          4. associate-*r/N/A

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(\frac{5}{6} + a\right) - \color{blue}{\frac{\frac{2}{3} \cdot 1}{t}}\right)\right)}} \]
                          5. metadata-evalN/A

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{\color{blue}{\frac{2}{3}}}{t}\right)\right)}} \]
                          6. lower-/.f6475.7

                            \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(0.8333333333333334 + a\right) - \color{blue}{\frac{0.6666666666666666}{t}}\right)\right)}} \]
                        5. Applied rewrites75.7%

                          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(0.8333333333333334 + a\right) - \frac{0.6666666666666666}{t}\right)\right)}}} \]
                      3. Recombined 2 regimes into one program.
                      4. Final simplification82.1%

                        \[\leadsto \begin{array}{l} \mathbf{if}\;b \leq -1.05 \cdot 10^{+22}:\\ \;\;\;\;\frac{x}{e^{\left(\left(\left(\frac{0.6666666666666666}{t} - 0.8333333333333334\right) - a\right) \cdot b\right) \cdot 2} \cdot y + x}\\ \mathbf{elif}\;b \leq 5.5 \cdot 10^{+73}:\\ \;\;\;\;\frac{x}{e^{\left(\left(\left(0.8333333333333334 + a\right) - \frac{0.6666666666666666}{t}\right) \cdot c\right) \cdot 2} \cdot y + x}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{e^{\left(\left(\left(\frac{0.6666666666666666}{t} - 0.8333333333333334\right) - a\right) \cdot b\right) \cdot 2} \cdot y + x}\\ \end{array} \]
                      5. Add Preprocessing

                      Alternative 8: 51.9% accurate, 198.0× speedup?

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

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

                        \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}}} \]
                      4. Step-by-step derivation
                        1. lower-*.f64N/A

                          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}}} \]
                        2. lower--.f64N/A

                          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \color{blue}{\left(\left(\frac{5}{6} + a\right) - \frac{2}{3} \cdot \frac{1}{t}\right)}\right)}} \]
                        3. lower-+.f64N/A

                          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\color{blue}{\left(\frac{5}{6} + a\right)} - \frac{2}{3} \cdot \frac{1}{t}\right)\right)}} \]
                        4. associate-*r/N/A

                          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(\frac{5}{6} + a\right) - \color{blue}{\frac{\frac{2}{3} \cdot 1}{t}}\right)\right)}} \]
                        5. metadata-evalN/A

                          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(\frac{5}{6} + a\right) - \frac{\color{blue}{\frac{2}{3}}}{t}\right)\right)}} \]
                        6. lower-/.f6464.1

                          \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \left(c \cdot \left(\left(0.8333333333333334 + a\right) - \color{blue}{\frac{0.6666666666666666}{t}}\right)\right)}} \]
                      5. Applied rewrites64.1%

                        \[\leadsto \frac{x}{x + y \cdot e^{2 \cdot \color{blue}{\left(c \cdot \left(\left(0.8333333333333334 + a\right) - \frac{0.6666666666666666}{t}\right)\right)}}} \]
                      6. Taylor expanded in y around 0

                        \[\leadsto \color{blue}{1} \]
                      7. Step-by-step derivation
                        1. Applied rewrites50.9%

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

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

                        \[\begin{array}{l} \\ \begin{array}{l} t_1 := z \cdot \sqrt{t + a}\\ t_2 := a - \frac{5}{6}\\ \mathbf{if}\;t < -2.118326644891581 \cdot 10^{-50}:\\ \;\;\;\;\frac{x}{x + y \cdot e^{2 \cdot \left(\left(a \cdot c + 0.8333333333333334 \cdot c\right) - a \cdot b\right)}}\\ \mathbf{elif}\;t < 5.196588770651547 \cdot 10^{-123}:\\ \;\;\;\;\frac{x}{x + y \cdot e^{2 \cdot \frac{t\_1 \cdot \left(\left(3 \cdot t\right) \cdot t\_2\right) - \left(\left(\frac{5}{6} + a\right) \cdot \left(3 \cdot t\right) - 2\right) \cdot \left(t\_2 \cdot \left(\left(b - c\right) \cdot t\right)\right)}{\left(\left(t \cdot t\right) \cdot 3\right) \cdot t\_2}}}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{x + y \cdot e^{2 \cdot \left(\frac{t\_1}{t} - \left(b - c\right) \cdot \left(\left(a + \frac{5}{6}\right) - \frac{2}{t \cdot 3}\right)\right)}}\\ \end{array} \end{array} \]
                        (FPCore (x y z t a b c)
                         :precision binary64
                         (let* ((t_1 (* z (sqrt (+ t a)))) (t_2 (- a (/ 5.0 6.0))))
                           (if (< t -2.118326644891581e-50)
                             (/
                              x
                              (+
                               x
                               (* y (exp (* 2.0 (- (+ (* a c) (* 0.8333333333333334 c)) (* a b)))))))
                             (if (< t 5.196588770651547e-123)
                               (/
                                x
                                (+
                                 x
                                 (*
                                  y
                                  (exp
                                   (*
                                    2.0
                                    (/
                                     (-
                                      (* t_1 (* (* 3.0 t) t_2))
                                      (*
                                       (- (* (+ (/ 5.0 6.0) a) (* 3.0 t)) 2.0)
                                       (* t_2 (* (- b c) t))))
                                     (* (* (* t t) 3.0) t_2)))))))
                               (/
                                x
                                (+
                                 x
                                 (*
                                  y
                                  (exp
                                   (*
                                    2.0
                                    (-
                                     (/ t_1 t)
                                     (* (- b c) (- (+ a (/ 5.0 6.0)) (/ 2.0 (* t 3.0))))))))))))))
                        double code(double x, double y, double z, double t, double a, double b, double c) {
                        	double t_1 = z * sqrt((t + a));
                        	double t_2 = a - (5.0 / 6.0);
                        	double tmp;
                        	if (t < -2.118326644891581e-50) {
                        		tmp = x / (x + (y * exp((2.0 * (((a * c) + (0.8333333333333334 * c)) - (a * b))))));
                        	} else if (t < 5.196588770651547e-123) {
                        		tmp = x / (x + (y * exp((2.0 * (((t_1 * ((3.0 * t) * t_2)) - (((((5.0 / 6.0) + a) * (3.0 * t)) - 2.0) * (t_2 * ((b - c) * t)))) / (((t * t) * 3.0) * t_2))))));
                        	} else {
                        		tmp = x / (x + (y * exp((2.0 * ((t_1 / t) - ((b - c) * ((a + (5.0 / 6.0)) - (2.0 / (t * 3.0)))))))));
                        	}
                        	return tmp;
                        }
                        
                        real(8) function code(x, y, z, t, a, b, c)
                            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), intent (in) :: b
                            real(8), intent (in) :: c
                            real(8) :: t_1
                            real(8) :: t_2
                            real(8) :: tmp
                            t_1 = z * sqrt((t + a))
                            t_2 = a - (5.0d0 / 6.0d0)
                            if (t < (-2.118326644891581d-50)) then
                                tmp = x / (x + (y * exp((2.0d0 * (((a * c) + (0.8333333333333334d0 * c)) - (a * b))))))
                            else if (t < 5.196588770651547d-123) then
                                tmp = x / (x + (y * exp((2.0d0 * (((t_1 * ((3.0d0 * t) * t_2)) - (((((5.0d0 / 6.0d0) + a) * (3.0d0 * t)) - 2.0d0) * (t_2 * ((b - c) * t)))) / (((t * t) * 3.0d0) * t_2))))))
                            else
                                tmp = x / (x + (y * exp((2.0d0 * ((t_1 / t) - ((b - c) * ((a + (5.0d0 / 6.0d0)) - (2.0d0 / (t * 3.0d0)))))))))
                            end if
                            code = tmp
                        end function
                        
                        public static double code(double x, double y, double z, double t, double a, double b, double c) {
                        	double t_1 = z * Math.sqrt((t + a));
                        	double t_2 = a - (5.0 / 6.0);
                        	double tmp;
                        	if (t < -2.118326644891581e-50) {
                        		tmp = x / (x + (y * Math.exp((2.0 * (((a * c) + (0.8333333333333334 * c)) - (a * b))))));
                        	} else if (t < 5.196588770651547e-123) {
                        		tmp = x / (x + (y * Math.exp((2.0 * (((t_1 * ((3.0 * t) * t_2)) - (((((5.0 / 6.0) + a) * (3.0 * t)) - 2.0) * (t_2 * ((b - c) * t)))) / (((t * t) * 3.0) * t_2))))));
                        	} else {
                        		tmp = x / (x + (y * Math.exp((2.0 * ((t_1 / t) - ((b - c) * ((a + (5.0 / 6.0)) - (2.0 / (t * 3.0)))))))));
                        	}
                        	return tmp;
                        }
                        
                        def code(x, y, z, t, a, b, c):
                        	t_1 = z * math.sqrt((t + a))
                        	t_2 = a - (5.0 / 6.0)
                        	tmp = 0
                        	if t < -2.118326644891581e-50:
                        		tmp = x / (x + (y * math.exp((2.0 * (((a * c) + (0.8333333333333334 * c)) - (a * b))))))
                        	elif t < 5.196588770651547e-123:
                        		tmp = x / (x + (y * math.exp((2.0 * (((t_1 * ((3.0 * t) * t_2)) - (((((5.0 / 6.0) + a) * (3.0 * t)) - 2.0) * (t_2 * ((b - c) * t)))) / (((t * t) * 3.0) * t_2))))))
                        	else:
                        		tmp = x / (x + (y * math.exp((2.0 * ((t_1 / t) - ((b - c) * ((a + (5.0 / 6.0)) - (2.0 / (t * 3.0)))))))))
                        	return tmp
                        
                        function code(x, y, z, t, a, b, c)
                        	t_1 = Float64(z * sqrt(Float64(t + a)))
                        	t_2 = Float64(a - Float64(5.0 / 6.0))
                        	tmp = 0.0
                        	if (t < -2.118326644891581e-50)
                        		tmp = Float64(x / Float64(x + Float64(y * exp(Float64(2.0 * Float64(Float64(Float64(a * c) + Float64(0.8333333333333334 * c)) - Float64(a * b)))))));
                        	elseif (t < 5.196588770651547e-123)
                        		tmp = Float64(x / Float64(x + Float64(y * exp(Float64(2.0 * Float64(Float64(Float64(t_1 * Float64(Float64(3.0 * t) * t_2)) - Float64(Float64(Float64(Float64(Float64(5.0 / 6.0) + a) * Float64(3.0 * t)) - 2.0) * Float64(t_2 * Float64(Float64(b - c) * t)))) / Float64(Float64(Float64(t * t) * 3.0) * t_2)))))));
                        	else
                        		tmp = Float64(x / Float64(x + Float64(y * exp(Float64(2.0 * Float64(Float64(t_1 / t) - Float64(Float64(b - c) * Float64(Float64(a + Float64(5.0 / 6.0)) - Float64(2.0 / Float64(t * 3.0))))))))));
                        	end
                        	return tmp
                        end
                        
                        function tmp_2 = code(x, y, z, t, a, b, c)
                        	t_1 = z * sqrt((t + a));
                        	t_2 = a - (5.0 / 6.0);
                        	tmp = 0.0;
                        	if (t < -2.118326644891581e-50)
                        		tmp = x / (x + (y * exp((2.0 * (((a * c) + (0.8333333333333334 * c)) - (a * b))))));
                        	elseif (t < 5.196588770651547e-123)
                        		tmp = x / (x + (y * exp((2.0 * (((t_1 * ((3.0 * t) * t_2)) - (((((5.0 / 6.0) + a) * (3.0 * t)) - 2.0) * (t_2 * ((b - c) * t)))) / (((t * t) * 3.0) * t_2))))));
                        	else
                        		tmp = x / (x + (y * exp((2.0 * ((t_1 / t) - ((b - c) * ((a + (5.0 / 6.0)) - (2.0 / (t * 3.0)))))))));
                        	end
                        	tmp_2 = tmp;
                        end
                        
                        code[x_, y_, z_, t_, a_, b_, c_] := Block[{t$95$1 = N[(z * N[Sqrt[N[(t + a), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]}, Block[{t$95$2 = N[(a - N[(5.0 / 6.0), $MachinePrecision]), $MachinePrecision]}, If[Less[t, -2.118326644891581e-50], N[(x / N[(x + N[(y * N[Exp[N[(2.0 * N[(N[(N[(a * c), $MachinePrecision] + N[(0.8333333333333334 * c), $MachinePrecision]), $MachinePrecision] - N[(a * b), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[Less[t, 5.196588770651547e-123], N[(x / N[(x + N[(y * N[Exp[N[(2.0 * N[(N[(N[(t$95$1 * N[(N[(3.0 * t), $MachinePrecision] * t$95$2), $MachinePrecision]), $MachinePrecision] - N[(N[(N[(N[(N[(5.0 / 6.0), $MachinePrecision] + a), $MachinePrecision] * N[(3.0 * t), $MachinePrecision]), $MachinePrecision] - 2.0), $MachinePrecision] * N[(t$95$2 * N[(N[(b - c), $MachinePrecision] * t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / N[(N[(N[(t * t), $MachinePrecision] * 3.0), $MachinePrecision] * t$95$2), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(x / N[(x + N[(y * N[Exp[N[(2.0 * N[(N[(t$95$1 / t), $MachinePrecision] - N[(N[(b - c), $MachinePrecision] * N[(N[(a + N[(5.0 / 6.0), $MachinePrecision]), $MachinePrecision] - N[(2.0 / N[(t * 3.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]]]
                        
                        \begin{array}{l}
                        
                        \\
                        \begin{array}{l}
                        t_1 := z \cdot \sqrt{t + a}\\
                        t_2 := a - \frac{5}{6}\\
                        \mathbf{if}\;t < -2.118326644891581 \cdot 10^{-50}:\\
                        \;\;\;\;\frac{x}{x + y \cdot e^{2 \cdot \left(\left(a \cdot c + 0.8333333333333334 \cdot c\right) - a \cdot b\right)}}\\
                        
                        \mathbf{elif}\;t < 5.196588770651547 \cdot 10^{-123}:\\
                        \;\;\;\;\frac{x}{x + y \cdot e^{2 \cdot \frac{t\_1 \cdot \left(\left(3 \cdot t\right) \cdot t\_2\right) - \left(\left(\frac{5}{6} + a\right) \cdot \left(3 \cdot t\right) - 2\right) \cdot \left(t\_2 \cdot \left(\left(b - c\right) \cdot t\right)\right)}{\left(\left(t \cdot t\right) \cdot 3\right) \cdot t\_2}}}\\
                        
                        \mathbf{else}:\\
                        \;\;\;\;\frac{x}{x + y \cdot e^{2 \cdot \left(\frac{t\_1}{t} - \left(b - c\right) \cdot \left(\left(a + \frac{5}{6}\right) - \frac{2}{t \cdot 3}\right)\right)}}\\
                        
                        
                        \end{array}
                        \end{array}
                        

                        Reproduce

                        ?
                        herbie shell --seed 2024278 
                        (FPCore (x y z t a b c)
                          :name "Numeric.SpecFunctions:invIncompleteBetaWorker from math-functions-0.1.5.2, I"
                          :precision binary64
                        
                          :alt
                          (! :herbie-platform default (if (< t -2118326644891581/100000000000000000000000000000000000000000000000000000000000000000) (/ x (+ x (* y (exp (* 2 (- (+ (* a c) (* 4166666666666667/5000000000000000 c)) (* a b))))))) (if (< t 5196588770651547/1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) (/ x (+ x (* y (exp (* 2 (/ (- (* (* z (sqrt (+ t a))) (* (* 3 t) (- a (/ 5 6)))) (* (- (* (+ (/ 5 6) a) (* 3 t)) 2) (* (- a (/ 5 6)) (* (- b c) t)))) (* (* (* t t) 3) (- a (/ 5 6))))))))) (/ x (+ x (* y (exp (* 2 (- (/ (* z (sqrt (+ t a))) t) (* (- b c) (- (+ a (/ 5 6)) (/ 2 (* t 3)))))))))))))
                        
                          (/ x (+ x (* y (exp (* 2.0 (- (/ (* z (sqrt (+ t a))) t) (* (- b c) (- (+ a (/ 5.0 6.0)) (/ 2.0 (* t 3.0)))))))))))