System.Random.MWC.Distributions:truncatedExp from mwc-random-0.13.3.2

Percentage Accurate: 61.3% → 99.1%
Time: 19.7s
Alternatives: 8
Speedup: 226.0×

Specification

?
\[\begin{array}{l} \\ x - \frac{\log \left(\left(1 - y\right) + y \cdot e^{z}\right)}{t} \end{array} \]
(FPCore (x y z t)
 :precision binary64
 (- x (/ (log (+ (- 1.0 y) (* y (exp z)))) t)))
double code(double x, double y, double z, double t) {
	return x - (log(((1.0 - y) + (y * exp(z)))) / t);
}
real(8) function code(x, y, z, t)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8), intent (in) :: t
    code = x - (log(((1.0d0 - y) + (y * exp(z)))) / t)
end function
public static double code(double x, double y, double z, double t) {
	return x - (Math.log(((1.0 - y) + (y * Math.exp(z)))) / t);
}
def code(x, y, z, t):
	return x - (math.log(((1.0 - y) + (y * math.exp(z)))) / t)
function code(x, y, z, t)
	return Float64(x - Float64(log(Float64(Float64(1.0 - y) + Float64(y * exp(z)))) / t))
end
function tmp = code(x, y, z, t)
	tmp = x - (log(((1.0 - y) + (y * exp(z)))) / t);
end
code[x_, y_, z_, t_] := N[(x - N[(N[Log[N[(N[(1.0 - y), $MachinePrecision] + N[(y * N[Exp[z], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision] / t), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
x - \frac{\log \left(\left(1 - y\right) + y \cdot e^{z}\right)}{t}
\end{array}

Sampling outcomes in binary64 precision:

Local Percentage Accuracy vs ?

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

Accuracy vs Speed?

Herbie found 8 alternatives:

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

Initial Program: 61.3% accurate, 1.0× speedup?

\[\begin{array}{l} \\ x - \frac{\log \left(\left(1 - y\right) + y \cdot e^{z}\right)}{t} \end{array} \]
(FPCore (x y z t)
 :precision binary64
 (- x (/ (log (+ (- 1.0 y) (* y (exp z)))) t)))
double code(double x, double y, double z, double t) {
	return x - (log(((1.0 - y) + (y * exp(z)))) / t);
}
real(8) function code(x, y, z, t)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8), intent (in) :: t
    code = x - (log(((1.0d0 - y) + (y * exp(z)))) / t)
end function
public static double code(double x, double y, double z, double t) {
	return x - (Math.log(((1.0 - y) + (y * Math.exp(z)))) / t);
}
def code(x, y, z, t):
	return x - (math.log(((1.0 - y) + (y * math.exp(z)))) / t)
function code(x, y, z, t)
	return Float64(x - Float64(log(Float64(Float64(1.0 - y) + Float64(y * exp(z)))) / t))
end
function tmp = code(x, y, z, t)
	tmp = x - (log(((1.0 - y) + (y * exp(z)))) / t);
end
code[x_, y_, z_, t_] := N[(x - N[(N[Log[N[(N[(1.0 - y), $MachinePrecision] + N[(y * N[Exp[z], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision] / t), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
x - \frac{\log \left(\left(1 - y\right) + y \cdot e^{z}\right)}{t}
\end{array}

Alternative 1: 99.1% accurate, 0.5× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_1 := \left(1 - y\right) + y \cdot e^{z}\\ \mathbf{if}\;t\_1 \leq 0:\\ \;\;\;\;x - \frac{\mathsf{log1p}\left(y \cdot z\right)}{t}\\ \mathbf{elif}\;t\_1 \leq 1.0000005:\\ \;\;\;\;\mathsf{fma}\left(y, 0 - \frac{\mathsf{expm1}\left(z\right)}{t}, x\right)\\ \mathbf{else}:\\ \;\;\;\;x - \frac{\log \left(y \cdot \mathsf{expm1}\left(z\right)\right)}{t}\\ \end{array} \end{array} \]
(FPCore (x y z t)
 :precision binary64
 (let* ((t_1 (+ (- 1.0 y) (* y (exp z)))))
   (if (<= t_1 0.0)
     (- x (/ (log1p (* y z)) t))
     (if (<= t_1 1.0000005)
       (fma y (- 0.0 (/ (expm1 z) t)) x)
       (- x (/ (log (* y (expm1 z))) t))))))
double code(double x, double y, double z, double t) {
	double t_1 = (1.0 - y) + (y * exp(z));
	double tmp;
	if (t_1 <= 0.0) {
		tmp = x - (log1p((y * z)) / t);
	} else if (t_1 <= 1.0000005) {
		tmp = fma(y, (0.0 - (expm1(z) / t)), x);
	} else {
		tmp = x - (log((y * expm1(z))) / t);
	}
	return tmp;
}
function code(x, y, z, t)
	t_1 = Float64(Float64(1.0 - y) + Float64(y * exp(z)))
	tmp = 0.0
	if (t_1 <= 0.0)
		tmp = Float64(x - Float64(log1p(Float64(y * z)) / t));
	elseif (t_1 <= 1.0000005)
		tmp = fma(y, Float64(0.0 - Float64(expm1(z) / t)), x);
	else
		tmp = Float64(x - Float64(log(Float64(y * expm1(z))) / t));
	end
	return tmp
end
code[x_, y_, z_, t_] := Block[{t$95$1 = N[(N[(1.0 - y), $MachinePrecision] + N[(y * N[Exp[z], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$1, 0.0], N[(x - N[(N[Log[1 + N[(y * z), $MachinePrecision]], $MachinePrecision] / t), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$1, 1.0000005], N[(y * N[(0.0 - N[(N[(Exp[z] - 1), $MachinePrecision] / t), $MachinePrecision]), $MachinePrecision] + x), $MachinePrecision], N[(x - N[(N[Log[N[(y * N[(Exp[z] - 1), $MachinePrecision]), $MachinePrecision]], $MachinePrecision] / t), $MachinePrecision]), $MachinePrecision]]]]
\begin{array}{l}

\\
\begin{array}{l}
t_1 := \left(1 - y\right) + y \cdot e^{z}\\
\mathbf{if}\;t\_1 \leq 0:\\
\;\;\;\;x - \frac{\mathsf{log1p}\left(y \cdot z\right)}{t}\\

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

\mathbf{else}:\\
\;\;\;\;x - \frac{\log \left(y \cdot \mathsf{expm1}\left(z\right)\right)}{t}\\


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if (+.f64 (-.f64 #s(literal 1 binary64) y) (*.f64 y (exp.f64 z))) < 0.0

    1. Initial program 1.8%

      \[x - \frac{\log \left(\left(1 - y\right) + y \cdot e^{z}\right)}{t} \]
    2. Add Preprocessing
    3. Step-by-step derivation
      1. sub-negN/A

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

        \[\leadsto x - \frac{\log \color{blue}{\left(1 + \left(\left(\mathsf{neg}\left(y\right)\right) + y \cdot e^{z}\right)\right)}}{t} \]
      3. accelerator-lowering-log1p.f64N/A

        \[\leadsto x - \frac{\color{blue}{\mathsf{log1p}\left(\left(\mathsf{neg}\left(y\right)\right) + y \cdot e^{z}\right)}}{t} \]
      4. neg-mul-1N/A

        \[\leadsto x - \frac{\mathsf{log1p}\left(\color{blue}{-1 \cdot y} + y \cdot e^{z}\right)}{t} \]
      5. *-commutativeN/A

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

        \[\leadsto x - \frac{\mathsf{log1p}\left(\color{blue}{y \cdot \left(-1 + e^{z}\right)}\right)}{t} \]
      7. *-lowering-*.f64N/A

        \[\leadsto x - \frac{\mathsf{log1p}\left(\color{blue}{y \cdot \left(-1 + e^{z}\right)}\right)}{t} \]
      8. +-lowering-+.f64N/A

        \[\leadsto x - \frac{\mathsf{log1p}\left(y \cdot \color{blue}{\left(-1 + e^{z}\right)}\right)}{t} \]
      9. exp-lowering-exp.f6459.9

        \[\leadsto x - \frac{\mathsf{log1p}\left(y \cdot \left(-1 + \color{blue}{e^{z}}\right)\right)}{t} \]
    4. Applied egg-rr59.9%

      \[\leadsto x - \frac{\color{blue}{\mathsf{log1p}\left(y \cdot \left(-1 + e^{z}\right)\right)}}{t} \]
    5. Taylor expanded in z around 0

      \[\leadsto x - \frac{\mathsf{log1p}\left(y \cdot \color{blue}{z}\right)}{t} \]
    6. Step-by-step derivation
      1. Simplified99.9%

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

      if 0.0 < (+.f64 (-.f64 #s(literal 1 binary64) y) (*.f64 y (exp.f64 z))) < 1.0000005000000001

      1. Initial program 79.6%

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

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

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

          \[\leadsto x - \frac{\color{blue}{y \cdot \left(e^{z} - 1\right)}}{t} \]
        3. accelerator-lowering-expm1.f6498.1

          \[\leadsto x - \frac{y \cdot \color{blue}{\mathsf{expm1}\left(z\right)}}{t} \]
      5. Simplified98.1%

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

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

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

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

          \[\leadsto \color{blue}{y \cdot \left(\mathsf{neg}\left(\frac{e^{z} - 1}{t}\right)\right)} + x \]
        5. accelerator-lowering-fma.f64N/A

          \[\leadsto \color{blue}{\mathsf{fma}\left(y, \mathsf{neg}\left(\frac{e^{z} - 1}{t}\right), x\right)} \]
        6. neg-lowering-neg.f64N/A

          \[\leadsto \mathsf{fma}\left(y, \color{blue}{\mathsf{neg}\left(\frac{e^{z} - 1}{t}\right)}, x\right) \]
        7. /-lowering-/.f64N/A

          \[\leadsto \mathsf{fma}\left(y, \mathsf{neg}\left(\color{blue}{\frac{e^{z} - 1}{t}}\right), x\right) \]
        8. accelerator-lowering-expm1.f6499.8

          \[\leadsto \mathsf{fma}\left(y, -\frac{\color{blue}{\mathsf{expm1}\left(z\right)}}{t}, x\right) \]
      7. Applied egg-rr99.8%

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

      if 1.0000005000000001 < (+.f64 (-.f64 #s(literal 1 binary64) y) (*.f64 y (exp.f64 z)))

      1. Initial program 88.6%

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

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

          \[\leadsto x - \frac{\log \color{blue}{\left(y \cdot \left(e^{z} - 1\right)\right)}}{t} \]
        2. accelerator-lowering-expm1.f6489.8

          \[\leadsto x - \frac{\log \left(y \cdot \color{blue}{\mathsf{expm1}\left(z\right)}\right)}{t} \]
      5. Simplified89.8%

        \[\leadsto x - \frac{\log \color{blue}{\left(y \cdot \mathsf{expm1}\left(z\right)\right)}}{t} \]
    7. Recombined 3 regimes into one program.
    8. Final simplification98.7%

      \[\leadsto \begin{array}{l} \mathbf{if}\;\left(1 - y\right) + y \cdot e^{z} \leq 0:\\ \;\;\;\;x - \frac{\mathsf{log1p}\left(y \cdot z\right)}{t}\\ \mathbf{elif}\;\left(1 - y\right) + y \cdot e^{z} \leq 1.0000005:\\ \;\;\;\;\mathsf{fma}\left(y, 0 - \frac{\mathsf{expm1}\left(z\right)}{t}, x\right)\\ \mathbf{else}:\\ \;\;\;\;x - \frac{\log \left(y \cdot \mathsf{expm1}\left(z\right)\right)}{t}\\ \end{array} \]
    9. Add Preprocessing

    Alternative 2: 93.9% accurate, 0.6× speedup?

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

      1. Initial program 1.8%

        \[x - \frac{\log \left(\left(1 - y\right) + y \cdot e^{z}\right)}{t} \]
      2. Add Preprocessing
      3. Step-by-step derivation
        1. sub-negN/A

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

          \[\leadsto x - \frac{\log \color{blue}{\left(1 + \left(\left(\mathsf{neg}\left(y\right)\right) + y \cdot e^{z}\right)\right)}}{t} \]
        3. accelerator-lowering-log1p.f64N/A

          \[\leadsto x - \frac{\color{blue}{\mathsf{log1p}\left(\left(\mathsf{neg}\left(y\right)\right) + y \cdot e^{z}\right)}}{t} \]
        4. neg-mul-1N/A

          \[\leadsto x - \frac{\mathsf{log1p}\left(\color{blue}{-1 \cdot y} + y \cdot e^{z}\right)}{t} \]
        5. *-commutativeN/A

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

          \[\leadsto x - \frac{\mathsf{log1p}\left(\color{blue}{y \cdot \left(-1 + e^{z}\right)}\right)}{t} \]
        7. *-lowering-*.f64N/A

          \[\leadsto x - \frac{\mathsf{log1p}\left(\color{blue}{y \cdot \left(-1 + e^{z}\right)}\right)}{t} \]
        8. +-lowering-+.f64N/A

          \[\leadsto x - \frac{\mathsf{log1p}\left(y \cdot \color{blue}{\left(-1 + e^{z}\right)}\right)}{t} \]
        9. exp-lowering-exp.f6459.9

          \[\leadsto x - \frac{\mathsf{log1p}\left(y \cdot \left(-1 + \color{blue}{e^{z}}\right)\right)}{t} \]
      4. Applied egg-rr59.9%

        \[\leadsto x - \frac{\color{blue}{\mathsf{log1p}\left(y \cdot \left(-1 + e^{z}\right)\right)}}{t} \]
      5. Taylor expanded in z around 0

        \[\leadsto x - \frac{\mathsf{log1p}\left(y \cdot \color{blue}{z}\right)}{t} \]
      6. Step-by-step derivation
        1. Simplified99.9%

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

        if 0.0 < (+.f64 (-.f64 #s(literal 1 binary64) y) (*.f64 y (exp.f64 z))) < 4.99999999999999957e28

        1. Initial program 80.1%

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

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

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

            \[\leadsto x - \frac{\color{blue}{y \cdot \left(e^{z} - 1\right)}}{t} \]
          3. accelerator-lowering-expm1.f6497.1

            \[\leadsto x - \frac{y \cdot \color{blue}{\mathsf{expm1}\left(z\right)}}{t} \]
        5. Simplified97.1%

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

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

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

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

            \[\leadsto \color{blue}{y \cdot \left(\mathsf{neg}\left(\frac{e^{z} - 1}{t}\right)\right)} + x \]
          5. accelerator-lowering-fma.f64N/A

            \[\leadsto \color{blue}{\mathsf{fma}\left(y, \mathsf{neg}\left(\frac{e^{z} - 1}{t}\right), x\right)} \]
          6. neg-lowering-neg.f64N/A

            \[\leadsto \mathsf{fma}\left(y, \color{blue}{\mathsf{neg}\left(\frac{e^{z} - 1}{t}\right)}, x\right) \]
          7. /-lowering-/.f64N/A

            \[\leadsto \mathsf{fma}\left(y, \mathsf{neg}\left(\color{blue}{\frac{e^{z} - 1}{t}}\right), x\right) \]
          8. accelerator-lowering-expm1.f6498.7

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

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

        if 4.99999999999999957e28 < (+.f64 (-.f64 #s(literal 1 binary64) y) (*.f64 y (exp.f64 z)))

        1. Initial program 86.7%

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

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

            \[\leadsto \color{blue}{x} \]
        5. Recombined 3 regimes into one program.
        6. Final simplification94.0%

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

        Alternative 3: 98.4% accurate, 1.0× speedup?

        \[\begin{array}{l} \\ x - \frac{\mathsf{log1p}\left(y \cdot \mathsf{expm1}\left(z\right)\right)}{t} \end{array} \]
        (FPCore (x y z t) :precision binary64 (- x (/ (log1p (* y (expm1 z))) t)))
        double code(double x, double y, double z, double t) {
        	return x - (log1p((y * expm1(z))) / t);
        }
        
        public static double code(double x, double y, double z, double t) {
        	return x - (Math.log1p((y * Math.expm1(z))) / t);
        }
        
        def code(x, y, z, t):
        	return x - (math.log1p((y * math.expm1(z))) / t)
        
        function code(x, y, z, t)
        	return Float64(x - Float64(log1p(Float64(y * expm1(z))) / t))
        end
        
        code[x_, y_, z_, t_] := N[(x - N[(N[Log[1 + N[(y * N[(Exp[z] - 1), $MachinePrecision]), $MachinePrecision]], $MachinePrecision] / t), $MachinePrecision]), $MachinePrecision]
        
        \begin{array}{l}
        
        \\
        x - \frac{\mathsf{log1p}\left(y \cdot \mathsf{expm1}\left(z\right)\right)}{t}
        \end{array}
        
        Derivation
        1. Initial program 61.7%

          \[x - \frac{\log \left(\left(1 - y\right) + y \cdot e^{z}\right)}{t} \]
        2. Add Preprocessing
        3. Step-by-step derivation
          1. sub-negN/A

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

            \[\leadsto x - \frac{\log \color{blue}{\left(1 + \left(\left(\mathsf{neg}\left(y\right)\right) + y \cdot e^{z}\right)\right)}}{t} \]
          3. accelerator-lowering-log1p.f64N/A

            \[\leadsto x - \frac{\color{blue}{\mathsf{log1p}\left(\left(\mathsf{neg}\left(y\right)\right) + y \cdot e^{z}\right)}}{t} \]
          4. neg-mul-1N/A

            \[\leadsto x - \frac{\mathsf{log1p}\left(\color{blue}{-1 \cdot y} + y \cdot e^{z}\right)}{t} \]
          5. *-commutativeN/A

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

            \[\leadsto x - \frac{\mathsf{log1p}\left(\color{blue}{y \cdot \left(-1 + e^{z}\right)}\right)}{t} \]
          7. *-lowering-*.f64N/A

            \[\leadsto x - \frac{\mathsf{log1p}\left(\color{blue}{y \cdot \left(-1 + e^{z}\right)}\right)}{t} \]
          8. +-lowering-+.f64N/A

            \[\leadsto x - \frac{\mathsf{log1p}\left(y \cdot \color{blue}{\left(-1 + e^{z}\right)}\right)}{t} \]
          9. exp-lowering-exp.f6482.7

            \[\leadsto x - \frac{\mathsf{log1p}\left(y \cdot \left(-1 + \color{blue}{e^{z}}\right)\right)}{t} \]
        4. Applied egg-rr82.7%

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

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

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

            \[\leadsto x - \frac{\mathsf{log1p}\left(y \cdot \color{blue}{\left(e^{z} - 1\right)}\right)}{t} \]
          4. accelerator-lowering-expm1.f6497.7

            \[\leadsto x - \frac{\mathsf{log1p}\left(y \cdot \color{blue}{\mathsf{expm1}\left(z\right)}\right)}{t} \]
        6. Applied egg-rr97.7%

          \[\leadsto x - \frac{\mathsf{log1p}\left(y \cdot \color{blue}{\mathsf{expm1}\left(z\right)}\right)}{t} \]
        7. Add Preprocessing

        Alternative 4: 91.4% accurate, 1.8× speedup?

        \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;z \leq -1050000:\\ \;\;\;\;x - \frac{y \cdot \mathsf{expm1}\left(z\right)}{t}\\ \mathbf{else}:\\ \;\;\;\;x - \frac{\mathsf{log1p}\left(y \cdot z\right)}{t}\\ \end{array} \end{array} \]
        (FPCore (x y z t)
         :precision binary64
         (if (<= z -1050000.0)
           (- x (/ (* y (expm1 z)) t))
           (- x (/ (log1p (* y z)) t))))
        double code(double x, double y, double z, double t) {
        	double tmp;
        	if (z <= -1050000.0) {
        		tmp = x - ((y * expm1(z)) / t);
        	} else {
        		tmp = x - (log1p((y * z)) / t);
        	}
        	return tmp;
        }
        
        public static double code(double x, double y, double z, double t) {
        	double tmp;
        	if (z <= -1050000.0) {
        		tmp = x - ((y * Math.expm1(z)) / t);
        	} else {
        		tmp = x - (Math.log1p((y * z)) / t);
        	}
        	return tmp;
        }
        
        def code(x, y, z, t):
        	tmp = 0
        	if z <= -1050000.0:
        		tmp = x - ((y * math.expm1(z)) / t)
        	else:
        		tmp = x - (math.log1p((y * z)) / t)
        	return tmp
        
        function code(x, y, z, t)
        	tmp = 0.0
        	if (z <= -1050000.0)
        		tmp = Float64(x - Float64(Float64(y * expm1(z)) / t));
        	else
        		tmp = Float64(x - Float64(log1p(Float64(y * z)) / t));
        	end
        	return tmp
        end
        
        code[x_, y_, z_, t_] := If[LessEqual[z, -1050000.0], N[(x - N[(N[(y * N[(Exp[z] - 1), $MachinePrecision]), $MachinePrecision] / t), $MachinePrecision]), $MachinePrecision], N[(x - N[(N[Log[1 + N[(y * z), $MachinePrecision]], $MachinePrecision] / t), $MachinePrecision]), $MachinePrecision]]
        
        \begin{array}{l}
        
        \\
        \begin{array}{l}
        \mathbf{if}\;z \leq -1050000:\\
        \;\;\;\;x - \frac{y \cdot \mathsf{expm1}\left(z\right)}{t}\\
        
        \mathbf{else}:\\
        \;\;\;\;x - \frac{\mathsf{log1p}\left(y \cdot z\right)}{t}\\
        
        
        \end{array}
        \end{array}
        
        Derivation
        1. Split input into 2 regimes
        2. if z < -1.05e6

          1. Initial program 77.4%

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

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

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

              \[\leadsto x - \frac{\color{blue}{y \cdot \left(e^{z} - 1\right)}}{t} \]
            3. accelerator-lowering-expm1.f6480.8

              \[\leadsto x - \frac{y \cdot \color{blue}{\mathsf{expm1}\left(z\right)}}{t} \]
          5. Simplified80.8%

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

          if -1.05e6 < z

          1. Initial program 55.5%

            \[x - \frac{\log \left(\left(1 - y\right) + y \cdot e^{z}\right)}{t} \]
          2. Add Preprocessing
          3. Step-by-step derivation
            1. sub-negN/A

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

              \[\leadsto x - \frac{\log \color{blue}{\left(1 + \left(\left(\mathsf{neg}\left(y\right)\right) + y \cdot e^{z}\right)\right)}}{t} \]
            3. accelerator-lowering-log1p.f64N/A

              \[\leadsto x - \frac{\color{blue}{\mathsf{log1p}\left(\left(\mathsf{neg}\left(y\right)\right) + y \cdot e^{z}\right)}}{t} \]
            4. neg-mul-1N/A

              \[\leadsto x - \frac{\mathsf{log1p}\left(\color{blue}{-1 \cdot y} + y \cdot e^{z}\right)}{t} \]
            5. *-commutativeN/A

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

              \[\leadsto x - \frac{\mathsf{log1p}\left(\color{blue}{y \cdot \left(-1 + e^{z}\right)}\right)}{t} \]
            7. *-lowering-*.f64N/A

              \[\leadsto x - \frac{\mathsf{log1p}\left(\color{blue}{y \cdot \left(-1 + e^{z}\right)}\right)}{t} \]
            8. +-lowering-+.f64N/A

              \[\leadsto x - \frac{\mathsf{log1p}\left(y \cdot \color{blue}{\left(-1 + e^{z}\right)}\right)}{t} \]
            9. exp-lowering-exp.f6475.9

              \[\leadsto x - \frac{\mathsf{log1p}\left(y \cdot \left(-1 + \color{blue}{e^{z}}\right)\right)}{t} \]
          4. Applied egg-rr75.9%

            \[\leadsto x - \frac{\color{blue}{\mathsf{log1p}\left(y \cdot \left(-1 + e^{z}\right)\right)}}{t} \]
          5. Taylor expanded in z around 0

            \[\leadsto x - \frac{\mathsf{log1p}\left(y \cdot \color{blue}{z}\right)}{t} \]
          6. Step-by-step derivation
            1. Simplified96.5%

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

          Alternative 5: 87.6% accurate, 1.8× speedup?

          \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;z \leq -9 \cdot 10^{+58}:\\ \;\;\;\;x\\ \mathbf{else}:\\ \;\;\;\;x - \frac{\mathsf{log1p}\left(y \cdot z\right)}{t}\\ \end{array} \end{array} \]
          (FPCore (x y z t)
           :precision binary64
           (if (<= z -9e+58) x (- x (/ (log1p (* y z)) t))))
          double code(double x, double y, double z, double t) {
          	double tmp;
          	if (z <= -9e+58) {
          		tmp = x;
          	} else {
          		tmp = x - (log1p((y * z)) / t);
          	}
          	return tmp;
          }
          
          public static double code(double x, double y, double z, double t) {
          	double tmp;
          	if (z <= -9e+58) {
          		tmp = x;
          	} else {
          		tmp = x - (Math.log1p((y * z)) / t);
          	}
          	return tmp;
          }
          
          def code(x, y, z, t):
          	tmp = 0
          	if z <= -9e+58:
          		tmp = x
          	else:
          		tmp = x - (math.log1p((y * z)) / t)
          	return tmp
          
          function code(x, y, z, t)
          	tmp = 0.0
          	if (z <= -9e+58)
          		tmp = x;
          	else
          		tmp = Float64(x - Float64(log1p(Float64(y * z)) / t));
          	end
          	return tmp
          end
          
          code[x_, y_, z_, t_] := If[LessEqual[z, -9e+58], x, N[(x - N[(N[Log[1 + N[(y * z), $MachinePrecision]], $MachinePrecision] / t), $MachinePrecision]), $MachinePrecision]]
          
          \begin{array}{l}
          
          \\
          \begin{array}{l}
          \mathbf{if}\;z \leq -9 \cdot 10^{+58}:\\
          \;\;\;\;x\\
          
          \mathbf{else}:\\
          \;\;\;\;x - \frac{\mathsf{log1p}\left(y \cdot z\right)}{t}\\
          
          
          \end{array}
          \end{array}
          
          Derivation
          1. Split input into 2 regimes
          2. if z < -8.9999999999999996e58

            1. Initial program 76.4%

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

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

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

              if -8.9999999999999996e58 < z

              1. Initial program 56.7%

                \[x - \frac{\log \left(\left(1 - y\right) + y \cdot e^{z}\right)}{t} \]
              2. Add Preprocessing
              3. Step-by-step derivation
                1. sub-negN/A

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

                  \[\leadsto x - \frac{\log \color{blue}{\left(1 + \left(\left(\mathsf{neg}\left(y\right)\right) + y \cdot e^{z}\right)\right)}}{t} \]
                3. accelerator-lowering-log1p.f64N/A

                  \[\leadsto x - \frac{\color{blue}{\mathsf{log1p}\left(\left(\mathsf{neg}\left(y\right)\right) + y \cdot e^{z}\right)}}{t} \]
                4. neg-mul-1N/A

                  \[\leadsto x - \frac{\mathsf{log1p}\left(\color{blue}{-1 \cdot y} + y \cdot e^{z}\right)}{t} \]
                5. *-commutativeN/A

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

                  \[\leadsto x - \frac{\mathsf{log1p}\left(\color{blue}{y \cdot \left(-1 + e^{z}\right)}\right)}{t} \]
                7. *-lowering-*.f64N/A

                  \[\leadsto x - \frac{\mathsf{log1p}\left(\color{blue}{y \cdot \left(-1 + e^{z}\right)}\right)}{t} \]
                8. +-lowering-+.f64N/A

                  \[\leadsto x - \frac{\mathsf{log1p}\left(y \cdot \color{blue}{\left(-1 + e^{z}\right)}\right)}{t} \]
                9. exp-lowering-exp.f6476.8

                  \[\leadsto x - \frac{\mathsf{log1p}\left(y \cdot \left(-1 + \color{blue}{e^{z}}\right)\right)}{t} \]
              4. Applied egg-rr76.8%

                \[\leadsto x - \frac{\color{blue}{\mathsf{log1p}\left(y \cdot \left(-1 + e^{z}\right)\right)}}{t} \]
              5. Taylor expanded in z around 0

                \[\leadsto x - \frac{\mathsf{log1p}\left(y \cdot \color{blue}{z}\right)}{t} \]
              6. Step-by-step derivation
                1. Simplified95.4%

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

              Alternative 6: 82.5% accurate, 6.5× speedup?

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

                1. Initial program 79.6%

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

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

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

                  if -2.1e-7 < z

                  1. Initial program 53.5%

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

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

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

                      \[\leadsto x - \frac{\color{blue}{y \cdot \left(e^{z} - 1\right)}}{t} \]
                    3. accelerator-lowering-expm1.f6486.0

                      \[\leadsto x - \frac{y \cdot \color{blue}{\mathsf{expm1}\left(z\right)}}{t} \]
                  5. Simplified86.0%

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

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

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

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

                      \[\leadsto \color{blue}{y \cdot \left(\mathsf{neg}\left(\frac{e^{z} - 1}{t}\right)\right)} + x \]
                    5. accelerator-lowering-fma.f64N/A

                      \[\leadsto \color{blue}{\mathsf{fma}\left(y, \mathsf{neg}\left(\frac{e^{z} - 1}{t}\right), x\right)} \]
                    6. neg-lowering-neg.f64N/A

                      \[\leadsto \mathsf{fma}\left(y, \color{blue}{\mathsf{neg}\left(\frac{e^{z} - 1}{t}\right)}, x\right) \]
                    7. /-lowering-/.f64N/A

                      \[\leadsto \mathsf{fma}\left(y, \mathsf{neg}\left(\color{blue}{\frac{e^{z} - 1}{t}}\right), x\right) \]
                    8. accelerator-lowering-expm1.f6488.1

                      \[\leadsto \mathsf{fma}\left(y, -\frac{\color{blue}{\mathsf{expm1}\left(z\right)}}{t}, x\right) \]
                  7. Applied egg-rr88.1%

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

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

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

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

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

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

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

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

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

                      \[\leadsto \mathsf{fma}\left(y, \frac{z \cdot \left(z \cdot \frac{-1}{2} + \color{blue}{-1}\right)}{t}, x\right) \]
                    9. accelerator-lowering-fma.f6488.6

                      \[\leadsto \mathsf{fma}\left(y, \frac{z \cdot \color{blue}{\mathsf{fma}\left(z, -0.5, -1\right)}}{t}, x\right) \]
                  10. Simplified88.6%

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

                Alternative 7: 82.4% accurate, 8.7× speedup?

                \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;z \leq -2.2 \cdot 10^{-8}:\\ \;\;\;\;x\\ \mathbf{else}:\\ \;\;\;\;x - y \cdot \frac{z}{t}\\ \end{array} \end{array} \]
                (FPCore (x y z t)
                 :precision binary64
                 (if (<= z -2.2e-8) x (- x (* y (/ z t)))))
                double code(double x, double y, double z, double t) {
                	double tmp;
                	if (z <= -2.2e-8) {
                		tmp = x;
                	} else {
                		tmp = x - (y * (z / t));
                	}
                	return tmp;
                }
                
                real(8) function code(x, y, z, t)
                    real(8), intent (in) :: x
                    real(8), intent (in) :: y
                    real(8), intent (in) :: z
                    real(8), intent (in) :: t
                    real(8) :: tmp
                    if (z <= (-2.2d-8)) then
                        tmp = x
                    else
                        tmp = x - (y * (z / t))
                    end if
                    code = tmp
                end function
                
                public static double code(double x, double y, double z, double t) {
                	double tmp;
                	if (z <= -2.2e-8) {
                		tmp = x;
                	} else {
                		tmp = x - (y * (z / t));
                	}
                	return tmp;
                }
                
                def code(x, y, z, t):
                	tmp = 0
                	if z <= -2.2e-8:
                		tmp = x
                	else:
                		tmp = x - (y * (z / t))
                	return tmp
                
                function code(x, y, z, t)
                	tmp = 0.0
                	if (z <= -2.2e-8)
                		tmp = x;
                	else
                		tmp = Float64(x - Float64(y * Float64(z / t)));
                	end
                	return tmp
                end
                
                function tmp_2 = code(x, y, z, t)
                	tmp = 0.0;
                	if (z <= -2.2e-8)
                		tmp = x;
                	else
                		tmp = x - (y * (z / t));
                	end
                	tmp_2 = tmp;
                end
                
                code[x_, y_, z_, t_] := If[LessEqual[z, -2.2e-8], x, N[(x - N[(y * N[(z / t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
                
                \begin{array}{l}
                
                \\
                \begin{array}{l}
                \mathbf{if}\;z \leq -2.2 \cdot 10^{-8}:\\
                \;\;\;\;x\\
                
                \mathbf{else}:\\
                \;\;\;\;x - y \cdot \frac{z}{t}\\
                
                
                \end{array}
                \end{array}
                
                Derivation
                1. Split input into 2 regimes
                2. if z < -2.1999999999999998e-8

                  1. Initial program 79.6%

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

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

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

                    if -2.1999999999999998e-8 < z

                    1. Initial program 53.5%

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

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

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

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

                        \[\leadsto x - \frac{\color{blue}{z \cdot y}}{t} \]
                      4. associate-*r/N/A

                        \[\leadsto x - \color{blue}{z \cdot \frac{y}{t}} \]
                      5. --lowering--.f64N/A

                        \[\leadsto \color{blue}{x - z \cdot \frac{y}{t}} \]
                      6. associate-*r/N/A

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

                        \[\leadsto x - \frac{\color{blue}{y \cdot z}}{t} \]
                      8. /-lowering-/.f64N/A

                        \[\leadsto x - \color{blue}{\frac{y \cdot z}{t}} \]
                      9. *-lowering-*.f6486.5

                        \[\leadsto x - \frac{\color{blue}{y \cdot z}}{t} \]
                    5. Simplified86.5%

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

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

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

                        \[\leadsto x - \color{blue}{\frac{z}{t} \cdot y} \]
                      4. /-lowering-/.f6488.6

                        \[\leadsto x - \color{blue}{\frac{z}{t}} \cdot y \]
                    7. Applied egg-rr88.6%

                      \[\leadsto x - \color{blue}{\frac{z}{t} \cdot y} \]
                  5. Recombined 2 regimes into one program.
                  6. Final simplification80.8%

                    \[\leadsto \begin{array}{l} \mathbf{if}\;z \leq -2.2 \cdot 10^{-8}:\\ \;\;\;\;x\\ \mathbf{else}:\\ \;\;\;\;x - y \cdot \frac{z}{t}\\ \end{array} \]
                  7. Add Preprocessing

                  Alternative 8: 71.6% accurate, 226.0× speedup?

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

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

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

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

                    Developer Target 1: 74.7% accurate, 1.8× speedup?

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

                    Reproduce

                    ?
                    herbie shell --seed 2024195 
                    (FPCore (x y z t)
                      :name "System.Random.MWC.Distributions:truncatedExp from mwc-random-0.13.3.2"
                      :precision binary64
                    
                      :alt
                      (! :herbie-platform default (if (< z -288746230882079470000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) (- (- x (/ (/ (- 1/2) (* y t)) (* z z))) (* (/ (- 1/2) (* y t)) (/ (/ 2 z) (* z z)))) (- x (/ (log (+ 1 (* z y))) t))))
                    
                      (- x (/ (log (+ (- 1.0 y) (* y (exp z)))) t)))