Numeric.Signal.Multichannel:$cget from hsignal-0.2.7.1

Percentage Accurate: 97.8% → 97.8%
Time: 6.9s
Alternatives: 11
Speedup: 1.1×

Specification

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

\\
\frac{x}{y} \cdot \left(z - t\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 11 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: 97.8% accurate, 1.0× speedup?

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

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

Alternative 1: 97.8% accurate, 1.1× speedup?

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

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

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

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

      \[\leadsto \color{blue}{\frac{x}{y} \cdot \left(z - t\right)} + t \]
    3. lower-fma.f6498.3

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

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

Alternative 2: 95.0% accurate, 0.4× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\frac{x}{y} \leq -100:\\ \;\;\;\;\frac{z - t}{y} \cdot x\\ \mathbf{elif}\;\frac{x}{y} \leq 0.0002:\\ \;\;\;\;z \cdot \frac{x}{y} + t\\ \mathbf{else}:\\ \;\;\;\;\frac{\left(z - t\right) \cdot x}{y}\\ \end{array} \end{array} \]
(FPCore (x y z t)
 :precision binary64
 (if (<= (/ x y) -100.0)
   (* (/ (- z t) y) x)
   (if (<= (/ x y) 0.0002) (+ (* z (/ x y)) t) (/ (* (- z t) x) y))))
double code(double x, double y, double z, double t) {
	double tmp;
	if ((x / y) <= -100.0) {
		tmp = ((z - t) / y) * x;
	} else if ((x / y) <= 0.0002) {
		tmp = (z * (x / y)) + t;
	} else {
		tmp = ((z - t) * x) / 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 ((x / y) <= (-100.0d0)) then
        tmp = ((z - t) / y) * x
    else if ((x / y) <= 0.0002d0) then
        tmp = (z * (x / y)) + t
    else
        tmp = ((z - t) * x) / y
    end if
    code = tmp
end function
public static double code(double x, double y, double z, double t) {
	double tmp;
	if ((x / y) <= -100.0) {
		tmp = ((z - t) / y) * x;
	} else if ((x / y) <= 0.0002) {
		tmp = (z * (x / y)) + t;
	} else {
		tmp = ((z - t) * x) / y;
	}
	return tmp;
}
def code(x, y, z, t):
	tmp = 0
	if (x / y) <= -100.0:
		tmp = ((z - t) / y) * x
	elif (x / y) <= 0.0002:
		tmp = (z * (x / y)) + t
	else:
		tmp = ((z - t) * x) / y
	return tmp
function code(x, y, z, t)
	tmp = 0.0
	if (Float64(x / y) <= -100.0)
		tmp = Float64(Float64(Float64(z - t) / y) * x);
	elseif (Float64(x / y) <= 0.0002)
		tmp = Float64(Float64(z * Float64(x / y)) + t);
	else
		tmp = Float64(Float64(Float64(z - t) * x) / y);
	end
	return tmp
end
function tmp_2 = code(x, y, z, t)
	tmp = 0.0;
	if ((x / y) <= -100.0)
		tmp = ((z - t) / y) * x;
	elseif ((x / y) <= 0.0002)
		tmp = (z * (x / y)) + t;
	else
		tmp = ((z - t) * x) / y;
	end
	tmp_2 = tmp;
end
code[x_, y_, z_, t_] := If[LessEqual[N[(x / y), $MachinePrecision], -100.0], N[(N[(N[(z - t), $MachinePrecision] / y), $MachinePrecision] * x), $MachinePrecision], If[LessEqual[N[(x / y), $MachinePrecision], 0.0002], N[(N[(z * N[(x / y), $MachinePrecision]), $MachinePrecision] + t), $MachinePrecision], N[(N[(N[(z - t), $MachinePrecision] * x), $MachinePrecision] / y), $MachinePrecision]]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;\frac{x}{y} \leq -100:\\
\;\;\;\;\frac{z - t}{y} \cdot x\\

\mathbf{elif}\;\frac{x}{y} \leq 0.0002:\\
\;\;\;\;z \cdot \frac{x}{y} + t\\

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


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if (/.f64 x y) < -100

    1. Initial program 97.8%

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

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

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

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

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

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

      \[\leadsto \color{blue}{\frac{\left(z - t\right) \cdot x}{y}} \]
    6. Step-by-step derivation
      1. Applied rewrites95.0%

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

      if -100 < (/.f64 x y) < 2.0000000000000001e-4

      1. Initial program 99.8%

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

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

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

          \[\leadsto \frac{\color{blue}{z \cdot x}}{y} + t \]
        3. lower-*.f6492.9

          \[\leadsto \frac{\color{blue}{z \cdot x}}{y} + t \]
      5. Applied rewrites92.9%

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

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

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

          \[\leadsto \color{blue}{\frac{x}{y} \cdot z} + t \]
        3. lower-/.f6498.6

          \[\leadsto \color{blue}{\frac{x}{y}} \cdot z + t \]
      8. Applied rewrites98.6%

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

      if 2.0000000000000001e-4 < (/.f64 x y)

      1. Initial program 95.4%

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

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

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

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

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

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

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

      \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{x}{y} \leq -100:\\ \;\;\;\;\frac{z - t}{y} \cdot x\\ \mathbf{elif}\;\frac{x}{y} \leq 0.0002:\\ \;\;\;\;z \cdot \frac{x}{y} + t\\ \mathbf{else}:\\ \;\;\;\;\frac{\left(z - t\right) \cdot x}{y}\\ \end{array} \]
    9. Add Preprocessing

    Alternative 3: 92.4% accurate, 0.4× speedup?

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

      1. Initial program 98.1%

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

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

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

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

          \[\leadsto \frac{\color{blue}{\left(z - t\right) \cdot x}}{y} \]
        4. lower--.f6491.7

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

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

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

        if -2.0000000000000001e-59 < (/.f64 x y) < 2.0000000000000001e-4

        1. Initial program 99.8%

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

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

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

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

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

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

            \[\leadsto \color{blue}{\frac{z - t}{y} \cdot x} + t \]
          7. lower-fma.f64N/A

            \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{z - t}{y}, x, t\right)} \]
          8. lower-/.f6492.7

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

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

          \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{z}{y}}, x, t\right) \]
        6. Step-by-step derivation
          1. lower-/.f6496.3

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

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

        if 2.0000000000000001e-4 < (/.f64 x y)

        1. Initial program 95.4%

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

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

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

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

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

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

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

        \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{x}{y} \leq -2 \cdot 10^{-59}:\\ \;\;\;\;\left(z - t\right) \cdot \frac{x}{y}\\ \mathbf{elif}\;\frac{x}{y} \leq 0.0002:\\ \;\;\;\;\mathsf{fma}\left(\frac{z}{y}, x, t\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{\left(z - t\right) \cdot x}{y}\\ \end{array} \]
      9. Add Preprocessing

      Alternative 4: 93.2% accurate, 0.4× speedup?

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

        1. Initial program 96.7%

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

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

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

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

            \[\leadsto \frac{\color{blue}{\left(z - t\right) \cdot x}}{y} \]
          4. lower--.f6495.2

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

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

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

          if -2.0000000000000001e-59 < (/.f64 x y) < 4e5

          1. Initial program 99.7%

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

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

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

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

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

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

              \[\leadsto \color{blue}{\frac{z - t}{y} \cdot x} + t \]
            7. lower-fma.f64N/A

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

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

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

            \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{z}{y}}, x, t\right) \]
          6. Step-by-step derivation
            1. lower-/.f6496.3

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

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

          \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{x}{y} \leq -2 \cdot 10^{-59}:\\ \;\;\;\;\left(z - t\right) \cdot \frac{x}{y}\\ \mathbf{elif}\;\frac{x}{y} \leq 400000:\\ \;\;\;\;\mathsf{fma}\left(\frac{z}{y}, x, t\right)\\ \mathbf{else}:\\ \;\;\;\;\left(z - t\right) \cdot \frac{x}{y}\\ \end{array} \]
        9. Add Preprocessing

        Alternative 5: 72.8% accurate, 0.4× speedup?

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

          1. Initial program 99.3%

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

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

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

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

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

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

              \[\leadsto \color{blue}{\frac{z - t}{y} \cdot x} + t \]
            7. lower-fma.f64N/A

              \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{z - t}{y}, x, t\right)} \]
            8. lower-/.f6491.6

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

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

            \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{z}{y}}, x, t\right) \]
          6. Step-by-step derivation
            1. lower-/.f6484.7

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

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

          if 5e17 < (/.f64 x y) < 4.9999999999999997e111

          1. Initial program 99.5%

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

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

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

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

              \[\leadsto \frac{\color{blue}{\left(z - t\right) \cdot x}}{y} \]
            4. lower--.f6494.2

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

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

            \[\leadsto \frac{\left(-1 \cdot t\right) \cdot x}{y} \]
          7. Step-by-step derivation
            1. Applied rewrites71.2%

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

            if 4.9999999999999997e111 < (/.f64 x y)

            1. Initial program 93.2%

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

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

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

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

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

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

                \[\leadsto \color{blue}{\frac{z - t}{y} \cdot x} + t \]
              7. lower-fma.f64N/A

                \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{z - t}{y}, x, t\right)} \]
              8. lower-/.f6497.7

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

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

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

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

                \[\leadsto \color{blue}{\frac{x}{y} \cdot z} \]
              3. lower-/.f6476.7

                \[\leadsto \color{blue}{\frac{x}{y}} \cdot z \]
            7. Applied rewrites76.7%

              \[\leadsto \color{blue}{\frac{x}{y} \cdot z} \]
          8. Recombined 3 regimes into one program.
          9. Final simplification82.5%

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

          Alternative 6: 73.4% accurate, 0.4× speedup?

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

            1. Initial program 99.3%

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

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

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

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

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

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

                \[\leadsto \color{blue}{\frac{z - t}{y} \cdot x} + t \]
              7. lower-fma.f64N/A

                \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{z - t}{y}, x, t\right)} \]
              8. lower-/.f6491.6

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

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

              \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{z}{y}}, x, t\right) \]
            6. Step-by-step derivation
              1. lower-/.f6484.7

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

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

            if 5e17 < (/.f64 x y) < 4.9999999999999997e111

            1. Initial program 99.5%

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

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

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

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

                \[\leadsto \frac{\color{blue}{\left(z - t\right) \cdot x}}{y} \]
              4. lower--.f6494.2

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

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

              \[\leadsto \frac{\left(-1 \cdot t\right) \cdot x}{y} \]
            7. Step-by-step derivation
              1. Applied rewrites71.2%

                \[\leadsto \frac{\left(-t\right) \cdot x}{y} \]
              2. Step-by-step derivation
                1. Applied rewrites70.9%

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

                if 4.9999999999999997e111 < (/.f64 x y)

                1. Initial program 93.2%

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

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

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

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

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

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

                    \[\leadsto \color{blue}{\frac{z - t}{y} \cdot x} + t \]
                  7. lower-fma.f64N/A

                    \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{z - t}{y}, x, t\right)} \]
                  8. lower-/.f6497.7

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

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

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

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

                    \[\leadsto \color{blue}{\frac{x}{y} \cdot z} \]
                  3. lower-/.f6476.7

                    \[\leadsto \color{blue}{\frac{x}{y}} \cdot z \]
                7. Applied rewrites76.7%

                  \[\leadsto \color{blue}{\frac{x}{y} \cdot z} \]
              3. Recombined 3 regimes into one program.
              4. Final simplification82.5%

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

              Alternative 7: 84.6% accurate, 0.7× speedup?

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

                1. Initial program 99.9%

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

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

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

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

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

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

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

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

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

                if -1.2499999999999999e32 < t < 4.2000000000000002e37

                1. Initial program 97.3%

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

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

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

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

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

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

                    \[\leadsto \color{blue}{\frac{z - t}{y} \cdot x} + t \]
                  7. lower-fma.f64N/A

                    \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{z - t}{y}, x, t\right)} \]
                  8. lower-/.f6495.1

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

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

                  \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{z}{y}}, x, t\right) \]
                6. Step-by-step derivation
                  1. lower-/.f6487.0

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

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

              Alternative 8: 72.3% accurate, 1.3× speedup?

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

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

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

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

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

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

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

                  \[\leadsto \color{blue}{\frac{z - t}{y} \cdot x} + t \]
                7. lower-fma.f64N/A

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

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

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

                \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{z}{y}}, x, t\right) \]
              6. Step-by-step derivation
                1. lower-/.f6479.0

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

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

              Alternative 9: 40.1% accurate, 1.4× speedup?

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

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

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

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

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

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

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

                  \[\leadsto \color{blue}{\frac{z - t}{y} \cdot x} + t \]
                7. lower-fma.f64N/A

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

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

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

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

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

                  \[\leadsto \color{blue}{\frac{x}{y} \cdot z} \]
                3. lower-/.f6443.7

                  \[\leadsto \color{blue}{\frac{x}{y}} \cdot z \]
              7. Applied rewrites43.7%

                \[\leadsto \color{blue}{\frac{x}{y} \cdot z} \]
              8. Final simplification43.7%

                \[\leadsto z \cdot \frac{x}{y} \]
              9. Add Preprocessing

              Alternative 10: 36.9% accurate, 1.4× speedup?

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

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

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

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

                  \[\leadsto \frac{\color{blue}{z \cdot x}}{y} \]
                3. lower-*.f6441.5

                  \[\leadsto \frac{\color{blue}{z \cdot x}}{y} \]
              5. Applied rewrites41.5%

                \[\leadsto \color{blue}{\frac{z \cdot x}{y}} \]
              6. Add Preprocessing

              Alternative 11: 36.8% accurate, 1.4× speedup?

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

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

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

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

                  \[\leadsto \frac{\color{blue}{z \cdot x}}{y} \]
                3. lower-*.f6441.5

                  \[\leadsto \frac{\color{blue}{z \cdot x}}{y} \]
              5. Applied rewrites41.5%

                \[\leadsto \color{blue}{\frac{z \cdot x}{y}} \]
              6. Step-by-step derivation
                1. Applied rewrites40.2%

                  \[\leadsto x \cdot \color{blue}{\frac{z}{y}} \]
                2. Final simplification40.2%

                  \[\leadsto \frac{z}{y} \cdot x \]
                3. Add Preprocessing

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

                \[\begin{array}{l} \\ \begin{array}{l} t_1 := \frac{x}{y} \cdot \left(z - t\right) + t\\ \mathbf{if}\;z < 2.759456554562692 \cdot 10^{-282}:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;z < 2.326994450874436 \cdot 10^{-110}:\\ \;\;\;\;x \cdot \frac{z - t}{y} + t\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \end{array} \]
                (FPCore (x y z t)
                 :precision binary64
                 (let* ((t_1 (+ (* (/ x y) (- z t)) t)))
                   (if (< z 2.759456554562692e-282)
                     t_1
                     (if (< z 2.326994450874436e-110) (+ (* x (/ (- z t) y)) t) t_1))))
                double code(double x, double y, double z, double t) {
                	double t_1 = ((x / y) * (z - t)) + t;
                	double tmp;
                	if (z < 2.759456554562692e-282) {
                		tmp = t_1;
                	} else if (z < 2.326994450874436e-110) {
                		tmp = (x * ((z - t) / y)) + t;
                	} else {
                		tmp = t_1;
                	}
                	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 = ((x / y) * (z - t)) + t
                    if (z < 2.759456554562692d-282) then
                        tmp = t_1
                    else if (z < 2.326994450874436d-110) then
                        tmp = (x * ((z - t) / y)) + t
                    else
                        tmp = t_1
                    end if
                    code = tmp
                end function
                
                public static double code(double x, double y, double z, double t) {
                	double t_1 = ((x / y) * (z - t)) + t;
                	double tmp;
                	if (z < 2.759456554562692e-282) {
                		tmp = t_1;
                	} else if (z < 2.326994450874436e-110) {
                		tmp = (x * ((z - t) / y)) + t;
                	} else {
                		tmp = t_1;
                	}
                	return tmp;
                }
                
                def code(x, y, z, t):
                	t_1 = ((x / y) * (z - t)) + t
                	tmp = 0
                	if z < 2.759456554562692e-282:
                		tmp = t_1
                	elif z < 2.326994450874436e-110:
                		tmp = (x * ((z - t) / y)) + t
                	else:
                		tmp = t_1
                	return tmp
                
                function code(x, y, z, t)
                	t_1 = Float64(Float64(Float64(x / y) * Float64(z - t)) + t)
                	tmp = 0.0
                	if (z < 2.759456554562692e-282)
                		tmp = t_1;
                	elseif (z < 2.326994450874436e-110)
                		tmp = Float64(Float64(x * Float64(Float64(z - t) / y)) + t);
                	else
                		tmp = t_1;
                	end
                	return tmp
                end
                
                function tmp_2 = code(x, y, z, t)
                	t_1 = ((x / y) * (z - t)) + t;
                	tmp = 0.0;
                	if (z < 2.759456554562692e-282)
                		tmp = t_1;
                	elseif (z < 2.326994450874436e-110)
                		tmp = (x * ((z - t) / y)) + t;
                	else
                		tmp = t_1;
                	end
                	tmp_2 = tmp;
                end
                
                code[x_, y_, z_, t_] := Block[{t$95$1 = N[(N[(N[(x / y), $MachinePrecision] * N[(z - t), $MachinePrecision]), $MachinePrecision] + t), $MachinePrecision]}, If[Less[z, 2.759456554562692e-282], t$95$1, If[Less[z, 2.326994450874436e-110], N[(N[(x * N[(N[(z - t), $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision] + t), $MachinePrecision], t$95$1]]]
                
                \begin{array}{l}
                
                \\
                \begin{array}{l}
                t_1 := \frac{x}{y} \cdot \left(z - t\right) + t\\
                \mathbf{if}\;z < 2.759456554562692 \cdot 10^{-282}:\\
                \;\;\;\;t\_1\\
                
                \mathbf{elif}\;z < 2.326994450874436 \cdot 10^{-110}:\\
                \;\;\;\;x \cdot \frac{z - t}{y} + t\\
                
                \mathbf{else}:\\
                \;\;\;\;t\_1\\
                
                
                \end{array}
                \end{array}
                

                Reproduce

                ?
                herbie shell --seed 2024276 
                (FPCore (x y z t)
                  :name "Numeric.Signal.Multichannel:$cget from hsignal-0.2.7.1"
                  :precision binary64
                
                  :alt
                  (! :herbie-platform default (if (< z 689864138640673/250000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) (+ (* (/ x y) (- z t)) t) (if (< z 581748612718609/25000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) (+ (* x (/ (- z t) y)) t) (+ (* (/ x y) (- z t)) t))))
                
                  (+ (* (/ x y) (- z t)) t))