Numeric.SpecFunctions:logGamma from math-functions-0.1.5.2, B

Percentage Accurate: 69.6% → 98.7%
Time: 4.0s
Alternatives: 9
Speedup: 4.5×

Specification

?
\[x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304} \]
(FPCore (x y z)
 :precision binary64
 (+
  x
  (/
   (*
    y
    (+
     (* (+ (* z 0.0692910599291889) 0.4917317610505968) z)
     0.279195317918525))
   (+ (* (+ z 6.012459259764103) z) 3.350343815022304))))
double code(double x, double y, double z) {
	return x + ((y * ((((z * 0.0692910599291889) + 0.4917317610505968) * z) + 0.279195317918525)) / (((z + 6.012459259764103) * z) + 3.350343815022304));
}
module fmin_fmax_functions
    implicit none
    private
    public fmax
    public fmin

    interface fmax
        module procedure fmax88
        module procedure fmax44
        module procedure fmax84
        module procedure fmax48
    end interface
    interface fmin
        module procedure fmin88
        module procedure fmin44
        module procedure fmin84
        module procedure fmin48
    end interface
contains
    real(8) function fmax88(x, y) result (res)
        real(8), intent (in) :: x
        real(8), intent (in) :: y
        res = merge(y, merge(x, max(x, y), y /= y), x /= x)
    end function
    real(4) function fmax44(x, y) result (res)
        real(4), intent (in) :: x
        real(4), intent (in) :: y
        res = merge(y, merge(x, max(x, y), y /= y), x /= x)
    end function
    real(8) function fmax84(x, y) result(res)
        real(8), intent (in) :: x
        real(4), intent (in) :: y
        res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
    end function
    real(8) function fmax48(x, y) result(res)
        real(4), intent (in) :: x
        real(8), intent (in) :: y
        res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
    end function
    real(8) function fmin88(x, y) result (res)
        real(8), intent (in) :: x
        real(8), intent (in) :: y
        res = merge(y, merge(x, min(x, y), y /= y), x /= x)
    end function
    real(4) function fmin44(x, y) result (res)
        real(4), intent (in) :: x
        real(4), intent (in) :: y
        res = merge(y, merge(x, min(x, y), y /= y), x /= x)
    end function
    real(8) function fmin84(x, y) result(res)
        real(8), intent (in) :: x
        real(4), intent (in) :: y
        res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
    end function
    real(8) function fmin48(x, y) result(res)
        real(4), intent (in) :: x
        real(8), intent (in) :: y
        res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
    end function
end module

real(8) function code(x, y, z)
use fmin_fmax_functions
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    code = x + ((y * ((((z * 0.0692910599291889d0) + 0.4917317610505968d0) * z) + 0.279195317918525d0)) / (((z + 6.012459259764103d0) * z) + 3.350343815022304d0))
end function
public static double code(double x, double y, double z) {
	return x + ((y * ((((z * 0.0692910599291889) + 0.4917317610505968) * z) + 0.279195317918525)) / (((z + 6.012459259764103) * z) + 3.350343815022304));
}
def code(x, y, z):
	return x + ((y * ((((z * 0.0692910599291889) + 0.4917317610505968) * z) + 0.279195317918525)) / (((z + 6.012459259764103) * z) + 3.350343815022304))
function code(x, y, z)
	return Float64(x + Float64(Float64(y * Float64(Float64(Float64(Float64(z * 0.0692910599291889) + 0.4917317610505968) * z) + 0.279195317918525)) / Float64(Float64(Float64(z + 6.012459259764103) * z) + 3.350343815022304)))
end
function tmp = code(x, y, z)
	tmp = x + ((y * ((((z * 0.0692910599291889) + 0.4917317610505968) * z) + 0.279195317918525)) / (((z + 6.012459259764103) * z) + 3.350343815022304));
end
code[x_, y_, z_] := N[(x + N[(N[(y * N[(N[(N[(N[(z * 0.0692910599291889), $MachinePrecision] + 0.4917317610505968), $MachinePrecision] * z), $MachinePrecision] + 0.279195317918525), $MachinePrecision]), $MachinePrecision] / N[(N[(N[(z + 6.012459259764103), $MachinePrecision] * z), $MachinePrecision] + 3.350343815022304), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304}

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 9 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: 69.6% accurate, 1.0× speedup?

\[x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304} \]
(FPCore (x y z)
 :precision binary64
 (+
  x
  (/
   (*
    y
    (+
     (* (+ (* z 0.0692910599291889) 0.4917317610505968) z)
     0.279195317918525))
   (+ (* (+ z 6.012459259764103) z) 3.350343815022304))))
double code(double x, double y, double z) {
	return x + ((y * ((((z * 0.0692910599291889) + 0.4917317610505968) * z) + 0.279195317918525)) / (((z + 6.012459259764103) * z) + 3.350343815022304));
}
module fmin_fmax_functions
    implicit none
    private
    public fmax
    public fmin

    interface fmax
        module procedure fmax88
        module procedure fmax44
        module procedure fmax84
        module procedure fmax48
    end interface
    interface fmin
        module procedure fmin88
        module procedure fmin44
        module procedure fmin84
        module procedure fmin48
    end interface
contains
    real(8) function fmax88(x, y) result (res)
        real(8), intent (in) :: x
        real(8), intent (in) :: y
        res = merge(y, merge(x, max(x, y), y /= y), x /= x)
    end function
    real(4) function fmax44(x, y) result (res)
        real(4), intent (in) :: x
        real(4), intent (in) :: y
        res = merge(y, merge(x, max(x, y), y /= y), x /= x)
    end function
    real(8) function fmax84(x, y) result(res)
        real(8), intent (in) :: x
        real(4), intent (in) :: y
        res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
    end function
    real(8) function fmax48(x, y) result(res)
        real(4), intent (in) :: x
        real(8), intent (in) :: y
        res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
    end function
    real(8) function fmin88(x, y) result (res)
        real(8), intent (in) :: x
        real(8), intent (in) :: y
        res = merge(y, merge(x, min(x, y), y /= y), x /= x)
    end function
    real(4) function fmin44(x, y) result (res)
        real(4), intent (in) :: x
        real(4), intent (in) :: y
        res = merge(y, merge(x, min(x, y), y /= y), x /= x)
    end function
    real(8) function fmin84(x, y) result(res)
        real(8), intent (in) :: x
        real(4), intent (in) :: y
        res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
    end function
    real(8) function fmin48(x, y) result(res)
        real(4), intent (in) :: x
        real(8), intent (in) :: y
        res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
    end function
end module

real(8) function code(x, y, z)
use fmin_fmax_functions
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    code = x + ((y * ((((z * 0.0692910599291889d0) + 0.4917317610505968d0) * z) + 0.279195317918525d0)) / (((z + 6.012459259764103d0) * z) + 3.350343815022304d0))
end function
public static double code(double x, double y, double z) {
	return x + ((y * ((((z * 0.0692910599291889) + 0.4917317610505968) * z) + 0.279195317918525)) / (((z + 6.012459259764103) * z) + 3.350343815022304));
}
def code(x, y, z):
	return x + ((y * ((((z * 0.0692910599291889) + 0.4917317610505968) * z) + 0.279195317918525)) / (((z + 6.012459259764103) * z) + 3.350343815022304))
function code(x, y, z)
	return Float64(x + Float64(Float64(y * Float64(Float64(Float64(Float64(z * 0.0692910599291889) + 0.4917317610505968) * z) + 0.279195317918525)) / Float64(Float64(Float64(z + 6.012459259764103) * z) + 3.350343815022304)))
end
function tmp = code(x, y, z)
	tmp = x + ((y * ((((z * 0.0692910599291889) + 0.4917317610505968) * z) + 0.279195317918525)) / (((z + 6.012459259764103) * z) + 3.350343815022304));
end
code[x_, y_, z_] := N[(x + N[(N[(y * N[(N[(N[(N[(z * 0.0692910599291889), $MachinePrecision] + 0.4917317610505968), $MachinePrecision] * z), $MachinePrecision] + 0.279195317918525), $MachinePrecision]), $MachinePrecision] / N[(N[(N[(z + 6.012459259764103), $MachinePrecision] * z), $MachinePrecision] + 3.350343815022304), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304}

Alternative 1: 98.7% accurate, 1.1× speedup?

\[\begin{array}{l} \mathbf{if}\;z \leq -155000000:\\ \;\;\;\;x + 0.0692910599291889 \cdot y\\ \mathbf{elif}\;z \leq 7.2 \cdot 10^{-19}:\\ \;\;\;\;x + \mathsf{fma}\left(0.08333333333333323, y, z \cdot \left(0.14677053705526136 \cdot y - 0.14954831483277858 \cdot y\right)\right)\\ \mathbf{else}:\\ \;\;\;\;y \cdot \left(\frac{0.07512208616047561}{z} - -0.0692910599291889\right) + x\\ \end{array} \]
(FPCore (x y z)
 :precision binary64
 (if (<= z -155000000.0)
   (+ x (* 0.0692910599291889 y))
   (if (<= z 7.2e-19)
     (+
      x
      (fma
       0.08333333333333323
       y
       (* z (- (* 0.14677053705526136 y) (* 0.14954831483277858 y)))))
     (+ (* y (- (/ 0.07512208616047561 z) -0.0692910599291889)) x))))
double code(double x, double y, double z) {
	double tmp;
	if (z <= -155000000.0) {
		tmp = x + (0.0692910599291889 * y);
	} else if (z <= 7.2e-19) {
		tmp = x + fma(0.08333333333333323, y, (z * ((0.14677053705526136 * y) - (0.14954831483277858 * y))));
	} else {
		tmp = (y * ((0.07512208616047561 / z) - -0.0692910599291889)) + x;
	}
	return tmp;
}
function code(x, y, z)
	tmp = 0.0
	if (z <= -155000000.0)
		tmp = Float64(x + Float64(0.0692910599291889 * y));
	elseif (z <= 7.2e-19)
		tmp = Float64(x + fma(0.08333333333333323, y, Float64(z * Float64(Float64(0.14677053705526136 * y) - Float64(0.14954831483277858 * y)))));
	else
		tmp = Float64(Float64(y * Float64(Float64(0.07512208616047561 / z) - -0.0692910599291889)) + x);
	end
	return tmp
end
code[x_, y_, z_] := If[LessEqual[z, -155000000.0], N[(x + N[(0.0692910599291889 * y), $MachinePrecision]), $MachinePrecision], If[LessEqual[z, 7.2e-19], N[(x + N[(0.08333333333333323 * y + N[(z * N[(N[(0.14677053705526136 * y), $MachinePrecision] - N[(0.14954831483277858 * y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[(y * N[(N[(0.07512208616047561 / z), $MachinePrecision] - -0.0692910599291889), $MachinePrecision]), $MachinePrecision] + x), $MachinePrecision]]]
\begin{array}{l}
\mathbf{if}\;z \leq -155000000:\\
\;\;\;\;x + 0.0692910599291889 \cdot y\\

\mathbf{elif}\;z \leq 7.2 \cdot 10^{-19}:\\
\;\;\;\;x + \mathsf{fma}\left(0.08333333333333323, y, z \cdot \left(0.14677053705526136 \cdot y - 0.14954831483277858 \cdot y\right)\right)\\

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


\end{array}
Derivation
  1. Split input into 3 regimes
  2. if z < -1.55e8

    1. Initial program 69.6%

      \[x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304} \]
    2. Taylor expanded in z around inf

      \[\leadsto x + \color{blue}{\frac{692910599291889}{10000000000000000} \cdot y} \]
    3. Step-by-step derivation
      1. lower-*.f6479.6%

        \[\leadsto x + 0.0692910599291889 \cdot \color{blue}{y} \]
    4. Applied rewrites79.6%

      \[\leadsto x + \color{blue}{0.0692910599291889 \cdot y} \]

    if -1.55e8 < z < 7.2000000000000002e-19

    1. Initial program 69.6%

      \[x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304} \]
    2. Taylor expanded in z around 0

      \[\leadsto x + \color{blue}{\left(\frac{279195317918525}{3350343815022304} \cdot y + z \cdot \left(\frac{307332350656623}{2093964884388940} \cdot y - \frac{1678650474502018223880473708075}{11224803678858206361900017468416} \cdot y\right)\right)} \]
    3. Step-by-step derivation
      1. lower-fma.f64N/A

        \[\leadsto x + \mathsf{fma}\left(\frac{279195317918525}{3350343815022304}, \color{blue}{y}, z \cdot \left(\frac{307332350656623}{2093964884388940} \cdot y - \frac{1678650474502018223880473708075}{11224803678858206361900017468416} \cdot y\right)\right) \]
      2. lower-*.f64N/A

        \[\leadsto x + \mathsf{fma}\left(\frac{279195317918525}{3350343815022304}, y, z \cdot \left(\frac{307332350656623}{2093964884388940} \cdot y - \frac{1678650474502018223880473708075}{11224803678858206361900017468416} \cdot y\right)\right) \]
      3. lower--.f64N/A

        \[\leadsto x + \mathsf{fma}\left(\frac{279195317918525}{3350343815022304}, y, z \cdot \left(\frac{307332350656623}{2093964884388940} \cdot y - \frac{1678650474502018223880473708075}{11224803678858206361900017468416} \cdot y\right)\right) \]
      4. lower-*.f64N/A

        \[\leadsto x + \mathsf{fma}\left(\frac{279195317918525}{3350343815022304}, y, z \cdot \left(\frac{307332350656623}{2093964884388940} \cdot y - \frac{1678650474502018223880473708075}{11224803678858206361900017468416} \cdot y\right)\right) \]
      5. lower-*.f6466.2%

        \[\leadsto x + \mathsf{fma}\left(0.08333333333333323, y, z \cdot \left(0.14677053705526136 \cdot y - 0.14954831483277858 \cdot y\right)\right) \]
    4. Applied rewrites66.2%

      \[\leadsto x + \color{blue}{\mathsf{fma}\left(0.08333333333333323, y, z \cdot \left(0.14677053705526136 \cdot y - 0.14954831483277858 \cdot y\right)\right)} \]

    if 7.2000000000000002e-19 < z

    1. Initial program 69.6%

      \[x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304} \]
    2. Taylor expanded in z around -inf

      \[\leadsto x + \color{blue}{\left(-1 \cdot \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z} + \frac{692910599291889}{10000000000000000} \cdot y\right)} \]
    3. Step-by-step derivation
      1. lower-fma.f64N/A

        \[\leadsto x + \mathsf{fma}\left(-1, \color{blue}{\frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z}}, \frac{692910599291889}{10000000000000000} \cdot y\right) \]
      2. lower-/.f64N/A

        \[\leadsto x + \mathsf{fma}\left(-1, \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{\color{blue}{z}}, \frac{692910599291889}{10000000000000000} \cdot y\right) \]
      3. lower--.f64N/A

        \[\leadsto x + \mathsf{fma}\left(-1, \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z}, \frac{692910599291889}{10000000000000000} \cdot y\right) \]
      4. lower-*.f64N/A

        \[\leadsto x + \mathsf{fma}\left(-1, \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z}, \frac{692910599291889}{10000000000000000} \cdot y\right) \]
      5. lower-*.f64N/A

        \[\leadsto x + \mathsf{fma}\left(-1, \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z}, \frac{692910599291889}{10000000000000000} \cdot y\right) \]
      6. lower-*.f6465.2%

        \[\leadsto x + \mathsf{fma}\left(-1, \frac{-0.4917317610505968 \cdot y - -0.4166096748901212 \cdot y}{z}, 0.0692910599291889 \cdot y\right) \]
    4. Applied rewrites65.2%

      \[\leadsto x + \color{blue}{\mathsf{fma}\left(-1, \frac{-0.4917317610505968 \cdot y - -0.4166096748901212 \cdot y}{z}, 0.0692910599291889 \cdot y\right)} \]
    5. Step-by-step derivation
      1. lift-fma.f64N/A

        \[\leadsto x + \left(-1 \cdot \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z} + \color{blue}{\frac{692910599291889}{10000000000000000} \cdot y}\right) \]
      2. lift-*.f64N/A

        \[\leadsto x + \left(-1 \cdot \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z} + \frac{692910599291889}{10000000000000000} \cdot \color{blue}{y}\right) \]
      3. fp-cancel-sign-sub-invN/A

        \[\leadsto x + \left(-1 \cdot \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z} - \color{blue}{\left(\mathsf{neg}\left(\frac{692910599291889}{10000000000000000}\right)\right) \cdot y}\right) \]
      4. sub-to-multN/A

        \[\leadsto x + \left(1 - \frac{\left(\mathsf{neg}\left(\frac{692910599291889}{10000000000000000}\right)\right) \cdot y}{-1 \cdot \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z}}\right) \cdot \color{blue}{\left(-1 \cdot \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z}\right)} \]
      5. lower-unsound-*.f64N/A

        \[\leadsto x + \left(1 - \frac{\left(\mathsf{neg}\left(\frac{692910599291889}{10000000000000000}\right)\right) \cdot y}{-1 \cdot \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z}}\right) \cdot \color{blue}{\left(-1 \cdot \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z}\right)} \]
    6. Applied rewrites53.5%

      \[\leadsto x + \left(1 - \frac{-0.0692910599291889 \cdot y}{\frac{y \cdot 0.07512208616047561}{z}}\right) \cdot \color{blue}{\frac{y \cdot 0.07512208616047561}{z}} \]
    7. Step-by-step derivation
      1. lift-+.f64N/A

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

        \[\leadsto \color{blue}{\left(1 - \frac{\frac{-692910599291889}{10000000000000000} \cdot y}{\frac{y \cdot \frac{751220861604756070699018739433}{10000000000000000000000000000000}}{z}}\right) \cdot \frac{y \cdot \frac{751220861604756070699018739433}{10000000000000000000000000000000}}{z} + x} \]
      3. lower-+.f6453.5%

        \[\leadsto \color{blue}{\left(1 - \frac{-0.0692910599291889 \cdot y}{\frac{y \cdot 0.07512208616047561}{z}}\right) \cdot \frac{y \cdot 0.07512208616047561}{z} + x} \]
    8. Applied rewrites65.2%

      \[\leadsto \color{blue}{y \cdot \left(\frac{0.07512208616047561}{z} - -0.0692910599291889\right) + x} \]
  3. Recombined 3 regimes into one program.
  4. Add Preprocessing

Alternative 2: 98.6% accurate, 1.5× speedup?

\[\begin{array}{l} \mathbf{if}\;z \leq -2350000000:\\ \;\;\;\;x + 0.0692910599291889 \cdot y\\ \mathbf{elif}\;z \leq 7.2 \cdot 10^{-19}:\\ \;\;\;\;\mathsf{fma}\left(\frac{0.279195317918525}{3.350343815022304}, y, x\right)\\ \mathbf{else}:\\ \;\;\;\;y \cdot \left(\frac{0.07512208616047561}{z} - -0.0692910599291889\right) + x\\ \end{array} \]
(FPCore (x y z)
 :precision binary64
 (if (<= z -2350000000.0)
   (+ x (* 0.0692910599291889 y))
   (if (<= z 7.2e-19)
     (fma (/ 0.279195317918525 3.350343815022304) y x)
     (+ (* y (- (/ 0.07512208616047561 z) -0.0692910599291889)) x))))
double code(double x, double y, double z) {
	double tmp;
	if (z <= -2350000000.0) {
		tmp = x + (0.0692910599291889 * y);
	} else if (z <= 7.2e-19) {
		tmp = fma((0.279195317918525 / 3.350343815022304), y, x);
	} else {
		tmp = (y * ((0.07512208616047561 / z) - -0.0692910599291889)) + x;
	}
	return tmp;
}
function code(x, y, z)
	tmp = 0.0
	if (z <= -2350000000.0)
		tmp = Float64(x + Float64(0.0692910599291889 * y));
	elseif (z <= 7.2e-19)
		tmp = fma(Float64(0.279195317918525 / 3.350343815022304), y, x);
	else
		tmp = Float64(Float64(y * Float64(Float64(0.07512208616047561 / z) - -0.0692910599291889)) + x);
	end
	return tmp
end
code[x_, y_, z_] := If[LessEqual[z, -2350000000.0], N[(x + N[(0.0692910599291889 * y), $MachinePrecision]), $MachinePrecision], If[LessEqual[z, 7.2e-19], N[(N[(0.279195317918525 / 3.350343815022304), $MachinePrecision] * y + x), $MachinePrecision], N[(N[(y * N[(N[(0.07512208616047561 / z), $MachinePrecision] - -0.0692910599291889), $MachinePrecision]), $MachinePrecision] + x), $MachinePrecision]]]
\begin{array}{l}
\mathbf{if}\;z \leq -2350000000:\\
\;\;\;\;x + 0.0692910599291889 \cdot y\\

\mathbf{elif}\;z \leq 7.2 \cdot 10^{-19}:\\
\;\;\;\;\mathsf{fma}\left(\frac{0.279195317918525}{3.350343815022304}, y, x\right)\\

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


\end{array}
Derivation
  1. Split input into 3 regimes
  2. if z < -2.35e9

    1. Initial program 69.6%

      \[x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304} \]
    2. Taylor expanded in z around inf

      \[\leadsto x + \color{blue}{\frac{692910599291889}{10000000000000000} \cdot y} \]
    3. Step-by-step derivation
      1. lower-*.f6479.6%

        \[\leadsto x + 0.0692910599291889 \cdot \color{blue}{y} \]
    4. Applied rewrites79.6%

      \[\leadsto x + \color{blue}{0.0692910599291889 \cdot y} \]

    if -2.35e9 < z < 7.2000000000000002e-19

    1. Initial program 69.6%

      \[x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304} \]
    2. Taylor expanded in z around 0

      \[\leadsto x + \frac{y \cdot \color{blue}{\frac{11167812716741}{40000000000000}}}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304} \]
    3. Step-by-step derivation
      1. Applied rewrites75.8%

        \[\leadsto x + \frac{y \cdot \color{blue}{0.279195317918525}}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304} \]
      2. Taylor expanded in z around 0

        \[\leadsto x + \frac{y \cdot 0.279195317918525}{\color{blue}{\frac{104698244219447}{31250000000000}}} \]
      3. Step-by-step derivation
        1. Applied rewrites80.1%

          \[\leadsto x + \frac{y \cdot 0.279195317918525}{\color{blue}{3.350343815022304}} \]
        2. Step-by-step derivation
          1. lift-+.f64N/A

            \[\leadsto \color{blue}{x + \frac{y \cdot \frac{11167812716741}{40000000000000}}{\frac{104698244219447}{31250000000000}}} \]
          2. +-commutativeN/A

            \[\leadsto \color{blue}{\frac{y \cdot \frac{11167812716741}{40000000000000}}{\frac{104698244219447}{31250000000000}} + x} \]
          3. lift-/.f64N/A

            \[\leadsto \color{blue}{\frac{y \cdot \frac{11167812716741}{40000000000000}}{\frac{104698244219447}{31250000000000}}} + x \]
          4. lift-*.f64N/A

            \[\leadsto \frac{\color{blue}{y \cdot \frac{11167812716741}{40000000000000}}}{\frac{104698244219447}{31250000000000}} + x \]
          5. associate-/l*N/A

            \[\leadsto \color{blue}{y \cdot \frac{\frac{11167812716741}{40000000000000}}{\frac{104698244219447}{31250000000000}}} + x \]
          6. *-commutativeN/A

            \[\leadsto \color{blue}{\frac{\frac{11167812716741}{40000000000000}}{\frac{104698244219447}{31250000000000}} \cdot y} + x \]
          7. lower-fma.f64N/A

            \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{\frac{11167812716741}{40000000000000}}{\frac{104698244219447}{31250000000000}}, y, x\right)} \]
          8. lower-/.f6480.2%

            \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{0.279195317918525}{3.350343815022304}}, y, x\right) \]
        3. Applied rewrites80.2%

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

        if 7.2000000000000002e-19 < z

        1. Initial program 69.6%

          \[x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304} \]
        2. Taylor expanded in z around -inf

          \[\leadsto x + \color{blue}{\left(-1 \cdot \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z} + \frac{692910599291889}{10000000000000000} \cdot y\right)} \]
        3. Step-by-step derivation
          1. lower-fma.f64N/A

            \[\leadsto x + \mathsf{fma}\left(-1, \color{blue}{\frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z}}, \frac{692910599291889}{10000000000000000} \cdot y\right) \]
          2. lower-/.f64N/A

            \[\leadsto x + \mathsf{fma}\left(-1, \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{\color{blue}{z}}, \frac{692910599291889}{10000000000000000} \cdot y\right) \]
          3. lower--.f64N/A

            \[\leadsto x + \mathsf{fma}\left(-1, \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z}, \frac{692910599291889}{10000000000000000} \cdot y\right) \]
          4. lower-*.f64N/A

            \[\leadsto x + \mathsf{fma}\left(-1, \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z}, \frac{692910599291889}{10000000000000000} \cdot y\right) \]
          5. lower-*.f64N/A

            \[\leadsto x + \mathsf{fma}\left(-1, \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z}, \frac{692910599291889}{10000000000000000} \cdot y\right) \]
          6. lower-*.f6465.2%

            \[\leadsto x + \mathsf{fma}\left(-1, \frac{-0.4917317610505968 \cdot y - -0.4166096748901212 \cdot y}{z}, 0.0692910599291889 \cdot y\right) \]
        4. Applied rewrites65.2%

          \[\leadsto x + \color{blue}{\mathsf{fma}\left(-1, \frac{-0.4917317610505968 \cdot y - -0.4166096748901212 \cdot y}{z}, 0.0692910599291889 \cdot y\right)} \]
        5. Step-by-step derivation
          1. lift-fma.f64N/A

            \[\leadsto x + \left(-1 \cdot \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z} + \color{blue}{\frac{692910599291889}{10000000000000000} \cdot y}\right) \]
          2. lift-*.f64N/A

            \[\leadsto x + \left(-1 \cdot \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z} + \frac{692910599291889}{10000000000000000} \cdot \color{blue}{y}\right) \]
          3. fp-cancel-sign-sub-invN/A

            \[\leadsto x + \left(-1 \cdot \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z} - \color{blue}{\left(\mathsf{neg}\left(\frac{692910599291889}{10000000000000000}\right)\right) \cdot y}\right) \]
          4. sub-to-multN/A

            \[\leadsto x + \left(1 - \frac{\left(\mathsf{neg}\left(\frac{692910599291889}{10000000000000000}\right)\right) \cdot y}{-1 \cdot \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z}}\right) \cdot \color{blue}{\left(-1 \cdot \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z}\right)} \]
          5. lower-unsound-*.f64N/A

            \[\leadsto x + \left(1 - \frac{\left(\mathsf{neg}\left(\frac{692910599291889}{10000000000000000}\right)\right) \cdot y}{-1 \cdot \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z}}\right) \cdot \color{blue}{\left(-1 \cdot \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z}\right)} \]
        6. Applied rewrites53.5%

          \[\leadsto x + \left(1 - \frac{-0.0692910599291889 \cdot y}{\frac{y \cdot 0.07512208616047561}{z}}\right) \cdot \color{blue}{\frac{y \cdot 0.07512208616047561}{z}} \]
        7. Step-by-step derivation
          1. lift-+.f64N/A

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

            \[\leadsto \color{blue}{\left(1 - \frac{\frac{-692910599291889}{10000000000000000} \cdot y}{\frac{y \cdot \frac{751220861604756070699018739433}{10000000000000000000000000000000}}{z}}\right) \cdot \frac{y \cdot \frac{751220861604756070699018739433}{10000000000000000000000000000000}}{z} + x} \]
          3. lower-+.f6453.5%

            \[\leadsto \color{blue}{\left(1 - \frac{-0.0692910599291889 \cdot y}{\frac{y \cdot 0.07512208616047561}{z}}\right) \cdot \frac{y \cdot 0.07512208616047561}{z} + x} \]
        8. Applied rewrites65.2%

          \[\leadsto \color{blue}{y \cdot \left(\frac{0.07512208616047561}{z} - -0.0692910599291889\right) + x} \]
      4. Recombined 3 regimes into one program.
      5. Add Preprocessing

      Alternative 3: 98.4% accurate, 1.8× speedup?

      \[\begin{array}{l} t_0 := x + 0.0692910599291889 \cdot y\\ \mathbf{if}\;z \leq -2350000000:\\ \;\;\;\;t\_0\\ \mathbf{elif}\;z \leq 3.8 \cdot 10^{-22}:\\ \;\;\;\;\mathsf{fma}\left(\frac{0.279195317918525}{3.350343815022304}, y, x\right)\\ \mathbf{else}:\\ \;\;\;\;t\_0\\ \end{array} \]
      (FPCore (x y z)
       :precision binary64
       (let* ((t_0 (+ x (* 0.0692910599291889 y))))
         (if (<= z -2350000000.0)
           t_0
           (if (<= z 3.8e-22)
             (fma (/ 0.279195317918525 3.350343815022304) y x)
             t_0))))
      double code(double x, double y, double z) {
      	double t_0 = x + (0.0692910599291889 * y);
      	double tmp;
      	if (z <= -2350000000.0) {
      		tmp = t_0;
      	} else if (z <= 3.8e-22) {
      		tmp = fma((0.279195317918525 / 3.350343815022304), y, x);
      	} else {
      		tmp = t_0;
      	}
      	return tmp;
      }
      
      function code(x, y, z)
      	t_0 = Float64(x + Float64(0.0692910599291889 * y))
      	tmp = 0.0
      	if (z <= -2350000000.0)
      		tmp = t_0;
      	elseif (z <= 3.8e-22)
      		tmp = fma(Float64(0.279195317918525 / 3.350343815022304), y, x);
      	else
      		tmp = t_0;
      	end
      	return tmp
      end
      
      code[x_, y_, z_] := Block[{t$95$0 = N[(x + N[(0.0692910599291889 * y), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[z, -2350000000.0], t$95$0, If[LessEqual[z, 3.8e-22], N[(N[(0.279195317918525 / 3.350343815022304), $MachinePrecision] * y + x), $MachinePrecision], t$95$0]]]
      
      \begin{array}{l}
      t_0 := x + 0.0692910599291889 \cdot y\\
      \mathbf{if}\;z \leq -2350000000:\\
      \;\;\;\;t\_0\\
      
      \mathbf{elif}\;z \leq 3.8 \cdot 10^{-22}:\\
      \;\;\;\;\mathsf{fma}\left(\frac{0.279195317918525}{3.350343815022304}, y, x\right)\\
      
      \mathbf{else}:\\
      \;\;\;\;t\_0\\
      
      
      \end{array}
      
      Derivation
      1. Split input into 2 regimes
      2. if z < -2.35e9 or 3.80000000000000023e-22 < z

        1. Initial program 69.6%

          \[x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304} \]
        2. Taylor expanded in z around inf

          \[\leadsto x + \color{blue}{\frac{692910599291889}{10000000000000000} \cdot y} \]
        3. Step-by-step derivation
          1. lower-*.f6479.6%

            \[\leadsto x + 0.0692910599291889 \cdot \color{blue}{y} \]
        4. Applied rewrites79.6%

          \[\leadsto x + \color{blue}{0.0692910599291889 \cdot y} \]

        if -2.35e9 < z < 3.80000000000000023e-22

        1. Initial program 69.6%

          \[x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304} \]
        2. Taylor expanded in z around 0

          \[\leadsto x + \frac{y \cdot \color{blue}{\frac{11167812716741}{40000000000000}}}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304} \]
        3. Step-by-step derivation
          1. Applied rewrites75.8%

            \[\leadsto x + \frac{y \cdot \color{blue}{0.279195317918525}}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304} \]
          2. Taylor expanded in z around 0

            \[\leadsto x + \frac{y \cdot 0.279195317918525}{\color{blue}{\frac{104698244219447}{31250000000000}}} \]
          3. Step-by-step derivation
            1. Applied rewrites80.1%

              \[\leadsto x + \frac{y \cdot 0.279195317918525}{\color{blue}{3.350343815022304}} \]
            2. Step-by-step derivation
              1. lift-+.f64N/A

                \[\leadsto \color{blue}{x + \frac{y \cdot \frac{11167812716741}{40000000000000}}{\frac{104698244219447}{31250000000000}}} \]
              2. +-commutativeN/A

                \[\leadsto \color{blue}{\frac{y \cdot \frac{11167812716741}{40000000000000}}{\frac{104698244219447}{31250000000000}} + x} \]
              3. lift-/.f64N/A

                \[\leadsto \color{blue}{\frac{y \cdot \frac{11167812716741}{40000000000000}}{\frac{104698244219447}{31250000000000}}} + x \]
              4. lift-*.f64N/A

                \[\leadsto \frac{\color{blue}{y \cdot \frac{11167812716741}{40000000000000}}}{\frac{104698244219447}{31250000000000}} + x \]
              5. associate-/l*N/A

                \[\leadsto \color{blue}{y \cdot \frac{\frac{11167812716741}{40000000000000}}{\frac{104698244219447}{31250000000000}}} + x \]
              6. *-commutativeN/A

                \[\leadsto \color{blue}{\frac{\frac{11167812716741}{40000000000000}}{\frac{104698244219447}{31250000000000}} \cdot y} + x \]
              7. lower-fma.f64N/A

                \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{\frac{11167812716741}{40000000000000}}{\frac{104698244219447}{31250000000000}}, y, x\right)} \]
              8. lower-/.f6480.2%

                \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{0.279195317918525}{3.350343815022304}}, y, x\right) \]
            3. Applied rewrites80.2%

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

          Alternative 4: 98.4% accurate, 2.1× speedup?

          \[\begin{array}{l} t_0 := x + 0.0692910599291889 \cdot y\\ \mathbf{if}\;z \leq -2350000000:\\ \;\;\;\;t\_0\\ \mathbf{elif}\;z \leq 3.8 \cdot 10^{-22}:\\ \;\;\;\;x + 0.08333333333333323 \cdot y\\ \mathbf{else}:\\ \;\;\;\;t\_0\\ \end{array} \]
          (FPCore (x y z)
           :precision binary64
           (let* ((t_0 (+ x (* 0.0692910599291889 y))))
             (if (<= z -2350000000.0)
               t_0
               (if (<= z 3.8e-22) (+ x (* 0.08333333333333323 y)) t_0))))
          double code(double x, double y, double z) {
          	double t_0 = x + (0.0692910599291889 * y);
          	double tmp;
          	if (z <= -2350000000.0) {
          		tmp = t_0;
          	} else if (z <= 3.8e-22) {
          		tmp = x + (0.08333333333333323 * y);
          	} else {
          		tmp = t_0;
          	}
          	return tmp;
          }
          
          module fmin_fmax_functions
              implicit none
              private
              public fmax
              public fmin
          
              interface fmax
                  module procedure fmax88
                  module procedure fmax44
                  module procedure fmax84
                  module procedure fmax48
              end interface
              interface fmin
                  module procedure fmin88
                  module procedure fmin44
                  module procedure fmin84
                  module procedure fmin48
              end interface
          contains
              real(8) function fmax88(x, y) result (res)
                  real(8), intent (in) :: x
                  real(8), intent (in) :: y
                  res = merge(y, merge(x, max(x, y), y /= y), x /= x)
              end function
              real(4) function fmax44(x, y) result (res)
                  real(4), intent (in) :: x
                  real(4), intent (in) :: y
                  res = merge(y, merge(x, max(x, y), y /= y), x /= x)
              end function
              real(8) function fmax84(x, y) result(res)
                  real(8), intent (in) :: x
                  real(4), intent (in) :: y
                  res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
              end function
              real(8) function fmax48(x, y) result(res)
                  real(4), intent (in) :: x
                  real(8), intent (in) :: y
                  res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
              end function
              real(8) function fmin88(x, y) result (res)
                  real(8), intent (in) :: x
                  real(8), intent (in) :: y
                  res = merge(y, merge(x, min(x, y), y /= y), x /= x)
              end function
              real(4) function fmin44(x, y) result (res)
                  real(4), intent (in) :: x
                  real(4), intent (in) :: y
                  res = merge(y, merge(x, min(x, y), y /= y), x /= x)
              end function
              real(8) function fmin84(x, y) result(res)
                  real(8), intent (in) :: x
                  real(4), intent (in) :: y
                  res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
              end function
              real(8) function fmin48(x, y) result(res)
                  real(4), intent (in) :: x
                  real(8), intent (in) :: y
                  res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
              end function
          end module
          
          real(8) function code(x, y, z)
          use fmin_fmax_functions
              real(8), intent (in) :: x
              real(8), intent (in) :: y
              real(8), intent (in) :: z
              real(8) :: t_0
              real(8) :: tmp
              t_0 = x + (0.0692910599291889d0 * y)
              if (z <= (-2350000000.0d0)) then
                  tmp = t_0
              else if (z <= 3.8d-22) then
                  tmp = x + (0.08333333333333323d0 * y)
              else
                  tmp = t_0
              end if
              code = tmp
          end function
          
          public static double code(double x, double y, double z) {
          	double t_0 = x + (0.0692910599291889 * y);
          	double tmp;
          	if (z <= -2350000000.0) {
          		tmp = t_0;
          	} else if (z <= 3.8e-22) {
          		tmp = x + (0.08333333333333323 * y);
          	} else {
          		tmp = t_0;
          	}
          	return tmp;
          }
          
          def code(x, y, z):
          	t_0 = x + (0.0692910599291889 * y)
          	tmp = 0
          	if z <= -2350000000.0:
          		tmp = t_0
          	elif z <= 3.8e-22:
          		tmp = x + (0.08333333333333323 * y)
          	else:
          		tmp = t_0
          	return tmp
          
          function code(x, y, z)
          	t_0 = Float64(x + Float64(0.0692910599291889 * y))
          	tmp = 0.0
          	if (z <= -2350000000.0)
          		tmp = t_0;
          	elseif (z <= 3.8e-22)
          		tmp = Float64(x + Float64(0.08333333333333323 * y));
          	else
          		tmp = t_0;
          	end
          	return tmp
          end
          
          function tmp_2 = code(x, y, z)
          	t_0 = x + (0.0692910599291889 * y);
          	tmp = 0.0;
          	if (z <= -2350000000.0)
          		tmp = t_0;
          	elseif (z <= 3.8e-22)
          		tmp = x + (0.08333333333333323 * y);
          	else
          		tmp = t_0;
          	end
          	tmp_2 = tmp;
          end
          
          code[x_, y_, z_] := Block[{t$95$0 = N[(x + N[(0.0692910599291889 * y), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[z, -2350000000.0], t$95$0, If[LessEqual[z, 3.8e-22], N[(x + N[(0.08333333333333323 * y), $MachinePrecision]), $MachinePrecision], t$95$0]]]
          
          \begin{array}{l}
          t_0 := x + 0.0692910599291889 \cdot y\\
          \mathbf{if}\;z \leq -2350000000:\\
          \;\;\;\;t\_0\\
          
          \mathbf{elif}\;z \leq 3.8 \cdot 10^{-22}:\\
          \;\;\;\;x + 0.08333333333333323 \cdot y\\
          
          \mathbf{else}:\\
          \;\;\;\;t\_0\\
          
          
          \end{array}
          
          Derivation
          1. Split input into 2 regimes
          2. if z < -2.35e9 or 3.80000000000000023e-22 < z

            1. Initial program 69.6%

              \[x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304} \]
            2. Taylor expanded in z around inf

              \[\leadsto x + \color{blue}{\frac{692910599291889}{10000000000000000} \cdot y} \]
            3. Step-by-step derivation
              1. lower-*.f6479.6%

                \[\leadsto x + 0.0692910599291889 \cdot \color{blue}{y} \]
            4. Applied rewrites79.6%

              \[\leadsto x + \color{blue}{0.0692910599291889 \cdot y} \]

            if -2.35e9 < z < 3.80000000000000023e-22

            1. Initial program 69.6%

              \[x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304} \]
            2. Taylor expanded in z around 0

              \[\leadsto x + \color{blue}{\frac{279195317918525}{3350343815022304} \cdot y} \]
            3. Step-by-step derivation
              1. lower-*.f6480.2%

                \[\leadsto x + 0.08333333333333323 \cdot \color{blue}{y} \]
            4. Applied rewrites80.2%

              \[\leadsto x + \color{blue}{0.08333333333333323 \cdot y} \]
          3. Recombined 2 regimes into one program.
          4. Add Preprocessing

          Alternative 5: 98.4% accurate, 0.4× speedup?

          \[\begin{array}{l} \mathbf{if}\;x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304} \leq 5 \cdot 10^{+304}:\\ \;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(z \cdot z, 0.0692910599291889, \mathsf{fma}\left(0.4917317610505968, z, 0.279195317918525\right)\right), \frac{y}{\mathsf{fma}\left(z - -6.012459259764103, z, 3.350343815022304\right)}, x\right)\\ \mathbf{else}:\\ \;\;\;\;x + \frac{\frac{y \cdot \left(\frac{0.07512208616047561}{z} - -0.0692910599291889\right)}{0.07512208616047561 \cdot y} \cdot \left(0.07512208616047561 \cdot y\right)}{\frac{1}{z} \cdot z}\\ \end{array} \]
          (FPCore (x y z)
           :precision binary64
           (if (<=
                (+
                 x
                 (/
                  (*
                   y
                   (+
                    (* (+ (* z 0.0692910599291889) 0.4917317610505968) z)
                    0.279195317918525))
                  (+ (* (+ z 6.012459259764103) z) 3.350343815022304)))
                5e+304)
             (fma
              (fma
               (* z z)
               0.0692910599291889
               (fma 0.4917317610505968 z 0.279195317918525))
              (/ y (fma (- z -6.012459259764103) z 3.350343815022304))
              x)
             (+
              x
              (/
               (*
                (/
                 (* y (- (/ 0.07512208616047561 z) -0.0692910599291889))
                 (* 0.07512208616047561 y))
                (* 0.07512208616047561 y))
               (* (/ 1.0 z) z)))))
          double code(double x, double y, double z) {
          	double tmp;
          	if ((x + ((y * ((((z * 0.0692910599291889) + 0.4917317610505968) * z) + 0.279195317918525)) / (((z + 6.012459259764103) * z) + 3.350343815022304))) <= 5e+304) {
          		tmp = fma(fma((z * z), 0.0692910599291889, fma(0.4917317610505968, z, 0.279195317918525)), (y / fma((z - -6.012459259764103), z, 3.350343815022304)), x);
          	} else {
          		tmp = x + ((((y * ((0.07512208616047561 / z) - -0.0692910599291889)) / (0.07512208616047561 * y)) * (0.07512208616047561 * y)) / ((1.0 / z) * z));
          	}
          	return tmp;
          }
          
          function code(x, y, z)
          	tmp = 0.0
          	if (Float64(x + Float64(Float64(y * Float64(Float64(Float64(Float64(z * 0.0692910599291889) + 0.4917317610505968) * z) + 0.279195317918525)) / Float64(Float64(Float64(z + 6.012459259764103) * z) + 3.350343815022304))) <= 5e+304)
          		tmp = fma(fma(Float64(z * z), 0.0692910599291889, fma(0.4917317610505968, z, 0.279195317918525)), Float64(y / fma(Float64(z - -6.012459259764103), z, 3.350343815022304)), x);
          	else
          		tmp = Float64(x + Float64(Float64(Float64(Float64(y * Float64(Float64(0.07512208616047561 / z) - -0.0692910599291889)) / Float64(0.07512208616047561 * y)) * Float64(0.07512208616047561 * y)) / Float64(Float64(1.0 / z) * z)));
          	end
          	return tmp
          end
          
          code[x_, y_, z_] := If[LessEqual[N[(x + N[(N[(y * N[(N[(N[(N[(z * 0.0692910599291889), $MachinePrecision] + 0.4917317610505968), $MachinePrecision] * z), $MachinePrecision] + 0.279195317918525), $MachinePrecision]), $MachinePrecision] / N[(N[(N[(z + 6.012459259764103), $MachinePrecision] * z), $MachinePrecision] + 3.350343815022304), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], 5e+304], N[(N[(N[(z * z), $MachinePrecision] * 0.0692910599291889 + N[(0.4917317610505968 * z + 0.279195317918525), $MachinePrecision]), $MachinePrecision] * N[(y / N[(N[(z - -6.012459259764103), $MachinePrecision] * z + 3.350343815022304), $MachinePrecision]), $MachinePrecision] + x), $MachinePrecision], N[(x + N[(N[(N[(N[(y * N[(N[(0.07512208616047561 / z), $MachinePrecision] - -0.0692910599291889), $MachinePrecision]), $MachinePrecision] / N[(0.07512208616047561 * y), $MachinePrecision]), $MachinePrecision] * N[(0.07512208616047561 * y), $MachinePrecision]), $MachinePrecision] / N[(N[(1.0 / z), $MachinePrecision] * z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
          
          \begin{array}{l}
          \mathbf{if}\;x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304} \leq 5 \cdot 10^{+304}:\\
          \;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(z \cdot z, 0.0692910599291889, \mathsf{fma}\left(0.4917317610505968, z, 0.279195317918525\right)\right), \frac{y}{\mathsf{fma}\left(z - -6.012459259764103, z, 3.350343815022304\right)}, x\right)\\
          
          \mathbf{else}:\\
          \;\;\;\;x + \frac{\frac{y \cdot \left(\frac{0.07512208616047561}{z} - -0.0692910599291889\right)}{0.07512208616047561 \cdot y} \cdot \left(0.07512208616047561 \cdot y\right)}{\frac{1}{z} \cdot z}\\
          
          
          \end{array}
          
          Derivation
          1. Split input into 2 regimes
          2. if (+.f64 x (/.f64 (*.f64 y (+.f64 (*.f64 (+.f64 (*.f64 z #s(literal 692910599291889/10000000000000000 binary64)) #s(literal 307332350656623/625000000000000 binary64)) z) #s(literal 11167812716741/40000000000000 binary64))) (+.f64 (*.f64 (+.f64 z #s(literal 6012459259764103/1000000000000000 binary64)) z) #s(literal 104698244219447/31250000000000 binary64)))) < 4.9999999999999997e304

            1. Initial program 69.6%

              \[x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304} \]
            2. Step-by-step derivation
              1. lift-+.f64N/A

                \[\leadsto \color{blue}{x + \frac{y \cdot \left(\left(z \cdot \frac{692910599291889}{10000000000000000} + \frac{307332350656623}{625000000000000}\right) \cdot z + \frac{11167812716741}{40000000000000}\right)}{\left(z + \frac{6012459259764103}{1000000000000000}\right) \cdot z + \frac{104698244219447}{31250000000000}}} \]
              2. +-commutativeN/A

                \[\leadsto \color{blue}{\frac{y \cdot \left(\left(z \cdot \frac{692910599291889}{10000000000000000} + \frac{307332350656623}{625000000000000}\right) \cdot z + \frac{11167812716741}{40000000000000}\right)}{\left(z + \frac{6012459259764103}{1000000000000000}\right) \cdot z + \frac{104698244219447}{31250000000000}} + x} \]
              3. lift-/.f64N/A

                \[\leadsto \color{blue}{\frac{y \cdot \left(\left(z \cdot \frac{692910599291889}{10000000000000000} + \frac{307332350656623}{625000000000000}\right) \cdot z + \frac{11167812716741}{40000000000000}\right)}{\left(z + \frac{6012459259764103}{1000000000000000}\right) \cdot z + \frac{104698244219447}{31250000000000}}} + x \]
              4. mult-flipN/A

                \[\leadsto \color{blue}{\left(y \cdot \left(\left(z \cdot \frac{692910599291889}{10000000000000000} + \frac{307332350656623}{625000000000000}\right) \cdot z + \frac{11167812716741}{40000000000000}\right)\right) \cdot \frac{1}{\left(z + \frac{6012459259764103}{1000000000000000}\right) \cdot z + \frac{104698244219447}{31250000000000}}} + x \]
              5. lift-*.f64N/A

                \[\leadsto \color{blue}{\left(y \cdot \left(\left(z \cdot \frac{692910599291889}{10000000000000000} + \frac{307332350656623}{625000000000000}\right) \cdot z + \frac{11167812716741}{40000000000000}\right)\right)} \cdot \frac{1}{\left(z + \frac{6012459259764103}{1000000000000000}\right) \cdot z + \frac{104698244219447}{31250000000000}} + x \]
              6. *-commutativeN/A

                \[\leadsto \color{blue}{\left(\left(\left(z \cdot \frac{692910599291889}{10000000000000000} + \frac{307332350656623}{625000000000000}\right) \cdot z + \frac{11167812716741}{40000000000000}\right) \cdot y\right)} \cdot \frac{1}{\left(z + \frac{6012459259764103}{1000000000000000}\right) \cdot z + \frac{104698244219447}{31250000000000}} + x \]
              7. associate-*l*N/A

                \[\leadsto \color{blue}{\left(\left(z \cdot \frac{692910599291889}{10000000000000000} + \frac{307332350656623}{625000000000000}\right) \cdot z + \frac{11167812716741}{40000000000000}\right) \cdot \left(y \cdot \frac{1}{\left(z + \frac{6012459259764103}{1000000000000000}\right) \cdot z + \frac{104698244219447}{31250000000000}}\right)} + x \]
              8. lower-fma.f64N/A

                \[\leadsto \color{blue}{\mathsf{fma}\left(\left(z \cdot \frac{692910599291889}{10000000000000000} + \frac{307332350656623}{625000000000000}\right) \cdot z + \frac{11167812716741}{40000000000000}, y \cdot \frac{1}{\left(z + \frac{6012459259764103}{1000000000000000}\right) \cdot z + \frac{104698244219447}{31250000000000}}, x\right)} \]
            3. Applied rewrites74.1%

              \[\leadsto \color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(0.0692910599291889, z, 0.4917317610505968\right), z, 0.279195317918525\right), \frac{y}{\mathsf{fma}\left(z - -6.012459259764103, z, 3.350343815022304\right)}, x\right)} \]
            4. Step-by-step derivation
              1. lift-fma.f64N/A

                \[\leadsto \mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(\frac{692910599291889}{10000000000000000}, z, \frac{307332350656623}{625000000000000}\right) \cdot z + \frac{11167812716741}{40000000000000}}, \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              2. lift-*.f64N/A

                \[\leadsto \mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(\frac{692910599291889}{10000000000000000}, z, \frac{307332350656623}{625000000000000}\right) \cdot z} + \frac{11167812716741}{40000000000000}, \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              3. add-flipN/A

                \[\leadsto \mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(\frac{692910599291889}{10000000000000000}, z, \frac{307332350656623}{625000000000000}\right) \cdot z - \left(\mathsf{neg}\left(\frac{11167812716741}{40000000000000}\right)\right)}, \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              4. lift-*.f64N/A

                \[\leadsto \mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(\frac{692910599291889}{10000000000000000}, z, \frac{307332350656623}{625000000000000}\right) \cdot z} - \left(\mathsf{neg}\left(\frac{11167812716741}{40000000000000}\right)\right), \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              5. *-commutativeN/A

                \[\leadsto \mathsf{fma}\left(\color{blue}{z \cdot \mathsf{fma}\left(\frac{692910599291889}{10000000000000000}, z, \frac{307332350656623}{625000000000000}\right)} - \left(\mathsf{neg}\left(\frac{11167812716741}{40000000000000}\right)\right), \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              6. lift-fma.f64N/A

                \[\leadsto \mathsf{fma}\left(z \cdot \color{blue}{\left(\frac{692910599291889}{10000000000000000} \cdot z + \frac{307332350656623}{625000000000000}\right)} - \left(\mathsf{neg}\left(\frac{11167812716741}{40000000000000}\right)\right), \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              7. add-flipN/A

                \[\leadsto \mathsf{fma}\left(z \cdot \color{blue}{\left(\frac{692910599291889}{10000000000000000} \cdot z - \left(\mathsf{neg}\left(\frac{307332350656623}{625000000000000}\right)\right)\right)} - \left(\mathsf{neg}\left(\frac{11167812716741}{40000000000000}\right)\right), \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              8. *-commutativeN/A

                \[\leadsto \mathsf{fma}\left(z \cdot \left(\color{blue}{z \cdot \frac{692910599291889}{10000000000000000}} - \left(\mathsf{neg}\left(\frac{307332350656623}{625000000000000}\right)\right)\right) - \left(\mathsf{neg}\left(\frac{11167812716741}{40000000000000}\right)\right), \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              9. add-flipN/A

                \[\leadsto \mathsf{fma}\left(z \cdot \color{blue}{\left(z \cdot \frac{692910599291889}{10000000000000000} + \frac{307332350656623}{625000000000000}\right)} - \left(\mathsf{neg}\left(\frac{11167812716741}{40000000000000}\right)\right), \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              10. distribute-lft-outN/A

                \[\leadsto \mathsf{fma}\left(\color{blue}{\left(z \cdot \left(z \cdot \frac{692910599291889}{10000000000000000}\right) + z \cdot \frac{307332350656623}{625000000000000}\right)} - \left(\mathsf{neg}\left(\frac{11167812716741}{40000000000000}\right)\right), \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              11. associate-*l*N/A

                \[\leadsto \mathsf{fma}\left(\left(\color{blue}{\left(z \cdot z\right) \cdot \frac{692910599291889}{10000000000000000}} + z \cdot \frac{307332350656623}{625000000000000}\right) - \left(\mathsf{neg}\left(\frac{11167812716741}{40000000000000}\right)\right), \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              12. lift-*.f64N/A

                \[\leadsto \mathsf{fma}\left(\left(\color{blue}{\left(z \cdot z\right)} \cdot \frac{692910599291889}{10000000000000000} + z \cdot \frac{307332350656623}{625000000000000}\right) - \left(\mathsf{neg}\left(\frac{11167812716741}{40000000000000}\right)\right), \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              13. *-commutativeN/A

                \[\leadsto \mathsf{fma}\left(\left(\left(z \cdot z\right) \cdot \frac{692910599291889}{10000000000000000} + \color{blue}{\frac{307332350656623}{625000000000000} \cdot z}\right) - \left(\mathsf{neg}\left(\frac{11167812716741}{40000000000000}\right)\right), \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              14. metadata-evalN/A

                \[\leadsto \mathsf{fma}\left(\left(\left(z \cdot z\right) \cdot \frac{692910599291889}{10000000000000000} + \frac{307332350656623}{625000000000000} \cdot z\right) - \color{blue}{\frac{-11167812716741}{40000000000000}}, \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              15. associate-+r-N/A

                \[\leadsto \mathsf{fma}\left(\color{blue}{\left(z \cdot z\right) \cdot \frac{692910599291889}{10000000000000000} + \left(\frac{307332350656623}{625000000000000} \cdot z - \frac{-11167812716741}{40000000000000}\right)}, \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              16. metadata-evalN/A

                \[\leadsto \mathsf{fma}\left(\left(z \cdot z\right) \cdot \frac{692910599291889}{10000000000000000} + \left(\frac{307332350656623}{625000000000000} \cdot z - \color{blue}{\left(\mathsf{neg}\left(\frac{11167812716741}{40000000000000}\right)\right)}\right), \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              17. add-flipN/A

                \[\leadsto \mathsf{fma}\left(\left(z \cdot z\right) \cdot \frac{692910599291889}{10000000000000000} + \color{blue}{\left(\frac{307332350656623}{625000000000000} \cdot z + \frac{11167812716741}{40000000000000}\right)}, \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              18. lift-fma.f64N/A

                \[\leadsto \mathsf{fma}\left(\left(z \cdot z\right) \cdot \frac{692910599291889}{10000000000000000} + \color{blue}{\mathsf{fma}\left(\frac{307332350656623}{625000000000000}, z, \frac{11167812716741}{40000000000000}\right)}, \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              19. lift-fma.f6474.0%

                \[\leadsto \mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(z \cdot z, 0.0692910599291889, \mathsf{fma}\left(0.4917317610505968, z, 0.279195317918525\right)\right)}, \frac{y}{\mathsf{fma}\left(z - -6.012459259764103, z, 3.350343815022304\right)}, x\right) \]
            5. Applied rewrites74.0%

              \[\leadsto \mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(z \cdot z, 0.0692910599291889, \mathsf{fma}\left(0.4917317610505968, z, 0.279195317918525\right)\right)}, \frac{y}{\mathsf{fma}\left(z - -6.012459259764103, z, 3.350343815022304\right)}, x\right) \]

            if 4.9999999999999997e304 < (+.f64 x (/.f64 (*.f64 y (+.f64 (*.f64 (+.f64 (*.f64 z #s(literal 692910599291889/10000000000000000 binary64)) #s(literal 307332350656623/625000000000000 binary64)) z) #s(literal 11167812716741/40000000000000 binary64))) (+.f64 (*.f64 (+.f64 z #s(literal 6012459259764103/1000000000000000 binary64)) z) #s(literal 104698244219447/31250000000000 binary64))))

            1. Initial program 69.6%

              \[x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304} \]
            2. Taylor expanded in z around -inf

              \[\leadsto x + \color{blue}{\left(-1 \cdot \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z} + \frac{692910599291889}{10000000000000000} \cdot y\right)} \]
            3. Step-by-step derivation
              1. lower-fma.f64N/A

                \[\leadsto x + \mathsf{fma}\left(-1, \color{blue}{\frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z}}, \frac{692910599291889}{10000000000000000} \cdot y\right) \]
              2. lower-/.f64N/A

                \[\leadsto x + \mathsf{fma}\left(-1, \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{\color{blue}{z}}, \frac{692910599291889}{10000000000000000} \cdot y\right) \]
              3. lower--.f64N/A

                \[\leadsto x + \mathsf{fma}\left(-1, \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z}, \frac{692910599291889}{10000000000000000} \cdot y\right) \]
              4. lower-*.f64N/A

                \[\leadsto x + \mathsf{fma}\left(-1, \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z}, \frac{692910599291889}{10000000000000000} \cdot y\right) \]
              5. lower-*.f64N/A

                \[\leadsto x + \mathsf{fma}\left(-1, \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z}, \frac{692910599291889}{10000000000000000} \cdot y\right) \]
              6. lower-*.f6465.2%

                \[\leadsto x + \mathsf{fma}\left(-1, \frac{-0.4917317610505968 \cdot y - -0.4166096748901212 \cdot y}{z}, 0.0692910599291889 \cdot y\right) \]
            4. Applied rewrites65.2%

              \[\leadsto x + \color{blue}{\mathsf{fma}\left(-1, \frac{-0.4917317610505968 \cdot y - -0.4166096748901212 \cdot y}{z}, 0.0692910599291889 \cdot y\right)} \]
            5. Step-by-step derivation
              1. lift-fma.f64N/A

                \[\leadsto x + \left(-1 \cdot \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z} + \color{blue}{\frac{692910599291889}{10000000000000000} \cdot y}\right) \]
              2. lift-*.f64N/A

                \[\leadsto x + \left(-1 \cdot \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z} + \frac{692910599291889}{10000000000000000} \cdot \color{blue}{y}\right) \]
              3. fp-cancel-sign-sub-invN/A

                \[\leadsto x + \left(-1 \cdot \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z} - \color{blue}{\left(\mathsf{neg}\left(\frac{692910599291889}{10000000000000000}\right)\right) \cdot y}\right) \]
              4. sub-to-multN/A

                \[\leadsto x + \left(1 - \frac{\left(\mathsf{neg}\left(\frac{692910599291889}{10000000000000000}\right)\right) \cdot y}{-1 \cdot \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z}}\right) \cdot \color{blue}{\left(-1 \cdot \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z}\right)} \]
              5. lower-unsound-*.f64N/A

                \[\leadsto x + \left(1 - \frac{\left(\mathsf{neg}\left(\frac{692910599291889}{10000000000000000}\right)\right) \cdot y}{-1 \cdot \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z}}\right) \cdot \color{blue}{\left(-1 \cdot \frac{\frac{-307332350656623}{625000000000000} \cdot y - \frac{-4166096748901211929300981260567}{10000000000000000000000000000000} \cdot y}{z}\right)} \]
            6. Applied rewrites53.5%

              \[\leadsto x + \left(1 - \frac{-0.0692910599291889 \cdot y}{\frac{y \cdot 0.07512208616047561}{z}}\right) \cdot \color{blue}{\frac{y \cdot 0.07512208616047561}{z}} \]
            7. Step-by-step derivation
              1. lift-*.f64N/A

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

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

                \[\leadsto x + \left(1 - \frac{\frac{-692910599291889}{10000000000000000} \cdot y}{\frac{y \cdot \frac{751220861604756070699018739433}{10000000000000000000000000000000}}{z}}\right) \cdot \frac{y \cdot \color{blue}{\frac{751220861604756070699018739433}{10000000000000000000000000000000}}}{z} \]
              4. sub-to-fractionN/A

                \[\leadsto x + \frac{1 \cdot \frac{y \cdot \frac{751220861604756070699018739433}{10000000000000000000000000000000}}{z} - \frac{-692910599291889}{10000000000000000} \cdot y}{\frac{y \cdot \frac{751220861604756070699018739433}{10000000000000000000000000000000}}{z}} \cdot \frac{\color{blue}{y \cdot \frac{751220861604756070699018739433}{10000000000000000000000000000000}}}{z} \]
              5. lift-/.f64N/A

                \[\leadsto x + \frac{1 \cdot \frac{y \cdot \frac{751220861604756070699018739433}{10000000000000000000000000000000}}{z} - \frac{-692910599291889}{10000000000000000} \cdot y}{\frac{y \cdot \frac{751220861604756070699018739433}{10000000000000000000000000000000}}{z}} \cdot \frac{y \cdot \color{blue}{\frac{751220861604756070699018739433}{10000000000000000000000000000000}}}{z} \]
              6. mult-flipN/A

                \[\leadsto x + \frac{1 \cdot \frac{y \cdot \frac{751220861604756070699018739433}{10000000000000000000000000000000}}{z} - \frac{-692910599291889}{10000000000000000} \cdot y}{\left(y \cdot \frac{751220861604756070699018739433}{10000000000000000000000000000000}\right) \cdot \frac{1}{z}} \cdot \frac{y \cdot \color{blue}{\frac{751220861604756070699018739433}{10000000000000000000000000000000}}}{z} \]
              7. associate-/r*N/A

                \[\leadsto x + \frac{\frac{1 \cdot \frac{y \cdot \frac{751220861604756070699018739433}{10000000000000000000000000000000}}{z} - \frac{-692910599291889}{10000000000000000} \cdot y}{y \cdot \frac{751220861604756070699018739433}{10000000000000000000000000000000}}}{\frac{1}{z}} \cdot \frac{\color{blue}{y \cdot \frac{751220861604756070699018739433}{10000000000000000000000000000000}}}{z} \]
              8. lift-/.f64N/A

                \[\leadsto x + \frac{\frac{1 \cdot \frac{y \cdot \frac{751220861604756070699018739433}{10000000000000000000000000000000}}{z} - \frac{-692910599291889}{10000000000000000} \cdot y}{y \cdot \frac{751220861604756070699018739433}{10000000000000000000000000000000}}}{\frac{1}{z}} \cdot \frac{y \cdot \frac{751220861604756070699018739433}{10000000000000000000000000000000}}{\color{blue}{z}} \]
              9. frac-timesN/A

                \[\leadsto x + \frac{\frac{1 \cdot \frac{y \cdot \frac{751220861604756070699018739433}{10000000000000000000000000000000}}{z} - \frac{-692910599291889}{10000000000000000} \cdot y}{y \cdot \frac{751220861604756070699018739433}{10000000000000000000000000000000}} \cdot \left(y \cdot \frac{751220861604756070699018739433}{10000000000000000000000000000000}\right)}{\color{blue}{\frac{1}{z} \cdot z}} \]
              10. lower-/.f64N/A

                \[\leadsto x + \frac{\frac{1 \cdot \frac{y \cdot \frac{751220861604756070699018739433}{10000000000000000000000000000000}}{z} - \frac{-692910599291889}{10000000000000000} \cdot y}{y \cdot \frac{751220861604756070699018739433}{10000000000000000000000000000000}} \cdot \left(y \cdot \frac{751220861604756070699018739433}{10000000000000000000000000000000}\right)}{\color{blue}{\frac{1}{z} \cdot z}} \]
            8. Applied rewrites65.2%

              \[\leadsto x + \frac{\frac{y \cdot \left(\frac{0.07512208616047561}{z} - -0.0692910599291889\right)}{0.07512208616047561 \cdot y} \cdot \left(0.07512208616047561 \cdot y\right)}{\color{blue}{\frac{1}{z} \cdot z}} \]
          3. Recombined 2 regimes into one program.
          4. Add Preprocessing

          Alternative 6: 98.3% accurate, 0.5× speedup?

          \[\begin{array}{l} \mathbf{if}\;x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304} \leq 5 \cdot 10^{+297}:\\ \;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(z \cdot z, 0.0692910599291889, \mathsf{fma}\left(0.4917317610505968, z, 0.279195317918525\right)\right), \frac{y}{\mathsf{fma}\left(z - -6.012459259764103, z, 3.350343815022304\right)}, x\right)\\ \mathbf{else}:\\ \;\;\;\;x + 0.0692910599291889 \cdot y\\ \end{array} \]
          (FPCore (x y z)
           :precision binary64
           (if (<=
                (+
                 x
                 (/
                  (*
                   y
                   (+
                    (* (+ (* z 0.0692910599291889) 0.4917317610505968) z)
                    0.279195317918525))
                  (+ (* (+ z 6.012459259764103) z) 3.350343815022304)))
                5e+297)
             (fma
              (fma
               (* z z)
               0.0692910599291889
               (fma 0.4917317610505968 z 0.279195317918525))
              (/ y (fma (- z -6.012459259764103) z 3.350343815022304))
              x)
             (+ x (* 0.0692910599291889 y))))
          double code(double x, double y, double z) {
          	double tmp;
          	if ((x + ((y * ((((z * 0.0692910599291889) + 0.4917317610505968) * z) + 0.279195317918525)) / (((z + 6.012459259764103) * z) + 3.350343815022304))) <= 5e+297) {
          		tmp = fma(fma((z * z), 0.0692910599291889, fma(0.4917317610505968, z, 0.279195317918525)), (y / fma((z - -6.012459259764103), z, 3.350343815022304)), x);
          	} else {
          		tmp = x + (0.0692910599291889 * y);
          	}
          	return tmp;
          }
          
          function code(x, y, z)
          	tmp = 0.0
          	if (Float64(x + Float64(Float64(y * Float64(Float64(Float64(Float64(z * 0.0692910599291889) + 0.4917317610505968) * z) + 0.279195317918525)) / Float64(Float64(Float64(z + 6.012459259764103) * z) + 3.350343815022304))) <= 5e+297)
          		tmp = fma(fma(Float64(z * z), 0.0692910599291889, fma(0.4917317610505968, z, 0.279195317918525)), Float64(y / fma(Float64(z - -6.012459259764103), z, 3.350343815022304)), x);
          	else
          		tmp = Float64(x + Float64(0.0692910599291889 * y));
          	end
          	return tmp
          end
          
          code[x_, y_, z_] := If[LessEqual[N[(x + N[(N[(y * N[(N[(N[(N[(z * 0.0692910599291889), $MachinePrecision] + 0.4917317610505968), $MachinePrecision] * z), $MachinePrecision] + 0.279195317918525), $MachinePrecision]), $MachinePrecision] / N[(N[(N[(z + 6.012459259764103), $MachinePrecision] * z), $MachinePrecision] + 3.350343815022304), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], 5e+297], N[(N[(N[(z * z), $MachinePrecision] * 0.0692910599291889 + N[(0.4917317610505968 * z + 0.279195317918525), $MachinePrecision]), $MachinePrecision] * N[(y / N[(N[(z - -6.012459259764103), $MachinePrecision] * z + 3.350343815022304), $MachinePrecision]), $MachinePrecision] + x), $MachinePrecision], N[(x + N[(0.0692910599291889 * y), $MachinePrecision]), $MachinePrecision]]
          
          \begin{array}{l}
          \mathbf{if}\;x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304} \leq 5 \cdot 10^{+297}:\\
          \;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(z \cdot z, 0.0692910599291889, \mathsf{fma}\left(0.4917317610505968, z, 0.279195317918525\right)\right), \frac{y}{\mathsf{fma}\left(z - -6.012459259764103, z, 3.350343815022304\right)}, x\right)\\
          
          \mathbf{else}:\\
          \;\;\;\;x + 0.0692910599291889 \cdot y\\
          
          
          \end{array}
          
          Derivation
          1. Split input into 2 regimes
          2. if (+.f64 x (/.f64 (*.f64 y (+.f64 (*.f64 (+.f64 (*.f64 z #s(literal 692910599291889/10000000000000000 binary64)) #s(literal 307332350656623/625000000000000 binary64)) z) #s(literal 11167812716741/40000000000000 binary64))) (+.f64 (*.f64 (+.f64 z #s(literal 6012459259764103/1000000000000000 binary64)) z) #s(literal 104698244219447/31250000000000 binary64)))) < 4.9999999999999998e297

            1. Initial program 69.6%

              \[x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304} \]
            2. Step-by-step derivation
              1. lift-+.f64N/A

                \[\leadsto \color{blue}{x + \frac{y \cdot \left(\left(z \cdot \frac{692910599291889}{10000000000000000} + \frac{307332350656623}{625000000000000}\right) \cdot z + \frac{11167812716741}{40000000000000}\right)}{\left(z + \frac{6012459259764103}{1000000000000000}\right) \cdot z + \frac{104698244219447}{31250000000000}}} \]
              2. +-commutativeN/A

                \[\leadsto \color{blue}{\frac{y \cdot \left(\left(z \cdot \frac{692910599291889}{10000000000000000} + \frac{307332350656623}{625000000000000}\right) \cdot z + \frac{11167812716741}{40000000000000}\right)}{\left(z + \frac{6012459259764103}{1000000000000000}\right) \cdot z + \frac{104698244219447}{31250000000000}} + x} \]
              3. lift-/.f64N/A

                \[\leadsto \color{blue}{\frac{y \cdot \left(\left(z \cdot \frac{692910599291889}{10000000000000000} + \frac{307332350656623}{625000000000000}\right) \cdot z + \frac{11167812716741}{40000000000000}\right)}{\left(z + \frac{6012459259764103}{1000000000000000}\right) \cdot z + \frac{104698244219447}{31250000000000}}} + x \]
              4. mult-flipN/A

                \[\leadsto \color{blue}{\left(y \cdot \left(\left(z \cdot \frac{692910599291889}{10000000000000000} + \frac{307332350656623}{625000000000000}\right) \cdot z + \frac{11167812716741}{40000000000000}\right)\right) \cdot \frac{1}{\left(z + \frac{6012459259764103}{1000000000000000}\right) \cdot z + \frac{104698244219447}{31250000000000}}} + x \]
              5. lift-*.f64N/A

                \[\leadsto \color{blue}{\left(y \cdot \left(\left(z \cdot \frac{692910599291889}{10000000000000000} + \frac{307332350656623}{625000000000000}\right) \cdot z + \frac{11167812716741}{40000000000000}\right)\right)} \cdot \frac{1}{\left(z + \frac{6012459259764103}{1000000000000000}\right) \cdot z + \frac{104698244219447}{31250000000000}} + x \]
              6. *-commutativeN/A

                \[\leadsto \color{blue}{\left(\left(\left(z \cdot \frac{692910599291889}{10000000000000000} + \frac{307332350656623}{625000000000000}\right) \cdot z + \frac{11167812716741}{40000000000000}\right) \cdot y\right)} \cdot \frac{1}{\left(z + \frac{6012459259764103}{1000000000000000}\right) \cdot z + \frac{104698244219447}{31250000000000}} + x \]
              7. associate-*l*N/A

                \[\leadsto \color{blue}{\left(\left(z \cdot \frac{692910599291889}{10000000000000000} + \frac{307332350656623}{625000000000000}\right) \cdot z + \frac{11167812716741}{40000000000000}\right) \cdot \left(y \cdot \frac{1}{\left(z + \frac{6012459259764103}{1000000000000000}\right) \cdot z + \frac{104698244219447}{31250000000000}}\right)} + x \]
              8. lower-fma.f64N/A

                \[\leadsto \color{blue}{\mathsf{fma}\left(\left(z \cdot \frac{692910599291889}{10000000000000000} + \frac{307332350656623}{625000000000000}\right) \cdot z + \frac{11167812716741}{40000000000000}, y \cdot \frac{1}{\left(z + \frac{6012459259764103}{1000000000000000}\right) \cdot z + \frac{104698244219447}{31250000000000}}, x\right)} \]
            3. Applied rewrites74.1%

              \[\leadsto \color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(0.0692910599291889, z, 0.4917317610505968\right), z, 0.279195317918525\right), \frac{y}{\mathsf{fma}\left(z - -6.012459259764103, z, 3.350343815022304\right)}, x\right)} \]
            4. Step-by-step derivation
              1. lift-fma.f64N/A

                \[\leadsto \mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(\frac{692910599291889}{10000000000000000}, z, \frac{307332350656623}{625000000000000}\right) \cdot z + \frac{11167812716741}{40000000000000}}, \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              2. lift-*.f64N/A

                \[\leadsto \mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(\frac{692910599291889}{10000000000000000}, z, \frac{307332350656623}{625000000000000}\right) \cdot z} + \frac{11167812716741}{40000000000000}, \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              3. add-flipN/A

                \[\leadsto \mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(\frac{692910599291889}{10000000000000000}, z, \frac{307332350656623}{625000000000000}\right) \cdot z - \left(\mathsf{neg}\left(\frac{11167812716741}{40000000000000}\right)\right)}, \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              4. lift-*.f64N/A

                \[\leadsto \mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(\frac{692910599291889}{10000000000000000}, z, \frac{307332350656623}{625000000000000}\right) \cdot z} - \left(\mathsf{neg}\left(\frac{11167812716741}{40000000000000}\right)\right), \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              5. *-commutativeN/A

                \[\leadsto \mathsf{fma}\left(\color{blue}{z \cdot \mathsf{fma}\left(\frac{692910599291889}{10000000000000000}, z, \frac{307332350656623}{625000000000000}\right)} - \left(\mathsf{neg}\left(\frac{11167812716741}{40000000000000}\right)\right), \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              6. lift-fma.f64N/A

                \[\leadsto \mathsf{fma}\left(z \cdot \color{blue}{\left(\frac{692910599291889}{10000000000000000} \cdot z + \frac{307332350656623}{625000000000000}\right)} - \left(\mathsf{neg}\left(\frac{11167812716741}{40000000000000}\right)\right), \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              7. add-flipN/A

                \[\leadsto \mathsf{fma}\left(z \cdot \color{blue}{\left(\frac{692910599291889}{10000000000000000} \cdot z - \left(\mathsf{neg}\left(\frac{307332350656623}{625000000000000}\right)\right)\right)} - \left(\mathsf{neg}\left(\frac{11167812716741}{40000000000000}\right)\right), \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              8. *-commutativeN/A

                \[\leadsto \mathsf{fma}\left(z \cdot \left(\color{blue}{z \cdot \frac{692910599291889}{10000000000000000}} - \left(\mathsf{neg}\left(\frac{307332350656623}{625000000000000}\right)\right)\right) - \left(\mathsf{neg}\left(\frac{11167812716741}{40000000000000}\right)\right), \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              9. add-flipN/A

                \[\leadsto \mathsf{fma}\left(z \cdot \color{blue}{\left(z \cdot \frac{692910599291889}{10000000000000000} + \frac{307332350656623}{625000000000000}\right)} - \left(\mathsf{neg}\left(\frac{11167812716741}{40000000000000}\right)\right), \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              10. distribute-lft-outN/A

                \[\leadsto \mathsf{fma}\left(\color{blue}{\left(z \cdot \left(z \cdot \frac{692910599291889}{10000000000000000}\right) + z \cdot \frac{307332350656623}{625000000000000}\right)} - \left(\mathsf{neg}\left(\frac{11167812716741}{40000000000000}\right)\right), \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              11. associate-*l*N/A

                \[\leadsto \mathsf{fma}\left(\left(\color{blue}{\left(z \cdot z\right) \cdot \frac{692910599291889}{10000000000000000}} + z \cdot \frac{307332350656623}{625000000000000}\right) - \left(\mathsf{neg}\left(\frac{11167812716741}{40000000000000}\right)\right), \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              12. lift-*.f64N/A

                \[\leadsto \mathsf{fma}\left(\left(\color{blue}{\left(z \cdot z\right)} \cdot \frac{692910599291889}{10000000000000000} + z \cdot \frac{307332350656623}{625000000000000}\right) - \left(\mathsf{neg}\left(\frac{11167812716741}{40000000000000}\right)\right), \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              13. *-commutativeN/A

                \[\leadsto \mathsf{fma}\left(\left(\left(z \cdot z\right) \cdot \frac{692910599291889}{10000000000000000} + \color{blue}{\frac{307332350656623}{625000000000000} \cdot z}\right) - \left(\mathsf{neg}\left(\frac{11167812716741}{40000000000000}\right)\right), \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              14. metadata-evalN/A

                \[\leadsto \mathsf{fma}\left(\left(\left(z \cdot z\right) \cdot \frac{692910599291889}{10000000000000000} + \frac{307332350656623}{625000000000000} \cdot z\right) - \color{blue}{\frac{-11167812716741}{40000000000000}}, \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              15. associate-+r-N/A

                \[\leadsto \mathsf{fma}\left(\color{blue}{\left(z \cdot z\right) \cdot \frac{692910599291889}{10000000000000000} + \left(\frac{307332350656623}{625000000000000} \cdot z - \frac{-11167812716741}{40000000000000}\right)}, \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              16. metadata-evalN/A

                \[\leadsto \mathsf{fma}\left(\left(z \cdot z\right) \cdot \frac{692910599291889}{10000000000000000} + \left(\frac{307332350656623}{625000000000000} \cdot z - \color{blue}{\left(\mathsf{neg}\left(\frac{11167812716741}{40000000000000}\right)\right)}\right), \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              17. add-flipN/A

                \[\leadsto \mathsf{fma}\left(\left(z \cdot z\right) \cdot \frac{692910599291889}{10000000000000000} + \color{blue}{\left(\frac{307332350656623}{625000000000000} \cdot z + \frac{11167812716741}{40000000000000}\right)}, \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              18. lift-fma.f64N/A

                \[\leadsto \mathsf{fma}\left(\left(z \cdot z\right) \cdot \frac{692910599291889}{10000000000000000} + \color{blue}{\mathsf{fma}\left(\frac{307332350656623}{625000000000000}, z, \frac{11167812716741}{40000000000000}\right)}, \frac{y}{\mathsf{fma}\left(z - \frac{-6012459259764103}{1000000000000000}, z, \frac{104698244219447}{31250000000000}\right)}, x\right) \]
              19. lift-fma.f6474.0%

                \[\leadsto \mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(z \cdot z, 0.0692910599291889, \mathsf{fma}\left(0.4917317610505968, z, 0.279195317918525\right)\right)}, \frac{y}{\mathsf{fma}\left(z - -6.012459259764103, z, 3.350343815022304\right)}, x\right) \]
            5. Applied rewrites74.0%

              \[\leadsto \mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(z \cdot z, 0.0692910599291889, \mathsf{fma}\left(0.4917317610505968, z, 0.279195317918525\right)\right)}, \frac{y}{\mathsf{fma}\left(z - -6.012459259764103, z, 3.350343815022304\right)}, x\right) \]

            if 4.9999999999999998e297 < (+.f64 x (/.f64 (*.f64 y (+.f64 (*.f64 (+.f64 (*.f64 z #s(literal 692910599291889/10000000000000000 binary64)) #s(literal 307332350656623/625000000000000 binary64)) z) #s(literal 11167812716741/40000000000000 binary64))) (+.f64 (*.f64 (+.f64 z #s(literal 6012459259764103/1000000000000000 binary64)) z) #s(literal 104698244219447/31250000000000 binary64))))

            1. Initial program 69.6%

              \[x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304} \]
            2. Taylor expanded in z around inf

              \[\leadsto x + \color{blue}{\frac{692910599291889}{10000000000000000} \cdot y} \]
            3. Step-by-step derivation
              1. lower-*.f6479.6%

                \[\leadsto x + 0.0692910599291889 \cdot \color{blue}{y} \]
            4. Applied rewrites79.6%

              \[\leadsto x + \color{blue}{0.0692910599291889 \cdot y} \]
          3. Recombined 2 regimes into one program.
          4. Add Preprocessing

          Alternative 7: 98.2% accurate, 0.5× speedup?

          \[\begin{array}{l} \mathbf{if}\;x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304} \leq 5 \cdot 10^{+297}:\\ \;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(0.0692910599291889, z, 0.4917317610505968\right), z, 0.279195317918525\right), \frac{y}{\mathsf{fma}\left(z - -6.012459259764103, z, 3.350343815022304\right)}, x\right)\\ \mathbf{else}:\\ \;\;\;\;x + 0.0692910599291889 \cdot y\\ \end{array} \]
          (FPCore (x y z)
           :precision binary64
           (if (<=
                (+
                 x
                 (/
                  (*
                   y
                   (+
                    (* (+ (* z 0.0692910599291889) 0.4917317610505968) z)
                    0.279195317918525))
                  (+ (* (+ z 6.012459259764103) z) 3.350343815022304)))
                5e+297)
             (fma
              (fma (fma 0.0692910599291889 z 0.4917317610505968) z 0.279195317918525)
              (/ y (fma (- z -6.012459259764103) z 3.350343815022304))
              x)
             (+ x (* 0.0692910599291889 y))))
          double code(double x, double y, double z) {
          	double tmp;
          	if ((x + ((y * ((((z * 0.0692910599291889) + 0.4917317610505968) * z) + 0.279195317918525)) / (((z + 6.012459259764103) * z) + 3.350343815022304))) <= 5e+297) {
          		tmp = fma(fma(fma(0.0692910599291889, z, 0.4917317610505968), z, 0.279195317918525), (y / fma((z - -6.012459259764103), z, 3.350343815022304)), x);
          	} else {
          		tmp = x + (0.0692910599291889 * y);
          	}
          	return tmp;
          }
          
          function code(x, y, z)
          	tmp = 0.0
          	if (Float64(x + Float64(Float64(y * Float64(Float64(Float64(Float64(z * 0.0692910599291889) + 0.4917317610505968) * z) + 0.279195317918525)) / Float64(Float64(Float64(z + 6.012459259764103) * z) + 3.350343815022304))) <= 5e+297)
          		tmp = fma(fma(fma(0.0692910599291889, z, 0.4917317610505968), z, 0.279195317918525), Float64(y / fma(Float64(z - -6.012459259764103), z, 3.350343815022304)), x);
          	else
          		tmp = Float64(x + Float64(0.0692910599291889 * y));
          	end
          	return tmp
          end
          
          code[x_, y_, z_] := If[LessEqual[N[(x + N[(N[(y * N[(N[(N[(N[(z * 0.0692910599291889), $MachinePrecision] + 0.4917317610505968), $MachinePrecision] * z), $MachinePrecision] + 0.279195317918525), $MachinePrecision]), $MachinePrecision] / N[(N[(N[(z + 6.012459259764103), $MachinePrecision] * z), $MachinePrecision] + 3.350343815022304), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], 5e+297], N[(N[(N[(0.0692910599291889 * z + 0.4917317610505968), $MachinePrecision] * z + 0.279195317918525), $MachinePrecision] * N[(y / N[(N[(z - -6.012459259764103), $MachinePrecision] * z + 3.350343815022304), $MachinePrecision]), $MachinePrecision] + x), $MachinePrecision], N[(x + N[(0.0692910599291889 * y), $MachinePrecision]), $MachinePrecision]]
          
          \begin{array}{l}
          \mathbf{if}\;x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304} \leq 5 \cdot 10^{+297}:\\
          \;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(0.0692910599291889, z, 0.4917317610505968\right), z, 0.279195317918525\right), \frac{y}{\mathsf{fma}\left(z - -6.012459259764103, z, 3.350343815022304\right)}, x\right)\\
          
          \mathbf{else}:\\
          \;\;\;\;x + 0.0692910599291889 \cdot y\\
          
          
          \end{array}
          
          Derivation
          1. Split input into 2 regimes
          2. if (+.f64 x (/.f64 (*.f64 y (+.f64 (*.f64 (+.f64 (*.f64 z #s(literal 692910599291889/10000000000000000 binary64)) #s(literal 307332350656623/625000000000000 binary64)) z) #s(literal 11167812716741/40000000000000 binary64))) (+.f64 (*.f64 (+.f64 z #s(literal 6012459259764103/1000000000000000 binary64)) z) #s(literal 104698244219447/31250000000000 binary64)))) < 4.9999999999999998e297

            1. Initial program 69.6%

              \[x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304} \]
            2. Step-by-step derivation
              1. lift-+.f64N/A

                \[\leadsto \color{blue}{x + \frac{y \cdot \left(\left(z \cdot \frac{692910599291889}{10000000000000000} + \frac{307332350656623}{625000000000000}\right) \cdot z + \frac{11167812716741}{40000000000000}\right)}{\left(z + \frac{6012459259764103}{1000000000000000}\right) \cdot z + \frac{104698244219447}{31250000000000}}} \]
              2. +-commutativeN/A

                \[\leadsto \color{blue}{\frac{y \cdot \left(\left(z \cdot \frac{692910599291889}{10000000000000000} + \frac{307332350656623}{625000000000000}\right) \cdot z + \frac{11167812716741}{40000000000000}\right)}{\left(z + \frac{6012459259764103}{1000000000000000}\right) \cdot z + \frac{104698244219447}{31250000000000}} + x} \]
              3. lift-/.f64N/A

                \[\leadsto \color{blue}{\frac{y \cdot \left(\left(z \cdot \frac{692910599291889}{10000000000000000} + \frac{307332350656623}{625000000000000}\right) \cdot z + \frac{11167812716741}{40000000000000}\right)}{\left(z + \frac{6012459259764103}{1000000000000000}\right) \cdot z + \frac{104698244219447}{31250000000000}}} + x \]
              4. mult-flipN/A

                \[\leadsto \color{blue}{\left(y \cdot \left(\left(z \cdot \frac{692910599291889}{10000000000000000} + \frac{307332350656623}{625000000000000}\right) \cdot z + \frac{11167812716741}{40000000000000}\right)\right) \cdot \frac{1}{\left(z + \frac{6012459259764103}{1000000000000000}\right) \cdot z + \frac{104698244219447}{31250000000000}}} + x \]
              5. lift-*.f64N/A

                \[\leadsto \color{blue}{\left(y \cdot \left(\left(z \cdot \frac{692910599291889}{10000000000000000} + \frac{307332350656623}{625000000000000}\right) \cdot z + \frac{11167812716741}{40000000000000}\right)\right)} \cdot \frac{1}{\left(z + \frac{6012459259764103}{1000000000000000}\right) \cdot z + \frac{104698244219447}{31250000000000}} + x \]
              6. *-commutativeN/A

                \[\leadsto \color{blue}{\left(\left(\left(z \cdot \frac{692910599291889}{10000000000000000} + \frac{307332350656623}{625000000000000}\right) \cdot z + \frac{11167812716741}{40000000000000}\right) \cdot y\right)} \cdot \frac{1}{\left(z + \frac{6012459259764103}{1000000000000000}\right) \cdot z + \frac{104698244219447}{31250000000000}} + x \]
              7. associate-*l*N/A

                \[\leadsto \color{blue}{\left(\left(z \cdot \frac{692910599291889}{10000000000000000} + \frac{307332350656623}{625000000000000}\right) \cdot z + \frac{11167812716741}{40000000000000}\right) \cdot \left(y \cdot \frac{1}{\left(z + \frac{6012459259764103}{1000000000000000}\right) \cdot z + \frac{104698244219447}{31250000000000}}\right)} + x \]
              8. lower-fma.f64N/A

                \[\leadsto \color{blue}{\mathsf{fma}\left(\left(z \cdot \frac{692910599291889}{10000000000000000} + \frac{307332350656623}{625000000000000}\right) \cdot z + \frac{11167812716741}{40000000000000}, y \cdot \frac{1}{\left(z + \frac{6012459259764103}{1000000000000000}\right) \cdot z + \frac{104698244219447}{31250000000000}}, x\right)} \]
            3. Applied rewrites74.1%

              \[\leadsto \color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(0.0692910599291889, z, 0.4917317610505968\right), z, 0.279195317918525\right), \frac{y}{\mathsf{fma}\left(z - -6.012459259764103, z, 3.350343815022304\right)}, x\right)} \]

            if 4.9999999999999998e297 < (+.f64 x (/.f64 (*.f64 y (+.f64 (*.f64 (+.f64 (*.f64 z #s(literal 692910599291889/10000000000000000 binary64)) #s(literal 307332350656623/625000000000000 binary64)) z) #s(literal 11167812716741/40000000000000 binary64))) (+.f64 (*.f64 (+.f64 z #s(literal 6012459259764103/1000000000000000 binary64)) z) #s(literal 104698244219447/31250000000000 binary64))))

            1. Initial program 69.6%

              \[x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304} \]
            2. Taylor expanded in z around inf

              \[\leadsto x + \color{blue}{\frac{692910599291889}{10000000000000000} \cdot y} \]
            3. Step-by-step derivation
              1. lower-*.f6479.6%

                \[\leadsto x + 0.0692910599291889 \cdot \color{blue}{y} \]
            4. Applied rewrites79.6%

              \[\leadsto x + \color{blue}{0.0692910599291889 \cdot y} \]
          3. Recombined 2 regimes into one program.
          4. Add Preprocessing

          Alternative 8: 79.6% accurate, 4.5× speedup?

          \[x + 0.0692910599291889 \cdot y \]
          (FPCore (x y z) :precision binary64 (+ x (* 0.0692910599291889 y)))
          double code(double x, double y, double z) {
          	return x + (0.0692910599291889 * y);
          }
          
          module fmin_fmax_functions
              implicit none
              private
              public fmax
              public fmin
          
              interface fmax
                  module procedure fmax88
                  module procedure fmax44
                  module procedure fmax84
                  module procedure fmax48
              end interface
              interface fmin
                  module procedure fmin88
                  module procedure fmin44
                  module procedure fmin84
                  module procedure fmin48
              end interface
          contains
              real(8) function fmax88(x, y) result (res)
                  real(8), intent (in) :: x
                  real(8), intent (in) :: y
                  res = merge(y, merge(x, max(x, y), y /= y), x /= x)
              end function
              real(4) function fmax44(x, y) result (res)
                  real(4), intent (in) :: x
                  real(4), intent (in) :: y
                  res = merge(y, merge(x, max(x, y), y /= y), x /= x)
              end function
              real(8) function fmax84(x, y) result(res)
                  real(8), intent (in) :: x
                  real(4), intent (in) :: y
                  res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
              end function
              real(8) function fmax48(x, y) result(res)
                  real(4), intent (in) :: x
                  real(8), intent (in) :: y
                  res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
              end function
              real(8) function fmin88(x, y) result (res)
                  real(8), intent (in) :: x
                  real(8), intent (in) :: y
                  res = merge(y, merge(x, min(x, y), y /= y), x /= x)
              end function
              real(4) function fmin44(x, y) result (res)
                  real(4), intent (in) :: x
                  real(4), intent (in) :: y
                  res = merge(y, merge(x, min(x, y), y /= y), x /= x)
              end function
              real(8) function fmin84(x, y) result(res)
                  real(8), intent (in) :: x
                  real(4), intent (in) :: y
                  res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
              end function
              real(8) function fmin48(x, y) result(res)
                  real(4), intent (in) :: x
                  real(8), intent (in) :: y
                  res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
              end function
          end module
          
          real(8) function code(x, y, z)
          use fmin_fmax_functions
              real(8), intent (in) :: x
              real(8), intent (in) :: y
              real(8), intent (in) :: z
              code = x + (0.0692910599291889d0 * y)
          end function
          
          public static double code(double x, double y, double z) {
          	return x + (0.0692910599291889 * y);
          }
          
          def code(x, y, z):
          	return x + (0.0692910599291889 * y)
          
          function code(x, y, z)
          	return Float64(x + Float64(0.0692910599291889 * y))
          end
          
          function tmp = code(x, y, z)
          	tmp = x + (0.0692910599291889 * y);
          end
          
          code[x_, y_, z_] := N[(x + N[(0.0692910599291889 * y), $MachinePrecision]), $MachinePrecision]
          
          x + 0.0692910599291889 \cdot y
          
          Derivation
          1. Initial program 69.6%

            \[x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304} \]
          2. Taylor expanded in z around inf

            \[\leadsto x + \color{blue}{\frac{692910599291889}{10000000000000000} \cdot y} \]
          3. Step-by-step derivation
            1. lower-*.f6479.6%

              \[\leadsto x + 0.0692910599291889 \cdot \color{blue}{y} \]
          4. Applied rewrites79.6%

            \[\leadsto x + \color{blue}{0.0692910599291889 \cdot y} \]
          5. Add Preprocessing

          Alternative 9: 51.9% accurate, 7.5× speedup?

          \[1 \cdot x \]
          (FPCore (x y z) :precision binary64 (* 1.0 x))
          double code(double x, double y, double z) {
          	return 1.0 * x;
          }
          
          module fmin_fmax_functions
              implicit none
              private
              public fmax
              public fmin
          
              interface fmax
                  module procedure fmax88
                  module procedure fmax44
                  module procedure fmax84
                  module procedure fmax48
              end interface
              interface fmin
                  module procedure fmin88
                  module procedure fmin44
                  module procedure fmin84
                  module procedure fmin48
              end interface
          contains
              real(8) function fmax88(x, y) result (res)
                  real(8), intent (in) :: x
                  real(8), intent (in) :: y
                  res = merge(y, merge(x, max(x, y), y /= y), x /= x)
              end function
              real(4) function fmax44(x, y) result (res)
                  real(4), intent (in) :: x
                  real(4), intent (in) :: y
                  res = merge(y, merge(x, max(x, y), y /= y), x /= x)
              end function
              real(8) function fmax84(x, y) result(res)
                  real(8), intent (in) :: x
                  real(4), intent (in) :: y
                  res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
              end function
              real(8) function fmax48(x, y) result(res)
                  real(4), intent (in) :: x
                  real(8), intent (in) :: y
                  res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
              end function
              real(8) function fmin88(x, y) result (res)
                  real(8), intent (in) :: x
                  real(8), intent (in) :: y
                  res = merge(y, merge(x, min(x, y), y /= y), x /= x)
              end function
              real(4) function fmin44(x, y) result (res)
                  real(4), intent (in) :: x
                  real(4), intent (in) :: y
                  res = merge(y, merge(x, min(x, y), y /= y), x /= x)
              end function
              real(8) function fmin84(x, y) result(res)
                  real(8), intent (in) :: x
                  real(4), intent (in) :: y
                  res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
              end function
              real(8) function fmin48(x, y) result(res)
                  real(4), intent (in) :: x
                  real(8), intent (in) :: y
                  res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
              end function
          end module
          
          real(8) function code(x, y, z)
          use fmin_fmax_functions
              real(8), intent (in) :: x
              real(8), intent (in) :: y
              real(8), intent (in) :: z
              code = 1.0d0 * x
          end function
          
          public static double code(double x, double y, double z) {
          	return 1.0 * x;
          }
          
          def code(x, y, z):
          	return 1.0 * x
          
          function code(x, y, z)
          	return Float64(1.0 * x)
          end
          
          function tmp = code(x, y, z)
          	tmp = 1.0 * x;
          end
          
          code[x_, y_, z_] := N[(1.0 * x), $MachinePrecision]
          
          1 \cdot x
          
          Derivation
          1. Initial program 69.6%

            \[x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304} \]
          2. Taylor expanded in z around inf

            \[\leadsto x + \color{blue}{\frac{692910599291889}{10000000000000000} \cdot y} \]
          3. Step-by-step derivation
            1. lower-*.f6479.6%

              \[\leadsto x + 0.0692910599291889 \cdot \color{blue}{y} \]
          4. Applied rewrites79.6%

            \[\leadsto x + \color{blue}{0.0692910599291889 \cdot y} \]
          5. Step-by-step derivation
            1. lift-+.f64N/A

              \[\leadsto \color{blue}{x + \frac{692910599291889}{10000000000000000} \cdot y} \]
            2. sum-to-multN/A

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

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

              \[\leadsto \color{blue}{\left(1 + \frac{\frac{692910599291889}{10000000000000000} \cdot y}{x}\right)} \cdot x \]
            5. lower-unsound-/.f6472.9%

              \[\leadsto \left(1 + \color{blue}{\frac{0.0692910599291889 \cdot y}{x}}\right) \cdot x \]
          6. Applied rewrites72.9%

            \[\leadsto \color{blue}{\left(1 + \frac{0.0692910599291889 \cdot y}{x}\right) \cdot x} \]
          7. Taylor expanded in x around inf

            \[\leadsto \color{blue}{1} \cdot x \]
          8. Step-by-step derivation
            1. Applied rewrites51.9%

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

            Reproduce

            ?
            herbie shell --seed 2025183 
            (FPCore (x y z)
              :name "Numeric.SpecFunctions:logGamma from math-functions-0.1.5.2, B"
              :precision binary64
              (+ x (/ (* y (+ (* (+ (* z 0.0692910599291889) 0.4917317610505968) z) 0.279195317918525)) (+ (* (+ z 6.012459259764103) z) 3.350343815022304))))