Data.Metrics.Snapshot:quantile from metrics-0.3.0.2

Percentage Accurate: 100.0% → 100.0%
Time: 6.7s
Alternatives: 10
Speedup: 1.2×

Specification

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

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

Sampling outcomes in binary64 precision:

Local Percentage Accuracy vs ?

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

Accuracy vs Speed?

Herbie found 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: 100.0% accurate, 1.0× speedup?

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

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

Alternative 1: 100.0% accurate, 1.2× speedup?

\[\begin{array}{l} \\ \mathsf{fma}\left(y - z, t - x, x\right) \end{array} \]
(FPCore (x y z t) :precision binary64 (fma (- y z) (- t x) x))
double code(double x, double y, double z, double t) {
	return fma((y - z), (t - x), x);
}
function code(x, y, z, t)
	return fma(Float64(y - z), Float64(t - x), x)
end
code[x_, y_, z_, t_] := N[(N[(y - z), $MachinePrecision] * N[(t - x), $MachinePrecision] + x), $MachinePrecision]
\begin{array}{l}

\\
\mathsf{fma}\left(y - z, t - x, x\right)
\end{array}
Derivation
  1. Initial program 100.0%

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

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

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

      \[\leadsto \color{blue}{\left(y - z\right) \cdot \left(t - x\right)} + x \]
    4. lower-fma.f64100.0

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

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

Alternative 2: 69.3% accurate, 0.6× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_1 := \left(t - x\right) \cdot y\\ \mathbf{if}\;y \leq -1.9 \cdot 10^{-10}:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;y \leq -1.55 \cdot 10^{-263}:\\ \;\;\;\;\mathsf{fma}\left(x, z, x\right)\\ \mathbf{elif}\;y \leq 1.9 \cdot 10^{+27}:\\ \;\;\;\;\left(x - t\right) \cdot z\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \end{array} \]
(FPCore (x y z t)
 :precision binary64
 (let* ((t_1 (* (- t x) y)))
   (if (<= y -1.9e-10)
     t_1
     (if (<= y -1.55e-263)
       (fma x z x)
       (if (<= y 1.9e+27) (* (- x t) z) t_1)))))
double code(double x, double y, double z, double t) {
	double t_1 = (t - x) * y;
	double tmp;
	if (y <= -1.9e-10) {
		tmp = t_1;
	} else if (y <= -1.55e-263) {
		tmp = fma(x, z, x);
	} else if (y <= 1.9e+27) {
		tmp = (x - t) * z;
	} else {
		tmp = t_1;
	}
	return tmp;
}
function code(x, y, z, t)
	t_1 = Float64(Float64(t - x) * y)
	tmp = 0.0
	if (y <= -1.9e-10)
		tmp = t_1;
	elseif (y <= -1.55e-263)
		tmp = fma(x, z, x);
	elseif (y <= 1.9e+27)
		tmp = Float64(Float64(x - t) * z);
	else
		tmp = t_1;
	end
	return tmp
end
code[x_, y_, z_, t_] := Block[{t$95$1 = N[(N[(t - x), $MachinePrecision] * y), $MachinePrecision]}, If[LessEqual[y, -1.9e-10], t$95$1, If[LessEqual[y, -1.55e-263], N[(x * z + x), $MachinePrecision], If[LessEqual[y, 1.9e+27], N[(N[(x - t), $MachinePrecision] * z), $MachinePrecision], t$95$1]]]]
\begin{array}{l}

\\
\begin{array}{l}
t_1 := \left(t - x\right) \cdot y\\
\mathbf{if}\;y \leq -1.9 \cdot 10^{-10}:\\
\;\;\;\;t\_1\\

\mathbf{elif}\;y \leq -1.55 \cdot 10^{-263}:\\
\;\;\;\;\mathsf{fma}\left(x, z, x\right)\\

\mathbf{elif}\;y \leq 1.9 \cdot 10^{+27}:\\
\;\;\;\;\left(x - t\right) \cdot z\\

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


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if y < -1.8999999999999999e-10 or 1.90000000000000011e27 < y

    1. Initial program 99.9%

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

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

        \[\leadsto \color{blue}{\left(t - x\right) \cdot y} \]
      2. lower-*.f64N/A

        \[\leadsto \color{blue}{\left(t - x\right) \cdot y} \]
      3. lower--.f6487.6

        \[\leadsto \color{blue}{\left(t - x\right)} \cdot y \]
    5. Applied rewrites87.6%

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

    if -1.8999999999999999e-10 < y < -1.55000000000000002e-263

    1. Initial program 100.0%

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

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

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

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

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

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

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

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

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

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

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

        \[\leadsto \mathsf{fma}\left(\color{blue}{z} - y, x, x\right) \]
      11. lower--.f6468.3

        \[\leadsto \mathsf{fma}\left(\color{blue}{z - y}, x, x\right) \]
    5. Applied rewrites68.3%

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

      \[\leadsto x + \color{blue}{x \cdot z} \]
    7. Step-by-step derivation
      1. Applied rewrites68.3%

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

      if -1.55000000000000002e-263 < y < 1.90000000000000011e27

      1. Initial program 100.0%

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

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

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

          \[\leadsto \color{blue}{\left(y - z\right) \cdot \left(t - x\right)} + x \]
        4. lower-fma.f64100.0

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

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

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

          \[\leadsto -1 \cdot \color{blue}{\left(\left(t - x\right) \cdot z\right)} \]
        2. associate-*r*N/A

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

          \[\leadsto \color{blue}{\left(\mathsf{neg}\left(\left(t - x\right)\right)\right)} \cdot z \]
        4. neg-sub0N/A

          \[\leadsto \color{blue}{\left(0 - \left(t - x\right)\right)} \cdot z \]
        5. associate-+l-N/A

          \[\leadsto \color{blue}{\left(\left(0 - t\right) + x\right)} \cdot z \]
        6. neg-sub0N/A

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

          \[\leadsto \left(\color{blue}{-1 \cdot t} + x\right) \cdot z \]
        8. +-commutativeN/A

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

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

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

          \[\leadsto \color{blue}{\left(x - t\right)} \cdot z \]
        12. lower--.f6474.3

          \[\leadsto \color{blue}{\left(x - t\right)} \cdot z \]
      7. Applied rewrites74.3%

        \[\leadsto \color{blue}{\left(x - t\right) \cdot z} \]
    8. Recombined 3 regimes into one program.
    9. Add Preprocessing

    Alternative 3: 66.9% accurate, 0.6× speedup?

    \[\begin{array}{l} \\ \begin{array}{l} t_1 := \left(t - x\right) \cdot y\\ \mathbf{if}\;y \leq -1.9 \cdot 10^{-10}:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;y \leq 1.08 \cdot 10^{-181}:\\ \;\;\;\;\mathsf{fma}\left(x, z, x\right)\\ \mathbf{elif}\;y \leq 2.1 \cdot 10^{+30}:\\ \;\;\;\;t \cdot \left(y - z\right)\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \end{array} \]
    (FPCore (x y z t)
     :precision binary64
     (let* ((t_1 (* (- t x) y)))
       (if (<= y -1.9e-10)
         t_1
         (if (<= y 1.08e-181) (fma x z x) (if (<= y 2.1e+30) (* t (- y z)) t_1)))))
    double code(double x, double y, double z, double t) {
    	double t_1 = (t - x) * y;
    	double tmp;
    	if (y <= -1.9e-10) {
    		tmp = t_1;
    	} else if (y <= 1.08e-181) {
    		tmp = fma(x, z, x);
    	} else if (y <= 2.1e+30) {
    		tmp = t * (y - z);
    	} else {
    		tmp = t_1;
    	}
    	return tmp;
    }
    
    function code(x, y, z, t)
    	t_1 = Float64(Float64(t - x) * y)
    	tmp = 0.0
    	if (y <= -1.9e-10)
    		tmp = t_1;
    	elseif (y <= 1.08e-181)
    		tmp = fma(x, z, x);
    	elseif (y <= 2.1e+30)
    		tmp = Float64(t * Float64(y - z));
    	else
    		tmp = t_1;
    	end
    	return tmp
    end
    
    code[x_, y_, z_, t_] := Block[{t$95$1 = N[(N[(t - x), $MachinePrecision] * y), $MachinePrecision]}, If[LessEqual[y, -1.9e-10], t$95$1, If[LessEqual[y, 1.08e-181], N[(x * z + x), $MachinePrecision], If[LessEqual[y, 2.1e+30], N[(t * N[(y - z), $MachinePrecision]), $MachinePrecision], t$95$1]]]]
    
    \begin{array}{l}
    
    \\
    \begin{array}{l}
    t_1 := \left(t - x\right) \cdot y\\
    \mathbf{if}\;y \leq -1.9 \cdot 10^{-10}:\\
    \;\;\;\;t\_1\\
    
    \mathbf{elif}\;y \leq 1.08 \cdot 10^{-181}:\\
    \;\;\;\;\mathsf{fma}\left(x, z, x\right)\\
    
    \mathbf{elif}\;y \leq 2.1 \cdot 10^{+30}:\\
    \;\;\;\;t \cdot \left(y - z\right)\\
    
    \mathbf{else}:\\
    \;\;\;\;t\_1\\
    
    
    \end{array}
    \end{array}
    
    Derivation
    1. Split input into 3 regimes
    2. if y < -1.8999999999999999e-10 or 2.1e30 < y

      1. Initial program 99.9%

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

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

          \[\leadsto \color{blue}{\left(t - x\right) \cdot y} \]
        2. lower-*.f64N/A

          \[\leadsto \color{blue}{\left(t - x\right) \cdot y} \]
        3. lower--.f6488.3

          \[\leadsto \color{blue}{\left(t - x\right)} \cdot y \]
      5. Applied rewrites88.3%

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

      if -1.8999999999999999e-10 < y < 1.08e-181

      1. Initial program 100.0%

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

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

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

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

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

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

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

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

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

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

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

          \[\leadsto \mathsf{fma}\left(\color{blue}{z} - y, x, x\right) \]
        11. lower--.f6463.5

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

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

        \[\leadsto x + \color{blue}{x \cdot z} \]
      7. Step-by-step derivation
        1. Applied rewrites63.5%

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

        if 1.08e-181 < y < 2.1e30

        1. Initial program 100.0%

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

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

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

            \[\leadsto \color{blue}{\left(y - z\right) \cdot t} \]
          3. lower--.f6461.5

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

          \[\leadsto \color{blue}{\left(y - z\right) \cdot t} \]
      8. Recombined 3 regimes into one program.
      9. Final simplification74.7%

        \[\leadsto \begin{array}{l} \mathbf{if}\;y \leq -1.9 \cdot 10^{-10}:\\ \;\;\;\;\left(t - x\right) \cdot y\\ \mathbf{elif}\;y \leq 1.08 \cdot 10^{-181}:\\ \;\;\;\;\mathsf{fma}\left(x, z, x\right)\\ \mathbf{elif}\;y \leq 2.1 \cdot 10^{+30}:\\ \;\;\;\;t \cdot \left(y - z\right)\\ \mathbf{else}:\\ \;\;\;\;\left(t - x\right) \cdot y\\ \end{array} \]
      10. Add Preprocessing

      Alternative 4: 64.7% accurate, 0.6× speedup?

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

        1. Initial program 99.9%

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

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

            \[\leadsto \color{blue}{\left(t - x\right) \cdot y} \]
          2. lower-*.f64N/A

            \[\leadsto \color{blue}{\left(t - x\right) \cdot y} \]
          3. lower--.f6487.0

            \[\leadsto \color{blue}{\left(t - x\right)} \cdot y \]
        5. Applied rewrites87.0%

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

        if -1.8999999999999999e-10 < y < 1.39999999999999993e-181

        1. Initial program 100.0%

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

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

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

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

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

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

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

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

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

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

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

            \[\leadsto \mathsf{fma}\left(\color{blue}{z} - y, x, x\right) \]
          11. lower--.f6463.5

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

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

          \[\leadsto x + \color{blue}{x \cdot z} \]
        7. Step-by-step derivation
          1. Applied rewrites63.5%

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

          if 1.39999999999999993e-181 < y < 8e17

          1. Initial program 100.0%

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

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

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

              \[\leadsto \color{blue}{\left(y - z\right) \cdot \left(t - x\right)} + x \]
            4. lower-fma.f64100.0

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

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

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

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

              \[\leadsto \color{blue}{\left(y - z\right) \cdot t} \]
            3. lower--.f6461.1

              \[\leadsto \color{blue}{\left(y - z\right)} \cdot t \]
          7. Applied rewrites61.1%

            \[\leadsto \color{blue}{\left(y - z\right) \cdot t} \]
          8. Taylor expanded in y around 0

            \[\leadsto \left(-1 \cdot z\right) \cdot t \]
          9. Step-by-step derivation
            1. Applied rewrites58.3%

              \[\leadsto \left(-z\right) \cdot t \]
          10. Recombined 3 regimes into one program.
          11. Add Preprocessing

          Alternative 5: 46.9% accurate, 0.6× speedup?

          \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;y \leq -1.9 \cdot 10^{-10}:\\ \;\;\;\;t \cdot y\\ \mathbf{elif}\;y \leq 1.4 \cdot 10^{-181}:\\ \;\;\;\;\mathsf{fma}\left(x, z, x\right)\\ \mathbf{elif}\;y \leq 1.45 \cdot 10^{+18}:\\ \;\;\;\;\left(-z\right) \cdot t\\ \mathbf{else}:\\ \;\;\;\;t \cdot y\\ \end{array} \end{array} \]
          (FPCore (x y z t)
           :precision binary64
           (if (<= y -1.9e-10)
             (* t y)
             (if (<= y 1.4e-181) (fma x z x) (if (<= y 1.45e+18) (* (- z) t) (* t y)))))
          double code(double x, double y, double z, double t) {
          	double tmp;
          	if (y <= -1.9e-10) {
          		tmp = t * y;
          	} else if (y <= 1.4e-181) {
          		tmp = fma(x, z, x);
          	} else if (y <= 1.45e+18) {
          		tmp = -z * t;
          	} else {
          		tmp = t * y;
          	}
          	return tmp;
          }
          
          function code(x, y, z, t)
          	tmp = 0.0
          	if (y <= -1.9e-10)
          		tmp = Float64(t * y);
          	elseif (y <= 1.4e-181)
          		tmp = fma(x, z, x);
          	elseif (y <= 1.45e+18)
          		tmp = Float64(Float64(-z) * t);
          	else
          		tmp = Float64(t * y);
          	end
          	return tmp
          end
          
          code[x_, y_, z_, t_] := If[LessEqual[y, -1.9e-10], N[(t * y), $MachinePrecision], If[LessEqual[y, 1.4e-181], N[(x * z + x), $MachinePrecision], If[LessEqual[y, 1.45e+18], N[((-z) * t), $MachinePrecision], N[(t * y), $MachinePrecision]]]]
          
          \begin{array}{l}
          
          \\
          \begin{array}{l}
          \mathbf{if}\;y \leq -1.9 \cdot 10^{-10}:\\
          \;\;\;\;t \cdot y\\
          
          \mathbf{elif}\;y \leq 1.4 \cdot 10^{-181}:\\
          \;\;\;\;\mathsf{fma}\left(x, z, x\right)\\
          
          \mathbf{elif}\;y \leq 1.45 \cdot 10^{+18}:\\
          \;\;\;\;\left(-z\right) \cdot t\\
          
          \mathbf{else}:\\
          \;\;\;\;t \cdot y\\
          
          
          \end{array}
          \end{array}
          
          Derivation
          1. Split input into 3 regimes
          2. if y < -1.8999999999999999e-10 or 1.45e18 < y

            1. Initial program 99.9%

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

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

                \[\leadsto \color{blue}{\left(t - x\right) \cdot y} \]
              2. lower-*.f64N/A

                \[\leadsto \color{blue}{\left(t - x\right) \cdot y} \]
              3. lower--.f6487.0

                \[\leadsto \color{blue}{\left(t - x\right)} \cdot y \]
            5. Applied rewrites87.0%

              \[\leadsto \color{blue}{\left(t - x\right) \cdot y} \]
            6. Taylor expanded in x around 0

              \[\leadsto t \cdot \color{blue}{y} \]
            7. Step-by-step derivation
              1. Applied rewrites54.0%

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

              if -1.8999999999999999e-10 < y < 1.39999999999999993e-181

              1. Initial program 100.0%

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

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

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

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

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

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

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

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

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

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

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

                  \[\leadsto \mathsf{fma}\left(\color{blue}{z} - y, x, x\right) \]
                11. lower--.f6463.5

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

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

                \[\leadsto x + \color{blue}{x \cdot z} \]
              7. Step-by-step derivation
                1. Applied rewrites63.5%

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

                if 1.39999999999999993e-181 < y < 1.45e18

                1. Initial program 100.0%

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

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

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

                    \[\leadsto \color{blue}{\left(y - z\right) \cdot \left(t - x\right)} + x \]
                  4. lower-fma.f64100.0

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

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

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

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

                    \[\leadsto \color{blue}{\left(y - z\right) \cdot t} \]
                  3. lower--.f6461.1

                    \[\leadsto \color{blue}{\left(y - z\right)} \cdot t \]
                7. Applied rewrites61.1%

                  \[\leadsto \color{blue}{\left(y - z\right) \cdot t} \]
                8. Taylor expanded in y around 0

                  \[\leadsto \left(-1 \cdot z\right) \cdot t \]
                9. Step-by-step derivation
                  1. Applied rewrites58.3%

                    \[\leadsto \left(-z\right) \cdot t \]
                10. Recombined 3 regimes into one program.
                11. Add Preprocessing

                Alternative 6: 84.0% accurate, 0.7× speedup?

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

                  1. Initial program 99.9%

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

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

                      \[\leadsto \color{blue}{\left(t - x\right) \cdot y} \]
                    2. lower-*.f64N/A

                      \[\leadsto \color{blue}{\left(t - x\right) \cdot y} \]
                    3. lower--.f6487.6

                      \[\leadsto \color{blue}{\left(t - x\right)} \cdot y \]
                  5. Applied rewrites87.6%

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

                  if -2.00000000000000007e-10 < y < 6.8000000000000005e26

                  1. Initial program 100.0%

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

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

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

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

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

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

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

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

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

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

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

                      \[\leadsto \mathsf{fma}\left(\color{blue}{x} - t, z, x\right) \]
                    11. lower--.f6492.5

                      \[\leadsto \mathsf{fma}\left(\color{blue}{x - t}, z, x\right) \]
                  5. Applied rewrites92.5%

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

                Alternative 7: 83.8% accurate, 0.7× speedup?

                \[\begin{array}{l} \\ \begin{array}{l} t_1 := \left(x - t\right) \cdot z\\ \mathbf{if}\;z \leq -9000:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;z \leq 7200000:\\ \;\;\;\;\mathsf{fma}\left(t - x, y, x\right)\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \end{array} \]
                (FPCore (x y z t)
                 :precision binary64
                 (let* ((t_1 (* (- x t) z)))
                   (if (<= z -9000.0) t_1 (if (<= z 7200000.0) (fma (- t x) y x) t_1))))
                double code(double x, double y, double z, double t) {
                	double t_1 = (x - t) * z;
                	double tmp;
                	if (z <= -9000.0) {
                		tmp = t_1;
                	} else if (z <= 7200000.0) {
                		tmp = fma((t - x), y, x);
                	} else {
                		tmp = t_1;
                	}
                	return tmp;
                }
                
                function code(x, y, z, t)
                	t_1 = Float64(Float64(x - t) * z)
                	tmp = 0.0
                	if (z <= -9000.0)
                		tmp = t_1;
                	elseif (z <= 7200000.0)
                		tmp = fma(Float64(t - x), y, x);
                	else
                		tmp = t_1;
                	end
                	return tmp
                end
                
                code[x_, y_, z_, t_] := Block[{t$95$1 = N[(N[(x - t), $MachinePrecision] * z), $MachinePrecision]}, If[LessEqual[z, -9000.0], t$95$1, If[LessEqual[z, 7200000.0], N[(N[(t - x), $MachinePrecision] * y + x), $MachinePrecision], t$95$1]]]
                
                \begin{array}{l}
                
                \\
                \begin{array}{l}
                t_1 := \left(x - t\right) \cdot z\\
                \mathbf{if}\;z \leq -9000:\\
                \;\;\;\;t\_1\\
                
                \mathbf{elif}\;z \leq 7200000:\\
                \;\;\;\;\mathsf{fma}\left(t - x, y, x\right)\\
                
                \mathbf{else}:\\
                \;\;\;\;t\_1\\
                
                
                \end{array}
                \end{array}
                
                Derivation
                1. Split input into 2 regimes
                2. if z < -9e3 or 7.2e6 < z

                  1. Initial program 100.0%

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

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

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

                      \[\leadsto \color{blue}{\left(y - z\right) \cdot \left(t - x\right)} + x \]
                    4. lower-fma.f64100.0

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

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

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

                      \[\leadsto -1 \cdot \color{blue}{\left(\left(t - x\right) \cdot z\right)} \]
                    2. associate-*r*N/A

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

                      \[\leadsto \color{blue}{\left(\mathsf{neg}\left(\left(t - x\right)\right)\right)} \cdot z \]
                    4. neg-sub0N/A

                      \[\leadsto \color{blue}{\left(0 - \left(t - x\right)\right)} \cdot z \]
                    5. associate-+l-N/A

                      \[\leadsto \color{blue}{\left(\left(0 - t\right) + x\right)} \cdot z \]
                    6. neg-sub0N/A

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

                      \[\leadsto \left(\color{blue}{-1 \cdot t} + x\right) \cdot z \]
                    8. +-commutativeN/A

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

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

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

                      \[\leadsto \color{blue}{\left(x - t\right)} \cdot z \]
                    12. lower--.f6480.5

                      \[\leadsto \color{blue}{\left(x - t\right)} \cdot z \]
                  7. Applied rewrites80.5%

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

                  if -9e3 < z < 7.2e6

                  1. Initial program 100.0%

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

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

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

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

                      \[\leadsto \color{blue}{\mathsf{fma}\left(t - x, y, x\right)} \]
                    4. lower--.f6489.8

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

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

                Alternative 8: 49.5% accurate, 0.8× speedup?

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

                  1. Initial program 99.9%

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

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

                      \[\leadsto \color{blue}{\left(t - x\right) \cdot y} \]
                    2. lower-*.f64N/A

                      \[\leadsto \color{blue}{\left(t - x\right) \cdot y} \]
                    3. lower--.f6487.6

                      \[\leadsto \color{blue}{\left(t - x\right)} \cdot y \]
                  5. Applied rewrites87.6%

                    \[\leadsto \color{blue}{\left(t - x\right) \cdot y} \]
                  6. Taylor expanded in x around 0

                    \[\leadsto t \cdot \color{blue}{y} \]
                  7. Step-by-step derivation
                    1. Applied rewrites54.4%

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

                    if -1.8999999999999999e-10 < y < 2.8e26

                    1. Initial program 100.0%

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

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

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

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

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

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

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

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

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

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

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

                        \[\leadsto \mathsf{fma}\left(\color{blue}{z} - y, x, x\right) \]
                      11. lower--.f6457.9

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

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

                      \[\leadsto x + \color{blue}{x \cdot z} \]
                    7. Step-by-step derivation
                      1. Applied rewrites56.0%

                        \[\leadsto \mathsf{fma}\left(x, \color{blue}{z}, x\right) \]
                    8. Recombined 2 regimes into one program.
                    9. Add Preprocessing

                    Alternative 9: 34.3% accurate, 0.8× speedup?

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

                      1. Initial program 100.0%

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

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

                          \[\leadsto \color{blue}{\left(t - x\right) \cdot y} \]
                        2. lower-*.f64N/A

                          \[\leadsto \color{blue}{\left(t - x\right) \cdot y} \]
                        3. lower--.f6482.3

                          \[\leadsto \color{blue}{\left(t - x\right)} \cdot y \]
                      5. Applied rewrites82.3%

                        \[\leadsto \color{blue}{\left(t - x\right) \cdot y} \]
                      6. Taylor expanded in x around 0

                        \[\leadsto t \cdot \color{blue}{y} \]
                      7. Step-by-step derivation
                        1. Applied rewrites52.0%

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

                        if -1.15e-85 < y < 2.8e26

                        1. Initial program 100.0%

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

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

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

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

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

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

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

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

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

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

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

                            \[\leadsto \mathsf{fma}\left(\color{blue}{z} - y, x, x\right) \]
                          11. lower--.f6458.7

                            \[\leadsto \mathsf{fma}\left(\color{blue}{z - y}, x, x\right) \]
                        5. Applied rewrites58.7%

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

                          \[\leadsto x \cdot \color{blue}{z} \]
                        7. Step-by-step derivation
                          1. Applied rewrites30.6%

                            \[\leadsto x \cdot \color{blue}{z} \]
                        8. Recombined 2 regimes into one program.
                        9. Add Preprocessing

                        Alternative 10: 26.9% accurate, 2.5× speedup?

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

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

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

                            \[\leadsto \color{blue}{\left(t - x\right) \cdot y} \]
                          2. lower-*.f64N/A

                            \[\leadsto \color{blue}{\left(t - x\right) \cdot y} \]
                          3. lower--.f6446.4

                            \[\leadsto \color{blue}{\left(t - x\right)} \cdot y \]
                        5. Applied rewrites46.4%

                          \[\leadsto \color{blue}{\left(t - x\right) \cdot y} \]
                        6. Taylor expanded in x around 0

                          \[\leadsto t \cdot \color{blue}{y} \]
                        7. Step-by-step derivation
                          1. Applied rewrites29.9%

                            \[\leadsto t \cdot \color{blue}{y} \]
                          2. Add Preprocessing

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

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

                          Reproduce

                          ?
                          herbie shell --seed 2024331 
                          (FPCore (x y z t)
                            :name "Data.Metrics.Snapshot:quantile from metrics-0.3.0.2"
                            :precision binary64
                          
                            :alt
                            (! :herbie-platform default (+ x (+ (* t (- y z)) (* (- x) (- y z)))))
                          
                            (+ x (* (- y z) (- t x))))