Codec.Picture.Types:toneMapping from JuicyPixels-3.2.6.1

Percentage Accurate: 88.3% → 99.9%
Time: 6.2s
Alternatives: 10
Speedup: 1.0×

Specification

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

\\
\frac{x \cdot \left(\frac{x}{y} + 1\right)}{x + 1}
\end{array}

Sampling outcomes in binary64 precision:

Local Percentage Accuracy vs ?

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

Accuracy vs Speed?

Herbie found 10 alternatives:

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

Initial Program: 88.3% accurate, 1.0× speedup?

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

\\
\frac{x \cdot \left(\frac{x}{y} + 1\right)}{x + 1}
\end{array}

Alternative 1: 99.9% accurate, 0.8× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x \leq -2 \cdot 10^{+18} \lor \neg \left(x \leq 2 \cdot 10^{+16}\right):\\ \;\;\;\;\frac{x - 1}{y} + 1\\ \mathbf{else}:\\ \;\;\;\;\frac{\mathsf{fma}\left(\frac{x}{y}, x, x\right)}{x + 1}\\ \end{array} \end{array} \]
(FPCore (x y)
 :precision binary64
 (if (or (<= x -2e+18) (not (<= x 2e+16)))
   (+ (/ (- x 1.0) y) 1.0)
   (/ (fma (/ x y) x x) (+ x 1.0))))
double code(double x, double y) {
	double tmp;
	if ((x <= -2e+18) || !(x <= 2e+16)) {
		tmp = ((x - 1.0) / y) + 1.0;
	} else {
		tmp = fma((x / y), x, x) / (x + 1.0);
	}
	return tmp;
}
function code(x, y)
	tmp = 0.0
	if ((x <= -2e+18) || !(x <= 2e+16))
		tmp = Float64(Float64(Float64(x - 1.0) / y) + 1.0);
	else
		tmp = Float64(fma(Float64(x / y), x, x) / Float64(x + 1.0));
	end
	return tmp
end
code[x_, y_] := If[Or[LessEqual[x, -2e+18], N[Not[LessEqual[x, 2e+16]], $MachinePrecision]], N[(N[(N[(x - 1.0), $MachinePrecision] / y), $MachinePrecision] + 1.0), $MachinePrecision], N[(N[(N[(x / y), $MachinePrecision] * x + x), $MachinePrecision] / N[(x + 1.0), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;x \leq -2 \cdot 10^{+18} \lor \neg \left(x \leq 2 \cdot 10^{+16}\right):\\
\;\;\;\;\frac{x - 1}{y} + 1\\

\mathbf{else}:\\
\;\;\;\;\frac{\mathsf{fma}\left(\frac{x}{y}, x, x\right)}{x + 1}\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if x < -2e18 or 2e16 < x

    1. Initial program 70.2%

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

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

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

        \[\leadsto x \cdot \color{blue}{\left(\left(\frac{1}{y} - \frac{1}{x \cdot y}\right) + \frac{1}{x}\right)} \]
      3. distribute-lft-inN/A

        \[\leadsto \color{blue}{x \cdot \left(\frac{1}{y} - \frac{1}{x \cdot y}\right) + x \cdot \frac{1}{x}} \]
      4. sub-negN/A

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

        \[\leadsto \color{blue}{\left(x \cdot \frac{1}{y} + x \cdot \left(\mathsf{neg}\left(\frac{1}{x \cdot y}\right)\right)\right)} + x \cdot \frac{1}{x} \]
      6. distribute-rgt-neg-outN/A

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

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

        \[\leadsto \left(x \cdot \frac{1}{y} + \left(\mathsf{neg}\left(\color{blue}{\frac{x \cdot \frac{1}{x}}{y}}\right)\right)\right) + x \cdot \frac{1}{x} \]
      9. rgt-mult-inverseN/A

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

        \[\leadsto \left(x \cdot \frac{1}{y} + \color{blue}{-1 \cdot \frac{1}{y}}\right) + x \cdot \frac{1}{x} \]
      11. distribute-rgt-outN/A

        \[\leadsto \color{blue}{\frac{1}{y} \cdot \left(x + -1\right)} + x \cdot \frac{1}{x} \]
      12. rgt-mult-inverseN/A

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

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

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{1}{y}}, x + -1, 1\right) \]
      15. lower-+.f6499.8

        \[\leadsto \mathsf{fma}\left(\frac{1}{y}, \color{blue}{x + -1}, 1\right) \]
    5. Applied rewrites99.8%

      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{1}{y}, x + -1, 1\right)} \]
    6. Step-by-step derivation
      1. Applied rewrites100.0%

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

      if -2e18 < x < 2e16

      1. Initial program 99.9%

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

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

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

          \[\leadsto \frac{\color{blue}{\left(\frac{x}{y} + 1\right)} \cdot x}{x + 1} \]
        4. distribute-lft1-inN/A

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

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

        \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(\frac{x}{y}, x, x\right)}}{x + 1} \]
    7. Recombined 2 regimes into one program.
    8. Final simplification99.9%

      \[\leadsto \begin{array}{l} \mathbf{if}\;x \leq -2 \cdot 10^{+18} \lor \neg \left(x \leq 2 \cdot 10^{+16}\right):\\ \;\;\;\;\frac{x - 1}{y} + 1\\ \mathbf{else}:\\ \;\;\;\;\frac{\mathsf{fma}\left(\frac{x}{y}, x, x\right)}{x + 1}\\ \end{array} \]
    9. Add Preprocessing

    Alternative 2: 85.0% accurate, 0.2× speedup?

    \[\begin{array}{l} \\ \begin{array}{l} t_0 := \frac{x \cdot \left(\frac{x}{y} + 1\right)}{x + 1}\\ t_1 := \frac{x - 1}{y}\\ \mathbf{if}\;t\_0 \leq -10000:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;t\_0 \leq 5 \cdot 10^{-7}:\\ \;\;\;\;\mathsf{fma}\left(-x, x, x\right)\\ \mathbf{elif}\;t\_0 \leq 2:\\ \;\;\;\;1 - {x}^{-1}\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \end{array} \]
    (FPCore (x y)
     :precision binary64
     (let* ((t_0 (/ (* x (+ (/ x y) 1.0)) (+ x 1.0))) (t_1 (/ (- x 1.0) y)))
       (if (<= t_0 -10000.0)
         t_1
         (if (<= t_0 5e-7)
           (fma (- x) x x)
           (if (<= t_0 2.0) (- 1.0 (pow x -1.0)) t_1)))))
    double code(double x, double y) {
    	double t_0 = (x * ((x / y) + 1.0)) / (x + 1.0);
    	double t_1 = (x - 1.0) / y;
    	double tmp;
    	if (t_0 <= -10000.0) {
    		tmp = t_1;
    	} else if (t_0 <= 5e-7) {
    		tmp = fma(-x, x, x);
    	} else if (t_0 <= 2.0) {
    		tmp = 1.0 - pow(x, -1.0);
    	} else {
    		tmp = t_1;
    	}
    	return tmp;
    }
    
    function code(x, y)
    	t_0 = Float64(Float64(x * Float64(Float64(x / y) + 1.0)) / Float64(x + 1.0))
    	t_1 = Float64(Float64(x - 1.0) / y)
    	tmp = 0.0
    	if (t_0 <= -10000.0)
    		tmp = t_1;
    	elseif (t_0 <= 5e-7)
    		tmp = fma(Float64(-x), x, x);
    	elseif (t_0 <= 2.0)
    		tmp = Float64(1.0 - (x ^ -1.0));
    	else
    		tmp = t_1;
    	end
    	return tmp
    end
    
    code[x_, y_] := Block[{t$95$0 = N[(N[(x * N[(N[(x / y), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision] / N[(x + 1.0), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$1 = N[(N[(x - 1.0), $MachinePrecision] / y), $MachinePrecision]}, If[LessEqual[t$95$0, -10000.0], t$95$1, If[LessEqual[t$95$0, 5e-7], N[((-x) * x + x), $MachinePrecision], If[LessEqual[t$95$0, 2.0], N[(1.0 - N[Power[x, -1.0], $MachinePrecision]), $MachinePrecision], t$95$1]]]]]
    
    \begin{array}{l}
    
    \\
    \begin{array}{l}
    t_0 := \frac{x \cdot \left(\frac{x}{y} + 1\right)}{x + 1}\\
    t_1 := \frac{x - 1}{y}\\
    \mathbf{if}\;t\_0 \leq -10000:\\
    \;\;\;\;t\_1\\
    
    \mathbf{elif}\;t\_0 \leq 5 \cdot 10^{-7}:\\
    \;\;\;\;\mathsf{fma}\left(-x, x, x\right)\\
    
    \mathbf{elif}\;t\_0 \leq 2:\\
    \;\;\;\;1 - {x}^{-1}\\
    
    \mathbf{else}:\\
    \;\;\;\;t\_1\\
    
    
    \end{array}
    \end{array}
    
    Derivation
    1. Split input into 3 regimes
    2. if (/.f64 (*.f64 x (+.f64 (/.f64 x y) #s(literal 1 binary64))) (+.f64 x #s(literal 1 binary64))) < -1e4 or 2 < (/.f64 (*.f64 x (+.f64 (/.f64 x y) #s(literal 1 binary64))) (+.f64 x #s(literal 1 binary64)))

      1. Initial program 65.9%

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

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

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

          \[\leadsto x \cdot \color{blue}{\left(\left(\frac{1}{y} - \frac{1}{x \cdot y}\right) + \frac{1}{x}\right)} \]
        3. distribute-lft-inN/A

          \[\leadsto \color{blue}{x \cdot \left(\frac{1}{y} - \frac{1}{x \cdot y}\right) + x \cdot \frac{1}{x}} \]
        4. sub-negN/A

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

          \[\leadsto \color{blue}{\left(x \cdot \frac{1}{y} + x \cdot \left(\mathsf{neg}\left(\frac{1}{x \cdot y}\right)\right)\right)} + x \cdot \frac{1}{x} \]
        6. distribute-rgt-neg-outN/A

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

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

          \[\leadsto \left(x \cdot \frac{1}{y} + \left(\mathsf{neg}\left(\color{blue}{\frac{x \cdot \frac{1}{x}}{y}}\right)\right)\right) + x \cdot \frac{1}{x} \]
        9. rgt-mult-inverseN/A

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

          \[\leadsto \left(x \cdot \frac{1}{y} + \color{blue}{-1 \cdot \frac{1}{y}}\right) + x \cdot \frac{1}{x} \]
        11. distribute-rgt-outN/A

          \[\leadsto \color{blue}{\frac{1}{y} \cdot \left(x + -1\right)} + x \cdot \frac{1}{x} \]
        12. rgt-mult-inverseN/A

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

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

          \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{1}{y}}, x + -1, 1\right) \]
        15. lower-+.f6488.6

          \[\leadsto \mathsf{fma}\left(\frac{1}{y}, \color{blue}{x + -1}, 1\right) \]
      5. Applied rewrites88.6%

        \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{1}{y}, x + -1, 1\right)} \]
      6. Taylor expanded in y around 0

        \[\leadsto \frac{x - 1}{\color{blue}{y}} \]
      7. Step-by-step derivation
        1. Applied rewrites86.7%

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

        if -1e4 < (/.f64 (*.f64 x (+.f64 (/.f64 x y) #s(literal 1 binary64))) (+.f64 x #s(literal 1 binary64))) < 4.99999999999999977e-7

        1. Initial program 99.9%

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

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

            \[\leadsto \color{blue}{\frac{x}{1 + x}} \]
          2. lower-+.f6486.4

            \[\leadsto \frac{x}{\color{blue}{1 + x}} \]
        5. Applied rewrites86.4%

          \[\leadsto \color{blue}{\frac{x}{1 + x}} \]
        6. Taylor expanded in x around 0

          \[\leadsto x \cdot \color{blue}{\left(1 + -1 \cdot x\right)} \]
        7. Step-by-step derivation
          1. Applied rewrites85.9%

            \[\leadsto \mathsf{fma}\left(-x, \color{blue}{x}, x\right) \]

          if 4.99999999999999977e-7 < (/.f64 (*.f64 x (+.f64 (/.f64 x y) #s(literal 1 binary64))) (+.f64 x #s(literal 1 binary64))) < 2

          1. Initial program 100.0%

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

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

              \[\leadsto \color{blue}{\frac{x}{1 + x}} \]
            2. lower-+.f6495.3

              \[\leadsto \frac{x}{\color{blue}{1 + x}} \]
          5. Applied rewrites95.3%

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

            \[\leadsto 1 - \color{blue}{\frac{1}{x}} \]
          7. Step-by-step derivation
            1. Applied rewrites92.4%

              \[\leadsto 1 - \color{blue}{\frac{1}{x}} \]
          8. Recombined 3 regimes into one program.
          9. Final simplification87.3%

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

          Alternative 3: 85.6% accurate, 0.2× speedup?

          \[\begin{array}{l} \\ \begin{array}{l} t_0 := \frac{x \cdot \left(\frac{x}{y} + 1\right)}{x + 1}\\ \mathbf{if}\;t\_0 \leq -10000:\\ \;\;\;\;\frac{x - 1}{y}\\ \mathbf{elif}\;t\_0 \leq 2:\\ \;\;\;\;\frac{x}{1 + x}\\ \mathbf{else}:\\ \;\;\;\;{y}^{-1} \cdot x\\ \end{array} \end{array} \]
          (FPCore (x y)
           :precision binary64
           (let* ((t_0 (/ (* x (+ (/ x y) 1.0)) (+ x 1.0))))
             (if (<= t_0 -10000.0)
               (/ (- x 1.0) y)
               (if (<= t_0 2.0) (/ x (+ 1.0 x)) (* (pow y -1.0) x)))))
          double code(double x, double y) {
          	double t_0 = (x * ((x / y) + 1.0)) / (x + 1.0);
          	double tmp;
          	if (t_0 <= -10000.0) {
          		tmp = (x - 1.0) / y;
          	} else if (t_0 <= 2.0) {
          		tmp = x / (1.0 + x);
          	} else {
          		tmp = pow(y, -1.0) * x;
          	}
          	return tmp;
          }
          
          real(8) function code(x, y)
              real(8), intent (in) :: x
              real(8), intent (in) :: y
              real(8) :: t_0
              real(8) :: tmp
              t_0 = (x * ((x / y) + 1.0d0)) / (x + 1.0d0)
              if (t_0 <= (-10000.0d0)) then
                  tmp = (x - 1.0d0) / y
              else if (t_0 <= 2.0d0) then
                  tmp = x / (1.0d0 + x)
              else
                  tmp = (y ** (-1.0d0)) * x
              end if
              code = tmp
          end function
          
          public static double code(double x, double y) {
          	double t_0 = (x * ((x / y) + 1.0)) / (x + 1.0);
          	double tmp;
          	if (t_0 <= -10000.0) {
          		tmp = (x - 1.0) / y;
          	} else if (t_0 <= 2.0) {
          		tmp = x / (1.0 + x);
          	} else {
          		tmp = Math.pow(y, -1.0) * x;
          	}
          	return tmp;
          }
          
          def code(x, y):
          	t_0 = (x * ((x / y) + 1.0)) / (x + 1.0)
          	tmp = 0
          	if t_0 <= -10000.0:
          		tmp = (x - 1.0) / y
          	elif t_0 <= 2.0:
          		tmp = x / (1.0 + x)
          	else:
          		tmp = math.pow(y, -1.0) * x
          	return tmp
          
          function code(x, y)
          	t_0 = Float64(Float64(x * Float64(Float64(x / y) + 1.0)) / Float64(x + 1.0))
          	tmp = 0.0
          	if (t_0 <= -10000.0)
          		tmp = Float64(Float64(x - 1.0) / y);
          	elseif (t_0 <= 2.0)
          		tmp = Float64(x / Float64(1.0 + x));
          	else
          		tmp = Float64((y ^ -1.0) * x);
          	end
          	return tmp
          end
          
          function tmp_2 = code(x, y)
          	t_0 = (x * ((x / y) + 1.0)) / (x + 1.0);
          	tmp = 0.0;
          	if (t_0 <= -10000.0)
          		tmp = (x - 1.0) / y;
          	elseif (t_0 <= 2.0)
          		tmp = x / (1.0 + x);
          	else
          		tmp = (y ^ -1.0) * x;
          	end
          	tmp_2 = tmp;
          end
          
          code[x_, y_] := Block[{t$95$0 = N[(N[(x * N[(N[(x / y), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision] / N[(x + 1.0), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$0, -10000.0], N[(N[(x - 1.0), $MachinePrecision] / y), $MachinePrecision], If[LessEqual[t$95$0, 2.0], N[(x / N[(1.0 + x), $MachinePrecision]), $MachinePrecision], N[(N[Power[y, -1.0], $MachinePrecision] * x), $MachinePrecision]]]]
          
          \begin{array}{l}
          
          \\
          \begin{array}{l}
          t_0 := \frac{x \cdot \left(\frac{x}{y} + 1\right)}{x + 1}\\
          \mathbf{if}\;t\_0 \leq -10000:\\
          \;\;\;\;\frac{x - 1}{y}\\
          
          \mathbf{elif}\;t\_0 \leq 2:\\
          \;\;\;\;\frac{x}{1 + x}\\
          
          \mathbf{else}:\\
          \;\;\;\;{y}^{-1} \cdot x\\
          
          
          \end{array}
          \end{array}
          
          Derivation
          1. Split input into 3 regimes
          2. if (/.f64 (*.f64 x (+.f64 (/.f64 x y) #s(literal 1 binary64))) (+.f64 x #s(literal 1 binary64))) < -1e4

            1. Initial program 66.7%

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

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

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

                \[\leadsto x \cdot \color{blue}{\left(\left(\frac{1}{y} - \frac{1}{x \cdot y}\right) + \frac{1}{x}\right)} \]
              3. distribute-lft-inN/A

                \[\leadsto \color{blue}{x \cdot \left(\frac{1}{y} - \frac{1}{x \cdot y}\right) + x \cdot \frac{1}{x}} \]
              4. sub-negN/A

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

                \[\leadsto \color{blue}{\left(x \cdot \frac{1}{y} + x \cdot \left(\mathsf{neg}\left(\frac{1}{x \cdot y}\right)\right)\right)} + x \cdot \frac{1}{x} \]
              6. distribute-rgt-neg-outN/A

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

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

                \[\leadsto \left(x \cdot \frac{1}{y} + \left(\mathsf{neg}\left(\color{blue}{\frac{x \cdot \frac{1}{x}}{y}}\right)\right)\right) + x \cdot \frac{1}{x} \]
              9. rgt-mult-inverseN/A

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

                \[\leadsto \left(x \cdot \frac{1}{y} + \color{blue}{-1 \cdot \frac{1}{y}}\right) + x \cdot \frac{1}{x} \]
              11. distribute-rgt-outN/A

                \[\leadsto \color{blue}{\frac{1}{y} \cdot \left(x + -1\right)} + x \cdot \frac{1}{x} \]
              12. rgt-mult-inverseN/A

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

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

                \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{1}{y}}, x + -1, 1\right) \]
              15. lower-+.f6491.4

                \[\leadsto \mathsf{fma}\left(\frac{1}{y}, \color{blue}{x + -1}, 1\right) \]
            5. Applied rewrites91.4%

              \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{1}{y}, x + -1, 1\right)} \]
            6. Taylor expanded in y around 0

              \[\leadsto \frac{x - 1}{\color{blue}{y}} \]
            7. Step-by-step derivation
              1. Applied rewrites88.4%

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

              if -1e4 < (/.f64 (*.f64 x (+.f64 (/.f64 x y) #s(literal 1 binary64))) (+.f64 x #s(literal 1 binary64))) < 2

              1. Initial program 99.9%

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

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

                  \[\leadsto \color{blue}{\frac{x}{1 + x}} \]
                2. lower-+.f6488.8

                  \[\leadsto \frac{x}{\color{blue}{1 + x}} \]
              5. Applied rewrites88.8%

                \[\leadsto \color{blue}{\frac{x}{1 + x}} \]

              if 2 < (/.f64 (*.f64 x (+.f64 (/.f64 x y) #s(literal 1 binary64))) (+.f64 x #s(literal 1 binary64)))

              1. Initial program 65.2%

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

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

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

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

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

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

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

                  \[\leadsto \frac{x}{y \cdot \color{blue}{\left(x + 1\right)}} \cdot x \]
                7. distribute-lft-inN/A

                  \[\leadsto \frac{x}{\color{blue}{y \cdot x + y \cdot 1}} \cdot x \]
                8. *-rgt-identityN/A

                  \[\leadsto \frac{x}{y \cdot x + \color{blue}{y}} \cdot x \]
                9. lower-fma.f6484.5

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

                \[\leadsto \color{blue}{\frac{x}{\mathsf{fma}\left(y, x, y\right)} \cdot x} \]
              6. Taylor expanded in x around inf

                \[\leadsto \frac{1}{y} \cdot x \]
              7. Step-by-step derivation
                1. Applied rewrites85.5%

                  \[\leadsto \frac{1}{y} \cdot x \]
              8. Recombined 3 regimes into one program.
              9. Final simplification87.9%

                \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{x \cdot \left(\frac{x}{y} + 1\right)}{x + 1} \leq -10000:\\ \;\;\;\;\frac{x - 1}{y}\\ \mathbf{elif}\;\frac{x \cdot \left(\frac{x}{y} + 1\right)}{x + 1} \leq 2:\\ \;\;\;\;\frac{x}{1 + x}\\ \mathbf{else}:\\ \;\;\;\;{y}^{-1} \cdot x\\ \end{array} \]
              10. Add Preprocessing

              Alternative 4: 84.8% accurate, 0.3× speedup?

              \[\begin{array}{l} \\ \begin{array}{l} t_0 := \frac{x \cdot \left(\frac{x}{y} + 1\right)}{x + 1}\\ t_1 := \frac{x - 1}{y}\\ \mathbf{if}\;t\_0 \leq -10000:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;t\_0 \leq 5 \cdot 10^{-7}:\\ \;\;\;\;\mathsf{fma}\left(-x, x, x\right)\\ \mathbf{elif}\;t\_0 \leq 2:\\ \;\;\;\;1\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \end{array} \]
              (FPCore (x y)
               :precision binary64
               (let* ((t_0 (/ (* x (+ (/ x y) 1.0)) (+ x 1.0))) (t_1 (/ (- x 1.0) y)))
                 (if (<= t_0 -10000.0)
                   t_1
                   (if (<= t_0 5e-7) (fma (- x) x x) (if (<= t_0 2.0) 1.0 t_1)))))
              double code(double x, double y) {
              	double t_0 = (x * ((x / y) + 1.0)) / (x + 1.0);
              	double t_1 = (x - 1.0) / y;
              	double tmp;
              	if (t_0 <= -10000.0) {
              		tmp = t_1;
              	} else if (t_0 <= 5e-7) {
              		tmp = fma(-x, x, x);
              	} else if (t_0 <= 2.0) {
              		tmp = 1.0;
              	} else {
              		tmp = t_1;
              	}
              	return tmp;
              }
              
              function code(x, y)
              	t_0 = Float64(Float64(x * Float64(Float64(x / y) + 1.0)) / Float64(x + 1.0))
              	t_1 = Float64(Float64(x - 1.0) / y)
              	tmp = 0.0
              	if (t_0 <= -10000.0)
              		tmp = t_1;
              	elseif (t_0 <= 5e-7)
              		tmp = fma(Float64(-x), x, x);
              	elseif (t_0 <= 2.0)
              		tmp = 1.0;
              	else
              		tmp = t_1;
              	end
              	return tmp
              end
              
              code[x_, y_] := Block[{t$95$0 = N[(N[(x * N[(N[(x / y), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision] / N[(x + 1.0), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$1 = N[(N[(x - 1.0), $MachinePrecision] / y), $MachinePrecision]}, If[LessEqual[t$95$0, -10000.0], t$95$1, If[LessEqual[t$95$0, 5e-7], N[((-x) * x + x), $MachinePrecision], If[LessEqual[t$95$0, 2.0], 1.0, t$95$1]]]]]
              
              \begin{array}{l}
              
              \\
              \begin{array}{l}
              t_0 := \frac{x \cdot \left(\frac{x}{y} + 1\right)}{x + 1}\\
              t_1 := \frac{x - 1}{y}\\
              \mathbf{if}\;t\_0 \leq -10000:\\
              \;\;\;\;t\_1\\
              
              \mathbf{elif}\;t\_0 \leq 5 \cdot 10^{-7}:\\
              \;\;\;\;\mathsf{fma}\left(-x, x, x\right)\\
              
              \mathbf{elif}\;t\_0 \leq 2:\\
              \;\;\;\;1\\
              
              \mathbf{else}:\\
              \;\;\;\;t\_1\\
              
              
              \end{array}
              \end{array}
              
              Derivation
              1. Split input into 3 regimes
              2. if (/.f64 (*.f64 x (+.f64 (/.f64 x y) #s(literal 1 binary64))) (+.f64 x #s(literal 1 binary64))) < -1e4 or 2 < (/.f64 (*.f64 x (+.f64 (/.f64 x y) #s(literal 1 binary64))) (+.f64 x #s(literal 1 binary64)))

                1. Initial program 65.9%

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

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

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

                    \[\leadsto x \cdot \color{blue}{\left(\left(\frac{1}{y} - \frac{1}{x \cdot y}\right) + \frac{1}{x}\right)} \]
                  3. distribute-lft-inN/A

                    \[\leadsto \color{blue}{x \cdot \left(\frac{1}{y} - \frac{1}{x \cdot y}\right) + x \cdot \frac{1}{x}} \]
                  4. sub-negN/A

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

                    \[\leadsto \color{blue}{\left(x \cdot \frac{1}{y} + x \cdot \left(\mathsf{neg}\left(\frac{1}{x \cdot y}\right)\right)\right)} + x \cdot \frac{1}{x} \]
                  6. distribute-rgt-neg-outN/A

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

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

                    \[\leadsto \left(x \cdot \frac{1}{y} + \left(\mathsf{neg}\left(\color{blue}{\frac{x \cdot \frac{1}{x}}{y}}\right)\right)\right) + x \cdot \frac{1}{x} \]
                  9. rgt-mult-inverseN/A

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

                    \[\leadsto \left(x \cdot \frac{1}{y} + \color{blue}{-1 \cdot \frac{1}{y}}\right) + x \cdot \frac{1}{x} \]
                  11. distribute-rgt-outN/A

                    \[\leadsto \color{blue}{\frac{1}{y} \cdot \left(x + -1\right)} + x \cdot \frac{1}{x} \]
                  12. rgt-mult-inverseN/A

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

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

                    \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{1}{y}}, x + -1, 1\right) \]
                  15. lower-+.f6488.6

                    \[\leadsto \mathsf{fma}\left(\frac{1}{y}, \color{blue}{x + -1}, 1\right) \]
                5. Applied rewrites88.6%

                  \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{1}{y}, x + -1, 1\right)} \]
                6. Taylor expanded in y around 0

                  \[\leadsto \frac{x - 1}{\color{blue}{y}} \]
                7. Step-by-step derivation
                  1. Applied rewrites86.7%

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

                  if -1e4 < (/.f64 (*.f64 x (+.f64 (/.f64 x y) #s(literal 1 binary64))) (+.f64 x #s(literal 1 binary64))) < 4.99999999999999977e-7

                  1. Initial program 99.9%

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

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

                      \[\leadsto \color{blue}{\frac{x}{1 + x}} \]
                    2. lower-+.f6486.4

                      \[\leadsto \frac{x}{\color{blue}{1 + x}} \]
                  5. Applied rewrites86.4%

                    \[\leadsto \color{blue}{\frac{x}{1 + x}} \]
                  6. Taylor expanded in x around 0

                    \[\leadsto x \cdot \color{blue}{\left(1 + -1 \cdot x\right)} \]
                  7. Step-by-step derivation
                    1. Applied rewrites85.9%

                      \[\leadsto \mathsf{fma}\left(-x, \color{blue}{x}, x\right) \]

                    if 4.99999999999999977e-7 < (/.f64 (*.f64 x (+.f64 (/.f64 x y) #s(literal 1 binary64))) (+.f64 x #s(literal 1 binary64))) < 2

                    1. Initial program 100.0%

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

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

                        \[\leadsto \color{blue}{\frac{x}{1 + x}} \]
                      2. lower-+.f6495.3

                        \[\leadsto \frac{x}{\color{blue}{1 + x}} \]
                    5. Applied rewrites95.3%

                      \[\leadsto \color{blue}{\frac{x}{1 + x}} \]
                    6. Taylor expanded in x around 0

                      \[\leadsto x \cdot \color{blue}{\left(1 + -1 \cdot x\right)} \]
                    7. Step-by-step derivation
                      1. Applied rewrites1.0%

                        \[\leadsto \mathsf{fma}\left(-x, \color{blue}{x}, x\right) \]
                      2. Taylor expanded in x around inf

                        \[\leadsto 1 \]
                      3. Step-by-step derivation
                        1. Applied rewrites89.1%

                          \[\leadsto 1 \]
                      4. Recombined 3 regimes into one program.
                      5. Add Preprocessing

                      Alternative 5: 85.6% accurate, 0.4× speedup?

                      \[\begin{array}{l} \\ \begin{array}{l} t_0 := \frac{x \cdot \left(\frac{x}{y} + 1\right)}{x + 1}\\ \mathbf{if}\;t\_0 \leq -10000 \lor \neg \left(t\_0 \leq 2\right):\\ \;\;\;\;\frac{x - 1}{y}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{1 + x}\\ \end{array} \end{array} \]
                      (FPCore (x y)
                       :precision binary64
                       (let* ((t_0 (/ (* x (+ (/ x y) 1.0)) (+ x 1.0))))
                         (if (or (<= t_0 -10000.0) (not (<= t_0 2.0)))
                           (/ (- x 1.0) y)
                           (/ x (+ 1.0 x)))))
                      double code(double x, double y) {
                      	double t_0 = (x * ((x / y) + 1.0)) / (x + 1.0);
                      	double tmp;
                      	if ((t_0 <= -10000.0) || !(t_0 <= 2.0)) {
                      		tmp = (x - 1.0) / y;
                      	} else {
                      		tmp = x / (1.0 + x);
                      	}
                      	return tmp;
                      }
                      
                      real(8) function code(x, y)
                          real(8), intent (in) :: x
                          real(8), intent (in) :: y
                          real(8) :: t_0
                          real(8) :: tmp
                          t_0 = (x * ((x / y) + 1.0d0)) / (x + 1.0d0)
                          if ((t_0 <= (-10000.0d0)) .or. (.not. (t_0 <= 2.0d0))) then
                              tmp = (x - 1.0d0) / y
                          else
                              tmp = x / (1.0d0 + x)
                          end if
                          code = tmp
                      end function
                      
                      public static double code(double x, double y) {
                      	double t_0 = (x * ((x / y) + 1.0)) / (x + 1.0);
                      	double tmp;
                      	if ((t_0 <= -10000.0) || !(t_0 <= 2.0)) {
                      		tmp = (x - 1.0) / y;
                      	} else {
                      		tmp = x / (1.0 + x);
                      	}
                      	return tmp;
                      }
                      
                      def code(x, y):
                      	t_0 = (x * ((x / y) + 1.0)) / (x + 1.0)
                      	tmp = 0
                      	if (t_0 <= -10000.0) or not (t_0 <= 2.0):
                      		tmp = (x - 1.0) / y
                      	else:
                      		tmp = x / (1.0 + x)
                      	return tmp
                      
                      function code(x, y)
                      	t_0 = Float64(Float64(x * Float64(Float64(x / y) + 1.0)) / Float64(x + 1.0))
                      	tmp = 0.0
                      	if ((t_0 <= -10000.0) || !(t_0 <= 2.0))
                      		tmp = Float64(Float64(x - 1.0) / y);
                      	else
                      		tmp = Float64(x / Float64(1.0 + x));
                      	end
                      	return tmp
                      end
                      
                      function tmp_2 = code(x, y)
                      	t_0 = (x * ((x / y) + 1.0)) / (x + 1.0);
                      	tmp = 0.0;
                      	if ((t_0 <= -10000.0) || ~((t_0 <= 2.0)))
                      		tmp = (x - 1.0) / y;
                      	else
                      		tmp = x / (1.0 + x);
                      	end
                      	tmp_2 = tmp;
                      end
                      
                      code[x_, y_] := Block[{t$95$0 = N[(N[(x * N[(N[(x / y), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision] / N[(x + 1.0), $MachinePrecision]), $MachinePrecision]}, If[Or[LessEqual[t$95$0, -10000.0], N[Not[LessEqual[t$95$0, 2.0]], $MachinePrecision]], N[(N[(x - 1.0), $MachinePrecision] / y), $MachinePrecision], N[(x / N[(1.0 + x), $MachinePrecision]), $MachinePrecision]]]
                      
                      \begin{array}{l}
                      
                      \\
                      \begin{array}{l}
                      t_0 := \frac{x \cdot \left(\frac{x}{y} + 1\right)}{x + 1}\\
                      \mathbf{if}\;t\_0 \leq -10000 \lor \neg \left(t\_0 \leq 2\right):\\
                      \;\;\;\;\frac{x - 1}{y}\\
                      
                      \mathbf{else}:\\
                      \;\;\;\;\frac{x}{1 + x}\\
                      
                      
                      \end{array}
                      \end{array}
                      
                      Derivation
                      1. Split input into 2 regimes
                      2. if (/.f64 (*.f64 x (+.f64 (/.f64 x y) #s(literal 1 binary64))) (+.f64 x #s(literal 1 binary64))) < -1e4 or 2 < (/.f64 (*.f64 x (+.f64 (/.f64 x y) #s(literal 1 binary64))) (+.f64 x #s(literal 1 binary64)))

                        1. Initial program 65.9%

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

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

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

                            \[\leadsto x \cdot \color{blue}{\left(\left(\frac{1}{y} - \frac{1}{x \cdot y}\right) + \frac{1}{x}\right)} \]
                          3. distribute-lft-inN/A

                            \[\leadsto \color{blue}{x \cdot \left(\frac{1}{y} - \frac{1}{x \cdot y}\right) + x \cdot \frac{1}{x}} \]
                          4. sub-negN/A

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

                            \[\leadsto \color{blue}{\left(x \cdot \frac{1}{y} + x \cdot \left(\mathsf{neg}\left(\frac{1}{x \cdot y}\right)\right)\right)} + x \cdot \frac{1}{x} \]
                          6. distribute-rgt-neg-outN/A

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

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

                            \[\leadsto \left(x \cdot \frac{1}{y} + \left(\mathsf{neg}\left(\color{blue}{\frac{x \cdot \frac{1}{x}}{y}}\right)\right)\right) + x \cdot \frac{1}{x} \]
                          9. rgt-mult-inverseN/A

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

                            \[\leadsto \left(x \cdot \frac{1}{y} + \color{blue}{-1 \cdot \frac{1}{y}}\right) + x \cdot \frac{1}{x} \]
                          11. distribute-rgt-outN/A

                            \[\leadsto \color{blue}{\frac{1}{y} \cdot \left(x + -1\right)} + x \cdot \frac{1}{x} \]
                          12. rgt-mult-inverseN/A

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

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

                            \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{1}{y}}, x + -1, 1\right) \]
                          15. lower-+.f6488.6

                            \[\leadsto \mathsf{fma}\left(\frac{1}{y}, \color{blue}{x + -1}, 1\right) \]
                        5. Applied rewrites88.6%

                          \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{1}{y}, x + -1, 1\right)} \]
                        6. Taylor expanded in y around 0

                          \[\leadsto \frac{x - 1}{\color{blue}{y}} \]
                        7. Step-by-step derivation
                          1. Applied rewrites86.7%

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

                          if -1e4 < (/.f64 (*.f64 x (+.f64 (/.f64 x y) #s(literal 1 binary64))) (+.f64 x #s(literal 1 binary64))) < 2

                          1. Initial program 99.9%

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

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

                              \[\leadsto \color{blue}{\frac{x}{1 + x}} \]
                            2. lower-+.f6488.8

                              \[\leadsto \frac{x}{\color{blue}{1 + x}} \]
                          5. Applied rewrites88.8%

                            \[\leadsto \color{blue}{\frac{x}{1 + x}} \]
                        8. Recombined 2 regimes into one program.
                        9. Final simplification87.9%

                          \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{x \cdot \left(\frac{x}{y} + 1\right)}{x + 1} \leq -10000 \lor \neg \left(\frac{x \cdot \left(\frac{x}{y} + 1\right)}{x + 1} \leq 2\right):\\ \;\;\;\;\frac{x - 1}{y}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{1 + x}\\ \end{array} \]
                        10. Add Preprocessing

                        Alternative 6: 54.6% accurate, 0.7× speedup?

                        \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\frac{x \cdot \left(\frac{x}{y} + 1\right)}{x + 1} \leq 5 \cdot 10^{-7}:\\ \;\;\;\;\mathsf{fma}\left(-x, x, x\right)\\ \mathbf{else}:\\ \;\;\;\;1\\ \end{array} \end{array} \]
                        (FPCore (x y)
                         :precision binary64
                         (if (<= (/ (* x (+ (/ x y) 1.0)) (+ x 1.0)) 5e-7) (fma (- x) x x) 1.0))
                        double code(double x, double y) {
                        	double tmp;
                        	if (((x * ((x / y) + 1.0)) / (x + 1.0)) <= 5e-7) {
                        		tmp = fma(-x, x, x);
                        	} else {
                        		tmp = 1.0;
                        	}
                        	return tmp;
                        }
                        
                        function code(x, y)
                        	tmp = 0.0
                        	if (Float64(Float64(x * Float64(Float64(x / y) + 1.0)) / Float64(x + 1.0)) <= 5e-7)
                        		tmp = fma(Float64(-x), x, x);
                        	else
                        		tmp = 1.0;
                        	end
                        	return tmp
                        end
                        
                        code[x_, y_] := If[LessEqual[N[(N[(x * N[(N[(x / y), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision] / N[(x + 1.0), $MachinePrecision]), $MachinePrecision], 5e-7], N[((-x) * x + x), $MachinePrecision], 1.0]
                        
                        \begin{array}{l}
                        
                        \\
                        \begin{array}{l}
                        \mathbf{if}\;\frac{x \cdot \left(\frac{x}{y} + 1\right)}{x + 1} \leq 5 \cdot 10^{-7}:\\
                        \;\;\;\;\mathsf{fma}\left(-x, x, x\right)\\
                        
                        \mathbf{else}:\\
                        \;\;\;\;1\\
                        
                        
                        \end{array}
                        \end{array}
                        
                        Derivation
                        1. Split input into 2 regimes
                        2. if (/.f64 (*.f64 x (+.f64 (/.f64 x y) #s(literal 1 binary64))) (+.f64 x #s(literal 1 binary64))) < 4.99999999999999977e-7

                          1. Initial program 89.0%

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

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

                              \[\leadsto \color{blue}{\frac{x}{1 + x}} \]
                            2. lower-+.f6458.3

                              \[\leadsto \frac{x}{\color{blue}{1 + x}} \]
                          5. Applied rewrites58.3%

                            \[\leadsto \color{blue}{\frac{x}{1 + x}} \]
                          6. Taylor expanded in x around 0

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

                              \[\leadsto \mathsf{fma}\left(-x, \color{blue}{x}, x\right) \]

                            if 4.99999999999999977e-7 < (/.f64 (*.f64 x (+.f64 (/.f64 x y) #s(literal 1 binary64))) (+.f64 x #s(literal 1 binary64)))

                            1. Initial program 78.6%

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

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

                                \[\leadsto \color{blue}{\frac{x}{1 + x}} \]
                              2. lower-+.f6439.8

                                \[\leadsto \frac{x}{\color{blue}{1 + x}} \]
                            5. Applied rewrites39.8%

                              \[\leadsto \color{blue}{\frac{x}{1 + x}} \]
                            6. Taylor expanded in x around 0

                              \[\leadsto x \cdot \color{blue}{\left(1 + -1 \cdot x\right)} \]
                            7. Step-by-step derivation
                              1. Applied rewrites0.9%

                                \[\leadsto \mathsf{fma}\left(-x, \color{blue}{x}, x\right) \]
                              2. Taylor expanded in x around inf

                                \[\leadsto 1 \]
                              3. Step-by-step derivation
                                1. Applied rewrites37.4%

                                  \[\leadsto 1 \]
                              4. Recombined 2 regimes into one program.
                              5. Add Preprocessing

                              Alternative 7: 99.9% accurate, 0.9× speedup?

                              \[\begin{array}{l} \\ \frac{x}{\frac{1 + x}{1 + \frac{x}{y}}} \end{array} \]
                              (FPCore (x y) :precision binary64 (/ x (/ (+ 1.0 x) (+ 1.0 (/ x y)))))
                              double code(double x, double y) {
                              	return x / ((1.0 + x) / (1.0 + (x / y)));
                              }
                              
                              real(8) function code(x, y)
                                  real(8), intent (in) :: x
                                  real(8), intent (in) :: y
                                  code = x / ((1.0d0 + x) / (1.0d0 + (x / y)))
                              end function
                              
                              public static double code(double x, double y) {
                              	return x / ((1.0 + x) / (1.0 + (x / y)));
                              }
                              
                              def code(x, y):
                              	return x / ((1.0 + x) / (1.0 + (x / y)))
                              
                              function code(x, y)
                              	return Float64(x / Float64(Float64(1.0 + x) / Float64(1.0 + Float64(x / y))))
                              end
                              
                              function tmp = code(x, y)
                              	tmp = x / ((1.0 + x) / (1.0 + (x / y)));
                              end
                              
                              code[x_, y_] := N[(x / N[(N[(1.0 + x), $MachinePrecision] / N[(1.0 + N[(x / y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
                              
                              \begin{array}{l}
                              
                              \\
                              \frac{x}{\frac{1 + x}{1 + \frac{x}{y}}}
                              \end{array}
                              
                              Derivation
                              1. Initial program 84.9%

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

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

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

                                  \[\leadsto \color{blue}{x \cdot \frac{\frac{x}{y} + 1}{x + 1}} \]
                                4. clear-numN/A

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

                                  \[\leadsto \color{blue}{\frac{x}{\frac{x + 1}{\frac{x}{y} + 1}}} \]
                                6. lower-/.f64N/A

                                  \[\leadsto \color{blue}{\frac{x}{\frac{x + 1}{\frac{x}{y} + 1}}} \]
                                7. lower-/.f6499.9

                                  \[\leadsto \frac{x}{\color{blue}{\frac{x + 1}{\frac{x}{y} + 1}}} \]
                                8. lift-+.f64N/A

                                  \[\leadsto \frac{x}{\frac{\color{blue}{x + 1}}{\frac{x}{y} + 1}} \]
                                9. +-commutativeN/A

                                  \[\leadsto \frac{x}{\frac{\color{blue}{1 + x}}{\frac{x}{y} + 1}} \]
                                10. lower-+.f6499.9

                                  \[\leadsto \frac{x}{\frac{\color{blue}{1 + x}}{\frac{x}{y} + 1}} \]
                                11. lift-+.f64N/A

                                  \[\leadsto \frac{x}{\frac{1 + x}{\color{blue}{\frac{x}{y} + 1}}} \]
                                12. +-commutativeN/A

                                  \[\leadsto \frac{x}{\frac{1 + x}{\color{blue}{1 + \frac{x}{y}}}} \]
                                13. lower-+.f6499.9

                                  \[\leadsto \frac{x}{\frac{1 + x}{\color{blue}{1 + \frac{x}{y}}}} \]
                              4. Applied rewrites99.9%

                                \[\leadsto \color{blue}{\frac{x}{\frac{1 + x}{1 + \frac{x}{y}}}} \]
                              5. Add Preprocessing

                              Alternative 8: 85.6% accurate, 0.9× speedup?

                              \[\begin{array}{l} \\ \begin{array}{l} t_0 := \frac{x - 1}{y} + 1\\ \mathbf{if}\;x \leq -6400000000:\\ \;\;\;\;t\_0\\ \mathbf{elif}\;x \leq 1.65 \cdot 10^{-59}:\\ \;\;\;\;\frac{x}{1 + x}\\ \mathbf{elif}\;x \leq 2.7 \cdot 10^{-7}:\\ \;\;\;\;\frac{x}{y} \cdot x\\ \mathbf{else}:\\ \;\;\;\;t\_0\\ \end{array} \end{array} \]
                              (FPCore (x y)
                               :precision binary64
                               (let* ((t_0 (+ (/ (- x 1.0) y) 1.0)))
                                 (if (<= x -6400000000.0)
                                   t_0
                                   (if (<= x 1.65e-59)
                                     (/ x (+ 1.0 x))
                                     (if (<= x 2.7e-7) (* (/ x y) x) t_0)))))
                              double code(double x, double y) {
                              	double t_0 = ((x - 1.0) / y) + 1.0;
                              	double tmp;
                              	if (x <= -6400000000.0) {
                              		tmp = t_0;
                              	} else if (x <= 1.65e-59) {
                              		tmp = x / (1.0 + x);
                              	} else if (x <= 2.7e-7) {
                              		tmp = (x / y) * x;
                              	} else {
                              		tmp = t_0;
                              	}
                              	return tmp;
                              }
                              
                              real(8) function code(x, y)
                                  real(8), intent (in) :: x
                                  real(8), intent (in) :: y
                                  real(8) :: t_0
                                  real(8) :: tmp
                                  t_0 = ((x - 1.0d0) / y) + 1.0d0
                                  if (x <= (-6400000000.0d0)) then
                                      tmp = t_0
                                  else if (x <= 1.65d-59) then
                                      tmp = x / (1.0d0 + x)
                                  else if (x <= 2.7d-7) then
                                      tmp = (x / y) * x
                                  else
                                      tmp = t_0
                                  end if
                                  code = tmp
                              end function
                              
                              public static double code(double x, double y) {
                              	double t_0 = ((x - 1.0) / y) + 1.0;
                              	double tmp;
                              	if (x <= -6400000000.0) {
                              		tmp = t_0;
                              	} else if (x <= 1.65e-59) {
                              		tmp = x / (1.0 + x);
                              	} else if (x <= 2.7e-7) {
                              		tmp = (x / y) * x;
                              	} else {
                              		tmp = t_0;
                              	}
                              	return tmp;
                              }
                              
                              def code(x, y):
                              	t_0 = ((x - 1.0) / y) + 1.0
                              	tmp = 0
                              	if x <= -6400000000.0:
                              		tmp = t_0
                              	elif x <= 1.65e-59:
                              		tmp = x / (1.0 + x)
                              	elif x <= 2.7e-7:
                              		tmp = (x / y) * x
                              	else:
                              		tmp = t_0
                              	return tmp
                              
                              function code(x, y)
                              	t_0 = Float64(Float64(Float64(x - 1.0) / y) + 1.0)
                              	tmp = 0.0
                              	if (x <= -6400000000.0)
                              		tmp = t_0;
                              	elseif (x <= 1.65e-59)
                              		tmp = Float64(x / Float64(1.0 + x));
                              	elseif (x <= 2.7e-7)
                              		tmp = Float64(Float64(x / y) * x);
                              	else
                              		tmp = t_0;
                              	end
                              	return tmp
                              end
                              
                              function tmp_2 = code(x, y)
                              	t_0 = ((x - 1.0) / y) + 1.0;
                              	tmp = 0.0;
                              	if (x <= -6400000000.0)
                              		tmp = t_0;
                              	elseif (x <= 1.65e-59)
                              		tmp = x / (1.0 + x);
                              	elseif (x <= 2.7e-7)
                              		tmp = (x / y) * x;
                              	else
                              		tmp = t_0;
                              	end
                              	tmp_2 = tmp;
                              end
                              
                              code[x_, y_] := Block[{t$95$0 = N[(N[(N[(x - 1.0), $MachinePrecision] / y), $MachinePrecision] + 1.0), $MachinePrecision]}, If[LessEqual[x, -6400000000.0], t$95$0, If[LessEqual[x, 1.65e-59], N[(x / N[(1.0 + x), $MachinePrecision]), $MachinePrecision], If[LessEqual[x, 2.7e-7], N[(N[(x / y), $MachinePrecision] * x), $MachinePrecision], t$95$0]]]]
                              
                              \begin{array}{l}
                              
                              \\
                              \begin{array}{l}
                              t_0 := \frac{x - 1}{y} + 1\\
                              \mathbf{if}\;x \leq -6400000000:\\
                              \;\;\;\;t\_0\\
                              
                              \mathbf{elif}\;x \leq 1.65 \cdot 10^{-59}:\\
                              \;\;\;\;\frac{x}{1 + x}\\
                              
                              \mathbf{elif}\;x \leq 2.7 \cdot 10^{-7}:\\
                              \;\;\;\;\frac{x}{y} \cdot x\\
                              
                              \mathbf{else}:\\
                              \;\;\;\;t\_0\\
                              
                              
                              \end{array}
                              \end{array}
                              
                              Derivation
                              1. Split input into 3 regimes
                              2. if x < -6.4e9 or 2.70000000000000009e-7 < x

                                1. Initial program 72.5%

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

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

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

                                    \[\leadsto x \cdot \color{blue}{\left(\left(\frac{1}{y} - \frac{1}{x \cdot y}\right) + \frac{1}{x}\right)} \]
                                  3. distribute-lft-inN/A

                                    \[\leadsto \color{blue}{x \cdot \left(\frac{1}{y} - \frac{1}{x \cdot y}\right) + x \cdot \frac{1}{x}} \]
                                  4. sub-negN/A

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

                                    \[\leadsto \color{blue}{\left(x \cdot \frac{1}{y} + x \cdot \left(\mathsf{neg}\left(\frac{1}{x \cdot y}\right)\right)\right)} + x \cdot \frac{1}{x} \]
                                  6. distribute-rgt-neg-outN/A

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

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

                                    \[\leadsto \left(x \cdot \frac{1}{y} + \left(\mathsf{neg}\left(\color{blue}{\frac{x \cdot \frac{1}{x}}{y}}\right)\right)\right) + x \cdot \frac{1}{x} \]
                                  9. rgt-mult-inverseN/A

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

                                    \[\leadsto \left(x \cdot \frac{1}{y} + \color{blue}{-1 \cdot \frac{1}{y}}\right) + x \cdot \frac{1}{x} \]
                                  11. distribute-rgt-outN/A

                                    \[\leadsto \color{blue}{\frac{1}{y} \cdot \left(x + -1\right)} + x \cdot \frac{1}{x} \]
                                  12. rgt-mult-inverseN/A

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

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

                                    \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{1}{y}}, x + -1, 1\right) \]
                                  15. lower-+.f6496.9

                                    \[\leadsto \mathsf{fma}\left(\frac{1}{y}, \color{blue}{x + -1}, 1\right) \]
                                5. Applied rewrites96.9%

                                  \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{1}{y}, x + -1, 1\right)} \]
                                6. Step-by-step derivation
                                  1. Applied rewrites97.1%

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

                                  if -6.4e9 < x < 1.64999999999999991e-59

                                  1. Initial program 99.9%

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

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

                                      \[\leadsto \color{blue}{\frac{x}{1 + x}} \]
                                    2. lower-+.f6485.0

                                      \[\leadsto \frac{x}{\color{blue}{1 + x}} \]
                                  5. Applied rewrites85.0%

                                    \[\leadsto \color{blue}{\frac{x}{1 + x}} \]

                                  if 1.64999999999999991e-59 < x < 2.70000000000000009e-7

                                  1. Initial program 99.5%

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

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

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

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

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

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

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

                                      \[\leadsto \frac{x}{y \cdot \color{blue}{\left(x + 1\right)}} \cdot x \]
                                    7. distribute-lft-inN/A

                                      \[\leadsto \frac{x}{\color{blue}{y \cdot x + y \cdot 1}} \cdot x \]
                                    8. *-rgt-identityN/A

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

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

                                    \[\leadsto \color{blue}{\frac{x}{\mathsf{fma}\left(y, x, y\right)} \cdot x} \]
                                  6. Taylor expanded in x around 0

                                    \[\leadsto \frac{x}{y} \cdot x \]
                                  7. Step-by-step derivation
                                    1. Applied rewrites91.7%

                                      \[\leadsto \frac{x}{y} \cdot x \]
                                  8. Recombined 3 regimes into one program.
                                  9. Add Preprocessing

                                  Alternative 9: 98.3% accurate, 1.0× speedup?

                                  \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x \leq -1 \lor \neg \left(x \leq 1\right):\\ \;\;\;\;\frac{x - 1}{y} + 1\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(\frac{x}{y} - x, x, x\right)\\ \end{array} \end{array} \]
                                  (FPCore (x y)
                                   :precision binary64
                                   (if (or (<= x -1.0) (not (<= x 1.0)))
                                     (+ (/ (- x 1.0) y) 1.0)
                                     (fma (- (/ x y) x) x x)))
                                  double code(double x, double y) {
                                  	double tmp;
                                  	if ((x <= -1.0) || !(x <= 1.0)) {
                                  		tmp = ((x - 1.0) / y) + 1.0;
                                  	} else {
                                  		tmp = fma(((x / y) - x), x, x);
                                  	}
                                  	return tmp;
                                  }
                                  
                                  function code(x, y)
                                  	tmp = 0.0
                                  	if ((x <= -1.0) || !(x <= 1.0))
                                  		tmp = Float64(Float64(Float64(x - 1.0) / y) + 1.0);
                                  	else
                                  		tmp = fma(Float64(Float64(x / y) - x), x, x);
                                  	end
                                  	return tmp
                                  end
                                  
                                  code[x_, y_] := If[Or[LessEqual[x, -1.0], N[Not[LessEqual[x, 1.0]], $MachinePrecision]], N[(N[(N[(x - 1.0), $MachinePrecision] / y), $MachinePrecision] + 1.0), $MachinePrecision], N[(N[(N[(x / y), $MachinePrecision] - x), $MachinePrecision] * x + x), $MachinePrecision]]
                                  
                                  \begin{array}{l}
                                  
                                  \\
                                  \begin{array}{l}
                                  \mathbf{if}\;x \leq -1 \lor \neg \left(x \leq 1\right):\\
                                  \;\;\;\;\frac{x - 1}{y} + 1\\
                                  
                                  \mathbf{else}:\\
                                  \;\;\;\;\mathsf{fma}\left(\frac{x}{y} - x, x, x\right)\\
                                  
                                  
                                  \end{array}
                                  \end{array}
                                  
                                  Derivation
                                  1. Split input into 2 regimes
                                  2. if x < -1 or 1 < x

                                    1. Initial program 72.7%

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

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

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

                                        \[\leadsto x \cdot \color{blue}{\left(\left(\frac{1}{y} - \frac{1}{x \cdot y}\right) + \frac{1}{x}\right)} \]
                                      3. distribute-lft-inN/A

                                        \[\leadsto \color{blue}{x \cdot \left(\frac{1}{y} - \frac{1}{x \cdot y}\right) + x \cdot \frac{1}{x}} \]
                                      4. sub-negN/A

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

                                        \[\leadsto \color{blue}{\left(x \cdot \frac{1}{y} + x \cdot \left(\mathsf{neg}\left(\frac{1}{x \cdot y}\right)\right)\right)} + x \cdot \frac{1}{x} \]
                                      6. distribute-rgt-neg-outN/A

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

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

                                        \[\leadsto \left(x \cdot \frac{1}{y} + \left(\mathsf{neg}\left(\color{blue}{\frac{x \cdot \frac{1}{x}}{y}}\right)\right)\right) + x \cdot \frac{1}{x} \]
                                      9. rgt-mult-inverseN/A

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

                                        \[\leadsto \left(x \cdot \frac{1}{y} + \color{blue}{-1 \cdot \frac{1}{y}}\right) + x \cdot \frac{1}{x} \]
                                      11. distribute-rgt-outN/A

                                        \[\leadsto \color{blue}{\frac{1}{y} \cdot \left(x + -1\right)} + x \cdot \frac{1}{x} \]
                                      12. rgt-mult-inverseN/A

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

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

                                        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{1}{y}}, x + -1, 1\right) \]
                                      15. lower-+.f6496.9

                                        \[\leadsto \mathsf{fma}\left(\frac{1}{y}, \color{blue}{x + -1}, 1\right) \]
                                    5. Applied rewrites96.9%

                                      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{1}{y}, x + -1, 1\right)} \]
                                    6. Step-by-step derivation
                                      1. Applied rewrites97.1%

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

                                      if -1 < x < 1

                                      1. Initial program 99.9%

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

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

                                          \[\leadsto x \cdot \color{blue}{\left(x \cdot \left(\frac{1}{y} - 1\right) + 1\right)} \]
                                        2. distribute-rgt-inN/A

                                          \[\leadsto \color{blue}{\left(x \cdot \left(\frac{1}{y} - 1\right)\right) \cdot x + 1 \cdot x} \]
                                        3. *-lft-identityN/A

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

                                          \[\leadsto \color{blue}{\mathsf{fma}\left(x \cdot \left(\frac{1}{y} - 1\right), x, x\right)} \]
                                        5. distribute-lft-out--N/A

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

                                          \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{x \cdot 1}{y}} - x \cdot 1, x, x\right) \]
                                        7. *-rgt-identityN/A

                                          \[\leadsto \mathsf{fma}\left(\frac{\color{blue}{x}}{y} - x \cdot 1, x, x\right) \]
                                        8. *-rgt-identityN/A

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

                                          \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{x}{y} - x}, x, x\right) \]
                                        10. lower-/.f6498.8

                                          \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{x}{y}} - x, x, x\right) \]
                                      5. Applied rewrites98.8%

                                        \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{x}{y} - x, x, x\right)} \]
                                    7. Recombined 2 regimes into one program.
                                    8. Final simplification97.9%

                                      \[\leadsto \begin{array}{l} \mathbf{if}\;x \leq -1 \lor \neg \left(x \leq 1\right):\\ \;\;\;\;\frac{x - 1}{y} + 1\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(\frac{x}{y} - x, x, x\right)\\ \end{array} \]
                                    9. Add Preprocessing

                                    Alternative 10: 14.6% accurate, 34.0× speedup?

                                    \[\begin{array}{l} \\ 1 \end{array} \]
                                    (FPCore (x y) :precision binary64 1.0)
                                    double code(double x, double y) {
                                    	return 1.0;
                                    }
                                    
                                    real(8) function code(x, y)
                                        real(8), intent (in) :: x
                                        real(8), intent (in) :: y
                                        code = 1.0d0
                                    end function
                                    
                                    public static double code(double x, double y) {
                                    	return 1.0;
                                    }
                                    
                                    def code(x, y):
                                    	return 1.0
                                    
                                    function code(x, y)
                                    	return 1.0
                                    end
                                    
                                    function tmp = code(x, y)
                                    	tmp = 1.0;
                                    end
                                    
                                    code[x_, y_] := 1.0
                                    
                                    \begin{array}{l}
                                    
                                    \\
                                    1
                                    \end{array}
                                    
                                    Derivation
                                    1. Initial program 84.9%

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

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

                                        \[\leadsto \color{blue}{\frac{x}{1 + x}} \]
                                      2. lower-+.f6451.0

                                        \[\leadsto \frac{x}{\color{blue}{1 + x}} \]
                                    5. Applied rewrites51.0%

                                      \[\leadsto \color{blue}{\frac{x}{1 + x}} \]
                                    6. Taylor expanded in x around 0

                                      \[\leadsto x \cdot \color{blue}{\left(1 + -1 \cdot x\right)} \]
                                    7. Step-by-step derivation
                                      1. Applied rewrites40.0%

                                        \[\leadsto \mathsf{fma}\left(-x, \color{blue}{x}, x\right) \]
                                      2. Taylor expanded in x around inf

                                        \[\leadsto 1 \]
                                      3. Step-by-step derivation
                                        1. Applied rewrites16.5%

                                          \[\leadsto 1 \]
                                        2. Add Preprocessing

                                        Developer Target 1: 99.8% accurate, 0.8× speedup?

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

                                        Reproduce

                                        ?
                                        herbie shell --seed 2024313 
                                        (FPCore (x y)
                                          :name "Codec.Picture.Types:toneMapping from JuicyPixels-3.2.6.1"
                                          :precision binary64
                                        
                                          :alt
                                          (! :herbie-platform default (* (/ x 1) (/ (+ (/ x y) 1) (+ x 1))))
                                        
                                          (/ (* x (+ (/ x y) 1.0)) (+ x 1.0)))