Rosa's FloatVsDoubleBenchmark

Percentage Accurate: 70.6% → 99.5%
Time: 9.9s
Alternatives: 25
Speedup: 6.6×

Specification

?
\[\begin{array}{l} \\ \begin{array}{l} t_0 := \left(3 \cdot x1\right) \cdot x1\\ t_1 := x1 \cdot x1 + 1\\ t_2 := \frac{\left(t\_0 + 2 \cdot x2\right) - x1}{t\_1}\\ x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot t\_2\right) \cdot \left(t\_2 - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot t\_2 - 6\right)\right) \cdot t\_1 + t\_0 \cdot t\_2\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(t\_0 - 2 \cdot x2\right) - x1}{t\_1}\right) \end{array} \end{array} \]
(FPCore (x1 x2)
 :precision binary64
 (let* ((t_0 (* (* 3.0 x1) x1))
        (t_1 (+ (* x1 x1) 1.0))
        (t_2 (/ (- (+ t_0 (* 2.0 x2)) x1) t_1)))
   (+
    x1
    (+
     (+
      (+
       (+
        (*
         (+
          (* (* (* 2.0 x1) t_2) (- t_2 3.0))
          (* (* x1 x1) (- (* 4.0 t_2) 6.0)))
         t_1)
        (* t_0 t_2))
       (* (* x1 x1) x1))
      x1)
     (* 3.0 (/ (- (- t_0 (* 2.0 x2)) x1) t_1))))))
double code(double x1, double x2) {
	double t_0 = (3.0 * x1) * x1;
	double t_1 = (x1 * x1) + 1.0;
	double t_2 = ((t_0 + (2.0 * x2)) - x1) / t_1;
	return x1 + (((((((((2.0 * x1) * t_2) * (t_2 - 3.0)) + ((x1 * x1) * ((4.0 * t_2) - 6.0))) * t_1) + (t_0 * t_2)) + ((x1 * x1) * x1)) + x1) + (3.0 * (((t_0 - (2.0 * x2)) - x1) / t_1)));
}
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(x1, x2)
use fmin_fmax_functions
    real(8), intent (in) :: x1
    real(8), intent (in) :: x2
    real(8) :: t_0
    real(8) :: t_1
    real(8) :: t_2
    t_0 = (3.0d0 * x1) * x1
    t_1 = (x1 * x1) + 1.0d0
    t_2 = ((t_0 + (2.0d0 * x2)) - x1) / t_1
    code = x1 + (((((((((2.0d0 * x1) * t_2) * (t_2 - 3.0d0)) + ((x1 * x1) * ((4.0d0 * t_2) - 6.0d0))) * t_1) + (t_0 * t_2)) + ((x1 * x1) * x1)) + x1) + (3.0d0 * (((t_0 - (2.0d0 * x2)) - x1) / t_1)))
end function
public static double code(double x1, double x2) {
	double t_0 = (3.0 * x1) * x1;
	double t_1 = (x1 * x1) + 1.0;
	double t_2 = ((t_0 + (2.0 * x2)) - x1) / t_1;
	return x1 + (((((((((2.0 * x1) * t_2) * (t_2 - 3.0)) + ((x1 * x1) * ((4.0 * t_2) - 6.0))) * t_1) + (t_0 * t_2)) + ((x1 * x1) * x1)) + x1) + (3.0 * (((t_0 - (2.0 * x2)) - x1) / t_1)));
}
def code(x1, x2):
	t_0 = (3.0 * x1) * x1
	t_1 = (x1 * x1) + 1.0
	t_2 = ((t_0 + (2.0 * x2)) - x1) / t_1
	return x1 + (((((((((2.0 * x1) * t_2) * (t_2 - 3.0)) + ((x1 * x1) * ((4.0 * t_2) - 6.0))) * t_1) + (t_0 * t_2)) + ((x1 * x1) * x1)) + x1) + (3.0 * (((t_0 - (2.0 * x2)) - x1) / t_1)))
function code(x1, x2)
	t_0 = Float64(Float64(3.0 * x1) * x1)
	t_1 = Float64(Float64(x1 * x1) + 1.0)
	t_2 = Float64(Float64(Float64(t_0 + Float64(2.0 * x2)) - x1) / t_1)
	return Float64(x1 + Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(2.0 * x1) * t_2) * Float64(t_2 - 3.0)) + Float64(Float64(x1 * x1) * Float64(Float64(4.0 * t_2) - 6.0))) * t_1) + Float64(t_0 * t_2)) + Float64(Float64(x1 * x1) * x1)) + x1) + Float64(3.0 * Float64(Float64(Float64(t_0 - Float64(2.0 * x2)) - x1) / t_1))))
end
function tmp = code(x1, x2)
	t_0 = (3.0 * x1) * x1;
	t_1 = (x1 * x1) + 1.0;
	t_2 = ((t_0 + (2.0 * x2)) - x1) / t_1;
	tmp = x1 + (((((((((2.0 * x1) * t_2) * (t_2 - 3.0)) + ((x1 * x1) * ((4.0 * t_2) - 6.0))) * t_1) + (t_0 * t_2)) + ((x1 * x1) * x1)) + x1) + (3.0 * (((t_0 - (2.0 * x2)) - x1) / t_1)));
end
code[x1_, x2_] := Block[{t$95$0 = N[(N[(3.0 * x1), $MachinePrecision] * x1), $MachinePrecision]}, Block[{t$95$1 = N[(N[(x1 * x1), $MachinePrecision] + 1.0), $MachinePrecision]}, Block[{t$95$2 = N[(N[(N[(t$95$0 + N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / t$95$1), $MachinePrecision]}, N[(x1 + N[(N[(N[(N[(N[(N[(N[(N[(N[(2.0 * x1), $MachinePrecision] * t$95$2), $MachinePrecision] * N[(t$95$2 - 3.0), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * N[(N[(4.0 * t$95$2), $MachinePrecision] - 6.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * t$95$1), $MachinePrecision] + N[(t$95$0 * t$95$2), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * x1), $MachinePrecision]), $MachinePrecision] + x1), $MachinePrecision] + N[(3.0 * N[(N[(N[(t$95$0 - N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / t$95$1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := \left(3 \cdot x1\right) \cdot x1\\
t_1 := x1 \cdot x1 + 1\\
t_2 := \frac{\left(t\_0 + 2 \cdot x2\right) - x1}{t\_1}\\
x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot t\_2\right) \cdot \left(t\_2 - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot t\_2 - 6\right)\right) \cdot t\_1 + t\_0 \cdot t\_2\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(t\_0 - 2 \cdot x2\right) - x1}{t\_1}\right)
\end{array}
\end{array}

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

\[\begin{array}{l} \\ \begin{array}{l} t_0 := \left(3 \cdot x1\right) \cdot x1\\ t_1 := x1 \cdot x1 + 1\\ t_2 := \frac{\left(t\_0 + 2 \cdot x2\right) - x1}{t\_1}\\ x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot t\_2\right) \cdot \left(t\_2 - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot t\_2 - 6\right)\right) \cdot t\_1 + t\_0 \cdot t\_2\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(t\_0 - 2 \cdot x2\right) - x1}{t\_1}\right) \end{array} \end{array} \]
(FPCore (x1 x2)
 :precision binary64
 (let* ((t_0 (* (* 3.0 x1) x1))
        (t_1 (+ (* x1 x1) 1.0))
        (t_2 (/ (- (+ t_0 (* 2.0 x2)) x1) t_1)))
   (+
    x1
    (+
     (+
      (+
       (+
        (*
         (+
          (* (* (* 2.0 x1) t_2) (- t_2 3.0))
          (* (* x1 x1) (- (* 4.0 t_2) 6.0)))
         t_1)
        (* t_0 t_2))
       (* (* x1 x1) x1))
      x1)
     (* 3.0 (/ (- (- t_0 (* 2.0 x2)) x1) t_1))))))
double code(double x1, double x2) {
	double t_0 = (3.0 * x1) * x1;
	double t_1 = (x1 * x1) + 1.0;
	double t_2 = ((t_0 + (2.0 * x2)) - x1) / t_1;
	return x1 + (((((((((2.0 * x1) * t_2) * (t_2 - 3.0)) + ((x1 * x1) * ((4.0 * t_2) - 6.0))) * t_1) + (t_0 * t_2)) + ((x1 * x1) * x1)) + x1) + (3.0 * (((t_0 - (2.0 * x2)) - x1) / t_1)));
}
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(x1, x2)
use fmin_fmax_functions
    real(8), intent (in) :: x1
    real(8), intent (in) :: x2
    real(8) :: t_0
    real(8) :: t_1
    real(8) :: t_2
    t_0 = (3.0d0 * x1) * x1
    t_1 = (x1 * x1) + 1.0d0
    t_2 = ((t_0 + (2.0d0 * x2)) - x1) / t_1
    code = x1 + (((((((((2.0d0 * x1) * t_2) * (t_2 - 3.0d0)) + ((x1 * x1) * ((4.0d0 * t_2) - 6.0d0))) * t_1) + (t_0 * t_2)) + ((x1 * x1) * x1)) + x1) + (3.0d0 * (((t_0 - (2.0d0 * x2)) - x1) / t_1)))
end function
public static double code(double x1, double x2) {
	double t_0 = (3.0 * x1) * x1;
	double t_1 = (x1 * x1) + 1.0;
	double t_2 = ((t_0 + (2.0 * x2)) - x1) / t_1;
	return x1 + (((((((((2.0 * x1) * t_2) * (t_2 - 3.0)) + ((x1 * x1) * ((4.0 * t_2) - 6.0))) * t_1) + (t_0 * t_2)) + ((x1 * x1) * x1)) + x1) + (3.0 * (((t_0 - (2.0 * x2)) - x1) / t_1)));
}
def code(x1, x2):
	t_0 = (3.0 * x1) * x1
	t_1 = (x1 * x1) + 1.0
	t_2 = ((t_0 + (2.0 * x2)) - x1) / t_1
	return x1 + (((((((((2.0 * x1) * t_2) * (t_2 - 3.0)) + ((x1 * x1) * ((4.0 * t_2) - 6.0))) * t_1) + (t_0 * t_2)) + ((x1 * x1) * x1)) + x1) + (3.0 * (((t_0 - (2.0 * x2)) - x1) / t_1)))
function code(x1, x2)
	t_0 = Float64(Float64(3.0 * x1) * x1)
	t_1 = Float64(Float64(x1 * x1) + 1.0)
	t_2 = Float64(Float64(Float64(t_0 + Float64(2.0 * x2)) - x1) / t_1)
	return Float64(x1 + Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(2.0 * x1) * t_2) * Float64(t_2 - 3.0)) + Float64(Float64(x1 * x1) * Float64(Float64(4.0 * t_2) - 6.0))) * t_1) + Float64(t_0 * t_2)) + Float64(Float64(x1 * x1) * x1)) + x1) + Float64(3.0 * Float64(Float64(Float64(t_0 - Float64(2.0 * x2)) - x1) / t_1))))
end
function tmp = code(x1, x2)
	t_0 = (3.0 * x1) * x1;
	t_1 = (x1 * x1) + 1.0;
	t_2 = ((t_0 + (2.0 * x2)) - x1) / t_1;
	tmp = x1 + (((((((((2.0 * x1) * t_2) * (t_2 - 3.0)) + ((x1 * x1) * ((4.0 * t_2) - 6.0))) * t_1) + (t_0 * t_2)) + ((x1 * x1) * x1)) + x1) + (3.0 * (((t_0 - (2.0 * x2)) - x1) / t_1)));
end
code[x1_, x2_] := Block[{t$95$0 = N[(N[(3.0 * x1), $MachinePrecision] * x1), $MachinePrecision]}, Block[{t$95$1 = N[(N[(x1 * x1), $MachinePrecision] + 1.0), $MachinePrecision]}, Block[{t$95$2 = N[(N[(N[(t$95$0 + N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / t$95$1), $MachinePrecision]}, N[(x1 + N[(N[(N[(N[(N[(N[(N[(N[(N[(2.0 * x1), $MachinePrecision] * t$95$2), $MachinePrecision] * N[(t$95$2 - 3.0), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * N[(N[(4.0 * t$95$2), $MachinePrecision] - 6.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * t$95$1), $MachinePrecision] + N[(t$95$0 * t$95$2), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * x1), $MachinePrecision]), $MachinePrecision] + x1), $MachinePrecision] + N[(3.0 * N[(N[(N[(t$95$0 - N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / t$95$1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := \left(3 \cdot x1\right) \cdot x1\\
t_1 := x1 \cdot x1 + 1\\
t_2 := \frac{\left(t\_0 + 2 \cdot x2\right) - x1}{t\_1}\\
x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot t\_2\right) \cdot \left(t\_2 - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot t\_2 - 6\right)\right) \cdot t\_1 + t\_0 \cdot t\_2\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(t\_0 - 2 \cdot x2\right) - x1}{t\_1}\right)
\end{array}
\end{array}

Alternative 1: 99.5% accurate, 0.5× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_0 := \left(x1 \cdot x1\right) \cdot x1\\ t_1 := x1 \cdot x1 + 1\\ t_2 := \frac{\mathsf{fma}\left(3 \cdot x1, x1, 2 \cdot x2\right) - x1}{\mathsf{fma}\left(x1, x1, 1\right)}\\ t_3 := 2 \cdot x2 - 3\\ t_4 := \left(3 \cdot x1\right) \cdot x1\\ t_5 := \frac{\left(t\_4 + 2 \cdot x2\right) - x1}{t\_1}\\ t_6 := 3 \cdot \frac{\left(t\_4 - 2 \cdot x2\right) - x1}{t\_1}\\ \mathbf{if}\;x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot t\_5\right) \cdot \left(t\_5 - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot t\_5 - 6\right)\right) \cdot t\_1 + t\_4 \cdot t\_5\right) + t\_0\right) + x1\right) + t\_6\right) \leq \infty:\\ \;\;\;\;x1 + \left(\left(\left(\mathsf{fma}\left(\mathsf{fma}\left(\left(2 \cdot x1\right) \cdot t\_2, t\_2 - 3, \left(x1 \cdot x1\right) \cdot \left(4 \cdot t\_2 - 6\right)\right), \mathsf{fma}\left(x1, x1, 1\right), t\_4 \cdot t\_2\right) + t\_0\right) + x1\right) + t\_6\right)\\ \mathbf{else}:\\ \;\;\;\;x1 \cdot \mathsf{fma}\left(-1, 1 + -2 \cdot \left(1 + 3 \cdot t\_3\right), x1 \cdot \left(9 + \mathsf{fma}\left(4, t\_3, x1 \cdot \left(6 \cdot x1 - 3\right)\right)\right)\right)\\ \end{array} \end{array} \]
(FPCore (x1 x2)
 :precision binary64
 (let* ((t_0 (* (* x1 x1) x1))
        (t_1 (+ (* x1 x1) 1.0))
        (t_2 (/ (- (fma (* 3.0 x1) x1 (* 2.0 x2)) x1) (fma x1 x1 1.0)))
        (t_3 (- (* 2.0 x2) 3.0))
        (t_4 (* (* 3.0 x1) x1))
        (t_5 (/ (- (+ t_4 (* 2.0 x2)) x1) t_1))
        (t_6 (* 3.0 (/ (- (- t_4 (* 2.0 x2)) x1) t_1))))
   (if (<=
        (+
         x1
         (+
          (+
           (+
            (+
             (*
              (+
               (* (* (* 2.0 x1) t_5) (- t_5 3.0))
               (* (* x1 x1) (- (* 4.0 t_5) 6.0)))
              t_1)
             (* t_4 t_5))
            t_0)
           x1)
          t_6))
        INFINITY)
     (+
      x1
      (+
       (+
        (+
         (fma
          (fma
           (* (* 2.0 x1) t_2)
           (- t_2 3.0)
           (* (* x1 x1) (- (* 4.0 t_2) 6.0)))
          (fma x1 x1 1.0)
          (* t_4 t_2))
         t_0)
        x1)
       t_6))
     (*
      x1
      (fma
       -1.0
       (+ 1.0 (* -2.0 (+ 1.0 (* 3.0 t_3))))
       (* x1 (+ 9.0 (fma 4.0 t_3 (* x1 (- (* 6.0 x1) 3.0))))))))))
double code(double x1, double x2) {
	double t_0 = (x1 * x1) * x1;
	double t_1 = (x1 * x1) + 1.0;
	double t_2 = (fma((3.0 * x1), x1, (2.0 * x2)) - x1) / fma(x1, x1, 1.0);
	double t_3 = (2.0 * x2) - 3.0;
	double t_4 = (3.0 * x1) * x1;
	double t_5 = ((t_4 + (2.0 * x2)) - x1) / t_1;
	double t_6 = 3.0 * (((t_4 - (2.0 * x2)) - x1) / t_1);
	double tmp;
	if ((x1 + (((((((((2.0 * x1) * t_5) * (t_5 - 3.0)) + ((x1 * x1) * ((4.0 * t_5) - 6.0))) * t_1) + (t_4 * t_5)) + t_0) + x1) + t_6)) <= ((double) INFINITY)) {
		tmp = x1 + (((fma(fma(((2.0 * x1) * t_2), (t_2 - 3.0), ((x1 * x1) * ((4.0 * t_2) - 6.0))), fma(x1, x1, 1.0), (t_4 * t_2)) + t_0) + x1) + t_6);
	} else {
		tmp = x1 * fma(-1.0, (1.0 + (-2.0 * (1.0 + (3.0 * t_3)))), (x1 * (9.0 + fma(4.0, t_3, (x1 * ((6.0 * x1) - 3.0))))));
	}
	return tmp;
}
function code(x1, x2)
	t_0 = Float64(Float64(x1 * x1) * x1)
	t_1 = Float64(Float64(x1 * x1) + 1.0)
	t_2 = Float64(Float64(fma(Float64(3.0 * x1), x1, Float64(2.0 * x2)) - x1) / fma(x1, x1, 1.0))
	t_3 = Float64(Float64(2.0 * x2) - 3.0)
	t_4 = Float64(Float64(3.0 * x1) * x1)
	t_5 = Float64(Float64(Float64(t_4 + Float64(2.0 * x2)) - x1) / t_1)
	t_6 = Float64(3.0 * Float64(Float64(Float64(t_4 - Float64(2.0 * x2)) - x1) / t_1))
	tmp = 0.0
	if (Float64(x1 + Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(2.0 * x1) * t_5) * Float64(t_5 - 3.0)) + Float64(Float64(x1 * x1) * Float64(Float64(4.0 * t_5) - 6.0))) * t_1) + Float64(t_4 * t_5)) + t_0) + x1) + t_6)) <= Inf)
		tmp = Float64(x1 + Float64(Float64(Float64(fma(fma(Float64(Float64(2.0 * x1) * t_2), Float64(t_2 - 3.0), Float64(Float64(x1 * x1) * Float64(Float64(4.0 * t_2) - 6.0))), fma(x1, x1, 1.0), Float64(t_4 * t_2)) + t_0) + x1) + t_6));
	else
		tmp = Float64(x1 * fma(-1.0, Float64(1.0 + Float64(-2.0 * Float64(1.0 + Float64(3.0 * t_3)))), Float64(x1 * Float64(9.0 + fma(4.0, t_3, Float64(x1 * Float64(Float64(6.0 * x1) - 3.0)))))));
	end
	return tmp
end
code[x1_, x2_] := Block[{t$95$0 = N[(N[(x1 * x1), $MachinePrecision] * x1), $MachinePrecision]}, Block[{t$95$1 = N[(N[(x1 * x1), $MachinePrecision] + 1.0), $MachinePrecision]}, Block[{t$95$2 = N[(N[(N[(N[(3.0 * x1), $MachinePrecision] * x1 + N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / N[(x1 * x1 + 1.0), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$3 = N[(N[(2.0 * x2), $MachinePrecision] - 3.0), $MachinePrecision]}, Block[{t$95$4 = N[(N[(3.0 * x1), $MachinePrecision] * x1), $MachinePrecision]}, Block[{t$95$5 = N[(N[(N[(t$95$4 + N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / t$95$1), $MachinePrecision]}, Block[{t$95$6 = N[(3.0 * N[(N[(N[(t$95$4 - N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / t$95$1), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[N[(x1 + N[(N[(N[(N[(N[(N[(N[(N[(N[(2.0 * x1), $MachinePrecision] * t$95$5), $MachinePrecision] * N[(t$95$5 - 3.0), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * N[(N[(4.0 * t$95$5), $MachinePrecision] - 6.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * t$95$1), $MachinePrecision] + N[(t$95$4 * t$95$5), $MachinePrecision]), $MachinePrecision] + t$95$0), $MachinePrecision] + x1), $MachinePrecision] + t$95$6), $MachinePrecision]), $MachinePrecision], Infinity], N[(x1 + N[(N[(N[(N[(N[(N[(N[(2.0 * x1), $MachinePrecision] * t$95$2), $MachinePrecision] * N[(t$95$2 - 3.0), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * N[(N[(4.0 * t$95$2), $MachinePrecision] - 6.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(x1 * x1 + 1.0), $MachinePrecision] + N[(t$95$4 * t$95$2), $MachinePrecision]), $MachinePrecision] + t$95$0), $MachinePrecision] + x1), $MachinePrecision] + t$95$6), $MachinePrecision]), $MachinePrecision], N[(x1 * N[(-1.0 * N[(1.0 + N[(-2.0 * N[(1.0 + N[(3.0 * t$95$3), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(x1 * N[(9.0 + N[(4.0 * t$95$3 + N[(x1 * N[(N[(6.0 * x1), $MachinePrecision] - 3.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]]]]]]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := \left(x1 \cdot x1\right) \cdot x1\\
t_1 := x1 \cdot x1 + 1\\
t_2 := \frac{\mathsf{fma}\left(3 \cdot x1, x1, 2 \cdot x2\right) - x1}{\mathsf{fma}\left(x1, x1, 1\right)}\\
t_3 := 2 \cdot x2 - 3\\
t_4 := \left(3 \cdot x1\right) \cdot x1\\
t_5 := \frac{\left(t\_4 + 2 \cdot x2\right) - x1}{t\_1}\\
t_6 := 3 \cdot \frac{\left(t\_4 - 2 \cdot x2\right) - x1}{t\_1}\\
\mathbf{if}\;x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot t\_5\right) \cdot \left(t\_5 - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot t\_5 - 6\right)\right) \cdot t\_1 + t\_4 \cdot t\_5\right) + t\_0\right) + x1\right) + t\_6\right) \leq \infty:\\
\;\;\;\;x1 + \left(\left(\left(\mathsf{fma}\left(\mathsf{fma}\left(\left(2 \cdot x1\right) \cdot t\_2, t\_2 - 3, \left(x1 \cdot x1\right) \cdot \left(4 \cdot t\_2 - 6\right)\right), \mathsf{fma}\left(x1, x1, 1\right), t\_4 \cdot t\_2\right) + t\_0\right) + x1\right) + t\_6\right)\\

\mathbf{else}:\\
\;\;\;\;x1 \cdot \mathsf{fma}\left(-1, 1 + -2 \cdot \left(1 + 3 \cdot t\_3\right), x1 \cdot \left(9 + \mathsf{fma}\left(4, t\_3, x1 \cdot \left(6 \cdot x1 - 3\right)\right)\right)\right)\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))))) < +inf.0

    1. Initial program 99.4%

      \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
    2. Applied rewrites99.4%

      \[\leadsto x1 + \left(\left(\left(\color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(\left(2 \cdot x1\right) \cdot \frac{\mathsf{fma}\left(3 \cdot x1, x1, 2 \cdot x2\right) - x1}{\mathsf{fma}\left(x1, x1, 1\right)}, \frac{\mathsf{fma}\left(3 \cdot x1, x1, 2 \cdot x2\right) - x1}{\mathsf{fma}\left(x1, x1, 1\right)} - 3, \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\mathsf{fma}\left(3 \cdot x1, x1, 2 \cdot x2\right) - x1}{\mathsf{fma}\left(x1, x1, 1\right)} - 6\right)\right), \mathsf{fma}\left(x1, x1, 1\right), \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\mathsf{fma}\left(3 \cdot x1, x1, 2 \cdot x2\right) - x1}{\mathsf{fma}\left(x1, x1, 1\right)}\right)} + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]

    if +inf.0 < (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))))

    1. Initial program 0.0%

      \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
    2. Taylor expanded in x1 around -inf

      \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + \left(-1 \cdot \frac{1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1} + 4 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}}{x1}\right)} \]
    3. Applied rewrites99.8%

      \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + \mathsf{fma}\left(-1, \frac{1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}, 4 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}}{x1}\right)} \]
    4. Taylor expanded in x1 around 0

      \[\leadsto x1 \cdot \color{blue}{\left(-1 \cdot \left(1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + x1 \cdot \left(9 + \left(4 \cdot \left(2 \cdot x2 - 3\right) + x1 \cdot \left(6 \cdot x1 - 3\right)\right)\right)\right)} \]
    5. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto x1 \cdot \left(-1 \cdot \left(1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + \color{blue}{x1 \cdot \left(9 + \left(4 \cdot \left(2 \cdot x2 - 3\right) + x1 \cdot \left(6 \cdot x1 - 3\right)\right)\right)}\right) \]
      2. lower-fma.f64N/A

        \[\leadsto x1 \cdot \mathsf{fma}\left(-1, 1 + \color{blue}{-2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}, x1 \cdot \left(9 + \left(4 \cdot \left(2 \cdot x2 - 3\right) + x1 \cdot \left(6 \cdot x1 - 3\right)\right)\right)\right) \]
    6. Applied rewrites99.8%

      \[\leadsto x1 \cdot \color{blue}{\mathsf{fma}\left(-1, 1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right), x1 \cdot \left(9 + \mathsf{fma}\left(4, 2 \cdot x2 - 3, x1 \cdot \left(6 \cdot x1 - 3\right)\right)\right)\right)} \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 2: 59.7% accurate, 0.2× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_0 := \left(3 \cdot x1\right) \cdot x1\\ t_1 := x1 \cdot x1 + 1\\ t_2 := \frac{\left(t\_0 + 2 \cdot x2\right) - x1}{t\_1}\\ t_3 := x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot t\_2\right) \cdot \left(t\_2 - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot t\_2 - 6\right)\right) \cdot t\_1 + t\_0 \cdot t\_2\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(t\_0 - 2 \cdot x2\right) - x1}{t\_1}\right)\\ t_4 := 8 \cdot \left(x1 \cdot \left(x2 \cdot x2\right)\right)\\ \mathbf{if}\;t\_3 \leq -2 \cdot 10^{+113}:\\ \;\;\;\;t\_4\\ \mathbf{elif}\;t\_3 \leq -2 \cdot 10^{-10}:\\ \;\;\;\;-6 \cdot x2\\ \mathbf{elif}\;t\_3 \leq 10^{-58}:\\ \;\;\;\;x1 \cdot \left(9 \cdot x1 - 1\right)\\ \mathbf{elif}\;t\_3 \leq 10^{+171}:\\ \;\;\;\;-6 \cdot x2\\ \mathbf{elif}\;t\_3 \leq \infty:\\ \;\;\;\;t\_4\\ \mathbf{else}:\\ \;\;\;\;\left(x1 \cdot x1\right) \cdot 9\\ \end{array} \end{array} \]
(FPCore (x1 x2)
 :precision binary64
 (let* ((t_0 (* (* 3.0 x1) x1))
        (t_1 (+ (* x1 x1) 1.0))
        (t_2 (/ (- (+ t_0 (* 2.0 x2)) x1) t_1))
        (t_3
         (+
          x1
          (+
           (+
            (+
             (+
              (*
               (+
                (* (* (* 2.0 x1) t_2) (- t_2 3.0))
                (* (* x1 x1) (- (* 4.0 t_2) 6.0)))
               t_1)
              (* t_0 t_2))
             (* (* x1 x1) x1))
            x1)
           (* 3.0 (/ (- (- t_0 (* 2.0 x2)) x1) t_1)))))
        (t_4 (* 8.0 (* x1 (* x2 x2)))))
   (if (<= t_3 -2e+113)
     t_4
     (if (<= t_3 -2e-10)
       (* -6.0 x2)
       (if (<= t_3 1e-58)
         (* x1 (- (* 9.0 x1) 1.0))
         (if (<= t_3 1e+171)
           (* -6.0 x2)
           (if (<= t_3 INFINITY) t_4 (* (* x1 x1) 9.0))))))))
double code(double x1, double x2) {
	double t_0 = (3.0 * x1) * x1;
	double t_1 = (x1 * x1) + 1.0;
	double t_2 = ((t_0 + (2.0 * x2)) - x1) / t_1;
	double t_3 = x1 + (((((((((2.0 * x1) * t_2) * (t_2 - 3.0)) + ((x1 * x1) * ((4.0 * t_2) - 6.0))) * t_1) + (t_0 * t_2)) + ((x1 * x1) * x1)) + x1) + (3.0 * (((t_0 - (2.0 * x2)) - x1) / t_1)));
	double t_4 = 8.0 * (x1 * (x2 * x2));
	double tmp;
	if (t_3 <= -2e+113) {
		tmp = t_4;
	} else if (t_3 <= -2e-10) {
		tmp = -6.0 * x2;
	} else if (t_3 <= 1e-58) {
		tmp = x1 * ((9.0 * x1) - 1.0);
	} else if (t_3 <= 1e+171) {
		tmp = -6.0 * x2;
	} else if (t_3 <= ((double) INFINITY)) {
		tmp = t_4;
	} else {
		tmp = (x1 * x1) * 9.0;
	}
	return tmp;
}
public static double code(double x1, double x2) {
	double t_0 = (3.0 * x1) * x1;
	double t_1 = (x1 * x1) + 1.0;
	double t_2 = ((t_0 + (2.0 * x2)) - x1) / t_1;
	double t_3 = x1 + (((((((((2.0 * x1) * t_2) * (t_2 - 3.0)) + ((x1 * x1) * ((4.0 * t_2) - 6.0))) * t_1) + (t_0 * t_2)) + ((x1 * x1) * x1)) + x1) + (3.0 * (((t_0 - (2.0 * x2)) - x1) / t_1)));
	double t_4 = 8.0 * (x1 * (x2 * x2));
	double tmp;
	if (t_3 <= -2e+113) {
		tmp = t_4;
	} else if (t_3 <= -2e-10) {
		tmp = -6.0 * x2;
	} else if (t_3 <= 1e-58) {
		tmp = x1 * ((9.0 * x1) - 1.0);
	} else if (t_3 <= 1e+171) {
		tmp = -6.0 * x2;
	} else if (t_3 <= Double.POSITIVE_INFINITY) {
		tmp = t_4;
	} else {
		tmp = (x1 * x1) * 9.0;
	}
	return tmp;
}
def code(x1, x2):
	t_0 = (3.0 * x1) * x1
	t_1 = (x1 * x1) + 1.0
	t_2 = ((t_0 + (2.0 * x2)) - x1) / t_1
	t_3 = x1 + (((((((((2.0 * x1) * t_2) * (t_2 - 3.0)) + ((x1 * x1) * ((4.0 * t_2) - 6.0))) * t_1) + (t_0 * t_2)) + ((x1 * x1) * x1)) + x1) + (3.0 * (((t_0 - (2.0 * x2)) - x1) / t_1)))
	t_4 = 8.0 * (x1 * (x2 * x2))
	tmp = 0
	if t_3 <= -2e+113:
		tmp = t_4
	elif t_3 <= -2e-10:
		tmp = -6.0 * x2
	elif t_3 <= 1e-58:
		tmp = x1 * ((9.0 * x1) - 1.0)
	elif t_3 <= 1e+171:
		tmp = -6.0 * x2
	elif t_3 <= math.inf:
		tmp = t_4
	else:
		tmp = (x1 * x1) * 9.0
	return tmp
function code(x1, x2)
	t_0 = Float64(Float64(3.0 * x1) * x1)
	t_1 = Float64(Float64(x1 * x1) + 1.0)
	t_2 = Float64(Float64(Float64(t_0 + Float64(2.0 * x2)) - x1) / t_1)
	t_3 = Float64(x1 + Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(2.0 * x1) * t_2) * Float64(t_2 - 3.0)) + Float64(Float64(x1 * x1) * Float64(Float64(4.0 * t_2) - 6.0))) * t_1) + Float64(t_0 * t_2)) + Float64(Float64(x1 * x1) * x1)) + x1) + Float64(3.0 * Float64(Float64(Float64(t_0 - Float64(2.0 * x2)) - x1) / t_1))))
	t_4 = Float64(8.0 * Float64(x1 * Float64(x2 * x2)))
	tmp = 0.0
	if (t_3 <= -2e+113)
		tmp = t_4;
	elseif (t_3 <= -2e-10)
		tmp = Float64(-6.0 * x2);
	elseif (t_3 <= 1e-58)
		tmp = Float64(x1 * Float64(Float64(9.0 * x1) - 1.0));
	elseif (t_3 <= 1e+171)
		tmp = Float64(-6.0 * x2);
	elseif (t_3 <= Inf)
		tmp = t_4;
	else
		tmp = Float64(Float64(x1 * x1) * 9.0);
	end
	return tmp
end
function tmp_2 = code(x1, x2)
	t_0 = (3.0 * x1) * x1;
	t_1 = (x1 * x1) + 1.0;
	t_2 = ((t_0 + (2.0 * x2)) - x1) / t_1;
	t_3 = x1 + (((((((((2.0 * x1) * t_2) * (t_2 - 3.0)) + ((x1 * x1) * ((4.0 * t_2) - 6.0))) * t_1) + (t_0 * t_2)) + ((x1 * x1) * x1)) + x1) + (3.0 * (((t_0 - (2.0 * x2)) - x1) / t_1)));
	t_4 = 8.0 * (x1 * (x2 * x2));
	tmp = 0.0;
	if (t_3 <= -2e+113)
		tmp = t_4;
	elseif (t_3 <= -2e-10)
		tmp = -6.0 * x2;
	elseif (t_3 <= 1e-58)
		tmp = x1 * ((9.0 * x1) - 1.0);
	elseif (t_3 <= 1e+171)
		tmp = -6.0 * x2;
	elseif (t_3 <= Inf)
		tmp = t_4;
	else
		tmp = (x1 * x1) * 9.0;
	end
	tmp_2 = tmp;
end
code[x1_, x2_] := Block[{t$95$0 = N[(N[(3.0 * x1), $MachinePrecision] * x1), $MachinePrecision]}, Block[{t$95$1 = N[(N[(x1 * x1), $MachinePrecision] + 1.0), $MachinePrecision]}, Block[{t$95$2 = N[(N[(N[(t$95$0 + N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / t$95$1), $MachinePrecision]}, Block[{t$95$3 = N[(x1 + N[(N[(N[(N[(N[(N[(N[(N[(N[(2.0 * x1), $MachinePrecision] * t$95$2), $MachinePrecision] * N[(t$95$2 - 3.0), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * N[(N[(4.0 * t$95$2), $MachinePrecision] - 6.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * t$95$1), $MachinePrecision] + N[(t$95$0 * t$95$2), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * x1), $MachinePrecision]), $MachinePrecision] + x1), $MachinePrecision] + N[(3.0 * N[(N[(N[(t$95$0 - N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / t$95$1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$4 = N[(8.0 * N[(x1 * N[(x2 * x2), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$3, -2e+113], t$95$4, If[LessEqual[t$95$3, -2e-10], N[(-6.0 * x2), $MachinePrecision], If[LessEqual[t$95$3, 1e-58], N[(x1 * N[(N[(9.0 * x1), $MachinePrecision] - 1.0), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$3, 1e+171], N[(-6.0 * x2), $MachinePrecision], If[LessEqual[t$95$3, Infinity], t$95$4, N[(N[(x1 * x1), $MachinePrecision] * 9.0), $MachinePrecision]]]]]]]]]]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := \left(3 \cdot x1\right) \cdot x1\\
t_1 := x1 \cdot x1 + 1\\
t_2 := \frac{\left(t\_0 + 2 \cdot x2\right) - x1}{t\_1}\\
t_3 := x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot t\_2\right) \cdot \left(t\_2 - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot t\_2 - 6\right)\right) \cdot t\_1 + t\_0 \cdot t\_2\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(t\_0 - 2 \cdot x2\right) - x1}{t\_1}\right)\\
t_4 := 8 \cdot \left(x1 \cdot \left(x2 \cdot x2\right)\right)\\
\mathbf{if}\;t\_3 \leq -2 \cdot 10^{+113}:\\
\;\;\;\;t\_4\\

\mathbf{elif}\;t\_3 \leq -2 \cdot 10^{-10}:\\
\;\;\;\;-6 \cdot x2\\

\mathbf{elif}\;t\_3 \leq 10^{-58}:\\
\;\;\;\;x1 \cdot \left(9 \cdot x1 - 1\right)\\

\mathbf{elif}\;t\_3 \leq 10^{+171}:\\
\;\;\;\;-6 \cdot x2\\

\mathbf{elif}\;t\_3 \leq \infty:\\
\;\;\;\;t\_4\\

\mathbf{else}:\\
\;\;\;\;\left(x1 \cdot x1\right) \cdot 9\\


\end{array}
\end{array}
Derivation
  1. Split input into 4 regimes
  2. if (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))))) < -2e113 or 9.99999999999999954e170 < (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))))) < +inf.0

    1. Initial program 99.7%

      \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
    2. Taylor expanded in x1 around 0

      \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
    3. Step-by-step derivation
      1. lower-fma.f64N/A

        \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
    4. Applied rewrites45.0%

      \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
    5. Taylor expanded in x2 around inf

      \[\leadsto 8 \cdot \color{blue}{\left(x1 \cdot {x2}^{2}\right)} \]
    6. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto 8 \cdot \left(x1 \cdot \color{blue}{{x2}^{2}}\right) \]
      2. lower-*.f64N/A

        \[\leadsto 8 \cdot \left(x1 \cdot {x2}^{\color{blue}{2}}\right) \]
      3. unpow2N/A

        \[\leadsto 8 \cdot \left(x1 \cdot \left(x2 \cdot x2\right)\right) \]
      4. lower-*.f6443.4

        \[\leadsto 8 \cdot \left(x1 \cdot \left(x2 \cdot x2\right)\right) \]
    7. Applied rewrites43.4%

      \[\leadsto 8 \cdot \color{blue}{\left(x1 \cdot \left(x2 \cdot x2\right)\right)} \]

    if -2e113 < (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))))) < -2.00000000000000007e-10 or 1e-58 < (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))))) < 9.99999999999999954e170

    1. Initial program 99.3%

      \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
    2. Taylor expanded in x1 around 0

      \[\leadsto \color{blue}{-6 \cdot x2} \]
    3. Step-by-step derivation
      1. lower-*.f6458.6

        \[\leadsto -6 \cdot \color{blue}{x2} \]
    4. Applied rewrites58.6%

      \[\leadsto \color{blue}{-6 \cdot x2} \]

    if -2.00000000000000007e-10 < (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))))) < 1e-58

    1. Initial program 99.0%

      \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
    2. Taylor expanded in x1 around 0

      \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
    3. Step-by-step derivation
      1. lower-fma.f64N/A

        \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
    4. Applied rewrites100.0%

      \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
    5. Taylor expanded in x2 around 0

      \[\leadsto x1 \cdot \color{blue}{\left(9 \cdot x1 - 1\right)} \]
    6. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto x1 \cdot \left(9 \cdot x1 - \color{blue}{1}\right) \]
      2. lower--.f64N/A

        \[\leadsto x1 \cdot \left(9 \cdot x1 - 1\right) \]
      3. lower-*.f6448.7

        \[\leadsto x1 \cdot \left(9 \cdot x1 - 1\right) \]
    7. Applied rewrites48.7%

      \[\leadsto x1 \cdot \color{blue}{\left(9 \cdot x1 - 1\right)} \]

    if +inf.0 < (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))))

    1. Initial program 0.0%

      \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
    2. Taylor expanded in x1 around 0

      \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
    3. Step-by-step derivation
      1. lower-fma.f64N/A

        \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
    4. Applied rewrites59.1%

      \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
    5. Taylor expanded in x1 around inf

      \[\leadsto {x1}^{2} \cdot \color{blue}{\left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)} \]
    6. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto {x1}^{2} \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - \color{blue}{6}\right) \]
      2. pow2N/A

        \[\leadsto \left(x1 \cdot x1\right) \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right) \]
      3. lift-*.f64N/A

        \[\leadsto \left(x1 \cdot x1\right) \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right) \]
    7. Applied rewrites67.1%

      \[\leadsto \left(x1 \cdot x1\right) \cdot \color{blue}{\left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)} \]
    8. Taylor expanded in x2 around 0

      \[\leadsto \left(x1 \cdot x1\right) \cdot 9 \]
    9. Step-by-step derivation
      1. Applied rewrites85.9%

        \[\leadsto \left(x1 \cdot x1\right) \cdot 9 \]
    10. Recombined 4 regimes into one program.
    11. Add Preprocessing

    Alternative 3: 73.1% accurate, 0.3× speedup?

    \[\begin{array}{l} \\ \begin{array}{l} t_0 := \left(3 \cdot x1\right) \cdot x1\\ t_1 := x1 \cdot x1 + 1\\ t_2 := \frac{\left(t\_0 + 2 \cdot x2\right) - x1}{t\_1}\\ t_3 := x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot t\_2\right) \cdot \left(t\_2 - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot t\_2 - 6\right)\right) \cdot t\_1 + t\_0 \cdot t\_2\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(t\_0 - 2 \cdot x2\right) - x1}{t\_1}\right)\\ \mathbf{if}\;t\_3 \leq -200000000:\\ \;\;\;\;\mathsf{fma}\left(-6, x2, x1 \cdot \left(8 \cdot \left(x2 \cdot x2\right)\right)\right)\\ \mathbf{elif}\;t\_3 \leq 10^{+172}:\\ \;\;\;\;\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(9, x1, x2 \cdot -12\right) - 1\right)\right)\\ \mathbf{elif}\;t\_3 \leq \infty:\\ \;\;\;\;8 \cdot \frac{x2 \cdot x2}{x1}\\ \mathbf{else}:\\ \;\;\;\;\left(x1 \cdot x1\right) \cdot 9\\ \end{array} \end{array} \]
    (FPCore (x1 x2)
     :precision binary64
     (let* ((t_0 (* (* 3.0 x1) x1))
            (t_1 (+ (* x1 x1) 1.0))
            (t_2 (/ (- (+ t_0 (* 2.0 x2)) x1) t_1))
            (t_3
             (+
              x1
              (+
               (+
                (+
                 (+
                  (*
                   (+
                    (* (* (* 2.0 x1) t_2) (- t_2 3.0))
                    (* (* x1 x1) (- (* 4.0 t_2) 6.0)))
                   t_1)
                  (* t_0 t_2))
                 (* (* x1 x1) x1))
                x1)
               (* 3.0 (/ (- (- t_0 (* 2.0 x2)) x1) t_1))))))
       (if (<= t_3 -200000000.0)
         (fma -6.0 x2 (* x1 (* 8.0 (* x2 x2))))
         (if (<= t_3 1e+172)
           (fma -6.0 x2 (* x1 (- (fma 9.0 x1 (* x2 -12.0)) 1.0)))
           (if (<= t_3 INFINITY) (* 8.0 (/ (* x2 x2) x1)) (* (* x1 x1) 9.0))))))
    double code(double x1, double x2) {
    	double t_0 = (3.0 * x1) * x1;
    	double t_1 = (x1 * x1) + 1.0;
    	double t_2 = ((t_0 + (2.0 * x2)) - x1) / t_1;
    	double t_3 = x1 + (((((((((2.0 * x1) * t_2) * (t_2 - 3.0)) + ((x1 * x1) * ((4.0 * t_2) - 6.0))) * t_1) + (t_0 * t_2)) + ((x1 * x1) * x1)) + x1) + (3.0 * (((t_0 - (2.0 * x2)) - x1) / t_1)));
    	double tmp;
    	if (t_3 <= -200000000.0) {
    		tmp = fma(-6.0, x2, (x1 * (8.0 * (x2 * x2))));
    	} else if (t_3 <= 1e+172) {
    		tmp = fma(-6.0, x2, (x1 * (fma(9.0, x1, (x2 * -12.0)) - 1.0)));
    	} else if (t_3 <= ((double) INFINITY)) {
    		tmp = 8.0 * ((x2 * x2) / x1);
    	} else {
    		tmp = (x1 * x1) * 9.0;
    	}
    	return tmp;
    }
    
    function code(x1, x2)
    	t_0 = Float64(Float64(3.0 * x1) * x1)
    	t_1 = Float64(Float64(x1 * x1) + 1.0)
    	t_2 = Float64(Float64(Float64(t_0 + Float64(2.0 * x2)) - x1) / t_1)
    	t_3 = Float64(x1 + Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(2.0 * x1) * t_2) * Float64(t_2 - 3.0)) + Float64(Float64(x1 * x1) * Float64(Float64(4.0 * t_2) - 6.0))) * t_1) + Float64(t_0 * t_2)) + Float64(Float64(x1 * x1) * x1)) + x1) + Float64(3.0 * Float64(Float64(Float64(t_0 - Float64(2.0 * x2)) - x1) / t_1))))
    	tmp = 0.0
    	if (t_3 <= -200000000.0)
    		tmp = fma(-6.0, x2, Float64(x1 * Float64(8.0 * Float64(x2 * x2))));
    	elseif (t_3 <= 1e+172)
    		tmp = fma(-6.0, x2, Float64(x1 * Float64(fma(9.0, x1, Float64(x2 * -12.0)) - 1.0)));
    	elseif (t_3 <= Inf)
    		tmp = Float64(8.0 * Float64(Float64(x2 * x2) / x1));
    	else
    		tmp = Float64(Float64(x1 * x1) * 9.0);
    	end
    	return tmp
    end
    
    code[x1_, x2_] := Block[{t$95$0 = N[(N[(3.0 * x1), $MachinePrecision] * x1), $MachinePrecision]}, Block[{t$95$1 = N[(N[(x1 * x1), $MachinePrecision] + 1.0), $MachinePrecision]}, Block[{t$95$2 = N[(N[(N[(t$95$0 + N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / t$95$1), $MachinePrecision]}, Block[{t$95$3 = N[(x1 + N[(N[(N[(N[(N[(N[(N[(N[(N[(2.0 * x1), $MachinePrecision] * t$95$2), $MachinePrecision] * N[(t$95$2 - 3.0), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * N[(N[(4.0 * t$95$2), $MachinePrecision] - 6.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * t$95$1), $MachinePrecision] + N[(t$95$0 * t$95$2), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * x1), $MachinePrecision]), $MachinePrecision] + x1), $MachinePrecision] + N[(3.0 * N[(N[(N[(t$95$0 - N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / t$95$1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$3, -200000000.0], N[(-6.0 * x2 + N[(x1 * N[(8.0 * N[(x2 * x2), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$3, 1e+172], N[(-6.0 * x2 + N[(x1 * N[(N[(9.0 * x1 + N[(x2 * -12.0), $MachinePrecision]), $MachinePrecision] - 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$3, Infinity], N[(8.0 * N[(N[(x2 * x2), $MachinePrecision] / x1), $MachinePrecision]), $MachinePrecision], N[(N[(x1 * x1), $MachinePrecision] * 9.0), $MachinePrecision]]]]]]]]
    
    \begin{array}{l}
    
    \\
    \begin{array}{l}
    t_0 := \left(3 \cdot x1\right) \cdot x1\\
    t_1 := x1 \cdot x1 + 1\\
    t_2 := \frac{\left(t\_0 + 2 \cdot x2\right) - x1}{t\_1}\\
    t_3 := x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot t\_2\right) \cdot \left(t\_2 - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot t\_2 - 6\right)\right) \cdot t\_1 + t\_0 \cdot t\_2\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(t\_0 - 2 \cdot x2\right) - x1}{t\_1}\right)\\
    \mathbf{if}\;t\_3 \leq -200000000:\\
    \;\;\;\;\mathsf{fma}\left(-6, x2, x1 \cdot \left(8 \cdot \left(x2 \cdot x2\right)\right)\right)\\
    
    \mathbf{elif}\;t\_3 \leq 10^{+172}:\\
    \;\;\;\;\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(9, x1, x2 \cdot -12\right) - 1\right)\right)\\
    
    \mathbf{elif}\;t\_3 \leq \infty:\\
    \;\;\;\;8 \cdot \frac{x2 \cdot x2}{x1}\\
    
    \mathbf{else}:\\
    \;\;\;\;\left(x1 \cdot x1\right) \cdot 9\\
    
    
    \end{array}
    \end{array}
    
    Derivation
    1. Split input into 4 regimes
    2. if (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))))) < -2e8

      1. Initial program 99.7%

        \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
      2. Taylor expanded in x1 around 0

        \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
      3. Step-by-step derivation
        1. lower-fma.f64N/A

          \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
      4. Applied rewrites69.5%

        \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
      5. Taylor expanded in x2 around inf

        \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(8 \cdot {x2}^{2}\right)\right) \]
      6. Step-by-step derivation
        1. lower-*.f64N/A

          \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(8 \cdot {x2}^{2}\right)\right) \]
        2. unpow2N/A

          \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(8 \cdot \left(x2 \cdot x2\right)\right)\right) \]
        3. lower-*.f6471.4

          \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(8 \cdot \left(x2 \cdot x2\right)\right)\right) \]
      7. Applied rewrites71.4%

        \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(8 \cdot \left(x2 \cdot x2\right)\right)\right) \]

      if -2e8 < (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))))) < 1.0000000000000001e172

      1. Initial program 99.1%

        \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
      2. Taylor expanded in x1 around 0

        \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
      3. Step-by-step derivation
        1. lower-fma.f64N/A

          \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
      4. Applied rewrites87.4%

        \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
      5. Taylor expanded in x2 around 0

        \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(\left(9 \cdot x1 + x2 \cdot \left(12 \cdot x1 - 12\right)\right) - 1\right)\right) \]
      6. Step-by-step derivation
        1. lower-fma.f64N/A

          \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(9, x1, x2 \cdot \left(12 \cdot x1 - 12\right)\right) - 1\right)\right) \]
        2. lower-*.f64N/A

          \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(9, x1, x2 \cdot \left(12 \cdot x1 - 12\right)\right) - 1\right)\right) \]
        3. lower--.f64N/A

          \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(9, x1, x2 \cdot \left(12 \cdot x1 - 12\right)\right) - 1\right)\right) \]
        4. lower-*.f6485.8

          \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(9, x1, x2 \cdot \left(12 \cdot x1 - 12\right)\right) - 1\right)\right) \]
      7. Applied rewrites85.8%

        \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(9, x1, x2 \cdot \left(12 \cdot x1 - 12\right)\right) - 1\right)\right) \]
      8. Taylor expanded in x1 around 0

        \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(9, x1, x2 \cdot -12\right) - 1\right)\right) \]
      9. Step-by-step derivation
        1. Applied rewrites85.7%

          \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(9, x1, x2 \cdot -12\right) - 1\right)\right) \]

        if 1.0000000000000001e172 < (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))))) < +inf.0

        1. Initial program 99.7%

          \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
        2. Taylor expanded in x2 around inf

          \[\leadsto \color{blue}{8 \cdot \frac{x1 \cdot {x2}^{2}}{1 + {x1}^{2}}} \]
        3. Step-by-step derivation
          1. lower-*.f64N/A

            \[\leadsto 8 \cdot \color{blue}{\frac{x1 \cdot {x2}^{2}}{1 + {x1}^{2}}} \]
          2. lower-/.f64N/A

            \[\leadsto 8 \cdot \frac{x1 \cdot {x2}^{2}}{\color{blue}{1 + {x1}^{2}}} \]
          3. lower-*.f64N/A

            \[\leadsto 8 \cdot \frac{x1 \cdot {x2}^{2}}{\color{blue}{1} + {x1}^{2}} \]
          4. unpow2N/A

            \[\leadsto 8 \cdot \frac{x1 \cdot \left(x2 \cdot x2\right)}{1 + {x1}^{2}} \]
          5. lower-*.f64N/A

            \[\leadsto 8 \cdot \frac{x1 \cdot \left(x2 \cdot x2\right)}{1 + {x1}^{2}} \]
          6. lower-+.f64N/A

            \[\leadsto 8 \cdot \frac{x1 \cdot \left(x2 \cdot x2\right)}{1 + \color{blue}{{x1}^{2}}} \]
          7. pow2N/A

            \[\leadsto 8 \cdot \frac{x1 \cdot \left(x2 \cdot x2\right)}{1 + x1 \cdot \color{blue}{x1}} \]
          8. lift-*.f6439.1

            \[\leadsto 8 \cdot \frac{x1 \cdot \left(x2 \cdot x2\right)}{1 + x1 \cdot \color{blue}{x1}} \]
        4. Applied rewrites39.1%

          \[\leadsto \color{blue}{8 \cdot \frac{x1 \cdot \left(x2 \cdot x2\right)}{1 + x1 \cdot x1}} \]
        5. Taylor expanded in x1 around inf

          \[\leadsto 8 \cdot \frac{{x2}^{2}}{\color{blue}{x1}} \]
        6. Step-by-step derivation
          1. lower-/.f64N/A

            \[\leadsto 8 \cdot \frac{{x2}^{2}}{x1} \]
          2. pow2N/A

            \[\leadsto 8 \cdot \frac{x2 \cdot x2}{x1} \]
          3. lift-*.f6433.0

            \[\leadsto 8 \cdot \frac{x2 \cdot x2}{x1} \]
        7. Applied rewrites33.0%

          \[\leadsto 8 \cdot \frac{x2 \cdot x2}{\color{blue}{x1}} \]

        if +inf.0 < (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))))

        1. Initial program 0.0%

          \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
        2. Taylor expanded in x1 around 0

          \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
        3. Step-by-step derivation
          1. lower-fma.f64N/A

            \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
        4. Applied rewrites59.1%

          \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
        5. Taylor expanded in x1 around inf

          \[\leadsto {x1}^{2} \cdot \color{blue}{\left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)} \]
        6. Step-by-step derivation
          1. lower-*.f64N/A

            \[\leadsto {x1}^{2} \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - \color{blue}{6}\right) \]
          2. pow2N/A

            \[\leadsto \left(x1 \cdot x1\right) \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right) \]
          3. lift-*.f64N/A

            \[\leadsto \left(x1 \cdot x1\right) \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right) \]
        7. Applied rewrites67.1%

          \[\leadsto \left(x1 \cdot x1\right) \cdot \color{blue}{\left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)} \]
        8. Taylor expanded in x2 around 0

          \[\leadsto \left(x1 \cdot x1\right) \cdot 9 \]
        9. Step-by-step derivation
          1. Applied rewrites85.9%

            \[\leadsto \left(x1 \cdot x1\right) \cdot 9 \]
        10. Recombined 4 regimes into one program.
        11. Add Preprocessing

        Alternative 4: 74.6% accurate, 0.3× speedup?

        \[\begin{array}{l} \\ \begin{array}{l} t_0 := \left(3 \cdot x1\right) \cdot x1\\ t_1 := x1 \cdot x1 + 1\\ t_2 := \frac{\left(t\_0 + 2 \cdot x2\right) - x1}{t\_1}\\ t_3 := x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot t\_2\right) \cdot \left(t\_2 - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot t\_2 - 6\right)\right) \cdot t\_1 + t\_0 \cdot t\_2\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(t\_0 - 2 \cdot x2\right) - x1}{t\_1}\right)\\ t_4 := \mathsf{fma}\left(-6, x2, x1 \cdot \left(8 \cdot \left(x2 \cdot x2\right)\right)\right)\\ \mathbf{if}\;t\_3 \leq -200000000:\\ \;\;\;\;t\_4\\ \mathbf{elif}\;t\_3 \leq 5 \cdot 10^{+34}:\\ \;\;\;\;\mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right)\right)\\ \mathbf{elif}\;t\_3 \leq \infty:\\ \;\;\;\;t\_4\\ \mathbf{else}:\\ \;\;\;\;\left(x1 \cdot x1\right) \cdot 9\\ \end{array} \end{array} \]
        (FPCore (x1 x2)
         :precision binary64
         (let* ((t_0 (* (* 3.0 x1) x1))
                (t_1 (+ (* x1 x1) 1.0))
                (t_2 (/ (- (+ t_0 (* 2.0 x2)) x1) t_1))
                (t_3
                 (+
                  x1
                  (+
                   (+
                    (+
                     (+
                      (*
                       (+
                        (* (* (* 2.0 x1) t_2) (- t_2 3.0))
                        (* (* x1 x1) (- (* 4.0 t_2) 6.0)))
                       t_1)
                      (* t_0 t_2))
                     (* (* x1 x1) x1))
                    x1)
                   (* 3.0 (/ (- (- t_0 (* 2.0 x2)) x1) t_1)))))
                (t_4 (fma -6.0 x2 (* x1 (* 8.0 (* x2 x2))))))
           (if (<= t_3 -200000000.0)
             t_4
             (if (<= t_3 5e+34)
               (fma -6.0 x2 (* x1 (- (* 9.0 x1) 1.0)))
               (if (<= t_3 INFINITY) t_4 (* (* x1 x1) 9.0))))))
        double code(double x1, double x2) {
        	double t_0 = (3.0 * x1) * x1;
        	double t_1 = (x1 * x1) + 1.0;
        	double t_2 = ((t_0 + (2.0 * x2)) - x1) / t_1;
        	double t_3 = x1 + (((((((((2.0 * x1) * t_2) * (t_2 - 3.0)) + ((x1 * x1) * ((4.0 * t_2) - 6.0))) * t_1) + (t_0 * t_2)) + ((x1 * x1) * x1)) + x1) + (3.0 * (((t_0 - (2.0 * x2)) - x1) / t_1)));
        	double t_4 = fma(-6.0, x2, (x1 * (8.0 * (x2 * x2))));
        	double tmp;
        	if (t_3 <= -200000000.0) {
        		tmp = t_4;
        	} else if (t_3 <= 5e+34) {
        		tmp = fma(-6.0, x2, (x1 * ((9.0 * x1) - 1.0)));
        	} else if (t_3 <= ((double) INFINITY)) {
        		tmp = t_4;
        	} else {
        		tmp = (x1 * x1) * 9.0;
        	}
        	return tmp;
        }
        
        function code(x1, x2)
        	t_0 = Float64(Float64(3.0 * x1) * x1)
        	t_1 = Float64(Float64(x1 * x1) + 1.0)
        	t_2 = Float64(Float64(Float64(t_0 + Float64(2.0 * x2)) - x1) / t_1)
        	t_3 = Float64(x1 + Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(2.0 * x1) * t_2) * Float64(t_2 - 3.0)) + Float64(Float64(x1 * x1) * Float64(Float64(4.0 * t_2) - 6.0))) * t_1) + Float64(t_0 * t_2)) + Float64(Float64(x1 * x1) * x1)) + x1) + Float64(3.0 * Float64(Float64(Float64(t_0 - Float64(2.0 * x2)) - x1) / t_1))))
        	t_4 = fma(-6.0, x2, Float64(x1 * Float64(8.0 * Float64(x2 * x2))))
        	tmp = 0.0
        	if (t_3 <= -200000000.0)
        		tmp = t_4;
        	elseif (t_3 <= 5e+34)
        		tmp = fma(-6.0, x2, Float64(x1 * Float64(Float64(9.0 * x1) - 1.0)));
        	elseif (t_3 <= Inf)
        		tmp = t_4;
        	else
        		tmp = Float64(Float64(x1 * x1) * 9.0);
        	end
        	return tmp
        end
        
        code[x1_, x2_] := Block[{t$95$0 = N[(N[(3.0 * x1), $MachinePrecision] * x1), $MachinePrecision]}, Block[{t$95$1 = N[(N[(x1 * x1), $MachinePrecision] + 1.0), $MachinePrecision]}, Block[{t$95$2 = N[(N[(N[(t$95$0 + N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / t$95$1), $MachinePrecision]}, Block[{t$95$3 = N[(x1 + N[(N[(N[(N[(N[(N[(N[(N[(N[(2.0 * x1), $MachinePrecision] * t$95$2), $MachinePrecision] * N[(t$95$2 - 3.0), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * N[(N[(4.0 * t$95$2), $MachinePrecision] - 6.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * t$95$1), $MachinePrecision] + N[(t$95$0 * t$95$2), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * x1), $MachinePrecision]), $MachinePrecision] + x1), $MachinePrecision] + N[(3.0 * N[(N[(N[(t$95$0 - N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / t$95$1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$4 = N[(-6.0 * x2 + N[(x1 * N[(8.0 * N[(x2 * x2), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$3, -200000000.0], t$95$4, If[LessEqual[t$95$3, 5e+34], N[(-6.0 * x2 + N[(x1 * N[(N[(9.0 * x1), $MachinePrecision] - 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$3, Infinity], t$95$4, N[(N[(x1 * x1), $MachinePrecision] * 9.0), $MachinePrecision]]]]]]]]]
        
        \begin{array}{l}
        
        \\
        \begin{array}{l}
        t_0 := \left(3 \cdot x1\right) \cdot x1\\
        t_1 := x1 \cdot x1 + 1\\
        t_2 := \frac{\left(t\_0 + 2 \cdot x2\right) - x1}{t\_1}\\
        t_3 := x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot t\_2\right) \cdot \left(t\_2 - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot t\_2 - 6\right)\right) \cdot t\_1 + t\_0 \cdot t\_2\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(t\_0 - 2 \cdot x2\right) - x1}{t\_1}\right)\\
        t_4 := \mathsf{fma}\left(-6, x2, x1 \cdot \left(8 \cdot \left(x2 \cdot x2\right)\right)\right)\\
        \mathbf{if}\;t\_3 \leq -200000000:\\
        \;\;\;\;t\_4\\
        
        \mathbf{elif}\;t\_3 \leq 5 \cdot 10^{+34}:\\
        \;\;\;\;\mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right)\right)\\
        
        \mathbf{elif}\;t\_3 \leq \infty:\\
        \;\;\;\;t\_4\\
        
        \mathbf{else}:\\
        \;\;\;\;\left(x1 \cdot x1\right) \cdot 9\\
        
        
        \end{array}
        \end{array}
        
        Derivation
        1. Split input into 3 regimes
        2. if (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))))) < -2e8 or 4.9999999999999998e34 < (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))))) < +inf.0

          1. Initial program 99.6%

            \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
          2. Taylor expanded in x1 around 0

            \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
          3. Step-by-step derivation
            1. lower-fma.f64N/A

              \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
          4. Applied rewrites51.8%

            \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
          5. Taylor expanded in x2 around inf

            \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(8 \cdot {x2}^{2}\right)\right) \]
          6. Step-by-step derivation
            1. lower-*.f64N/A

              \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(8 \cdot {x2}^{2}\right)\right) \]
            2. unpow2N/A

              \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(8 \cdot \left(x2 \cdot x2\right)\right)\right) \]
            3. lower-*.f6452.9

              \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(8 \cdot \left(x2 \cdot x2\right)\right)\right) \]
          7. Applied rewrites52.9%

            \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(8 \cdot \left(x2 \cdot x2\right)\right)\right) \]

          if -2e8 < (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))))) < 4.9999999999999998e34

          1. Initial program 99.0%

            \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
          2. Taylor expanded in x1 around 0

            \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
          3. Step-by-step derivation
            1. lower-fma.f64N/A

              \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
          4. Applied rewrites96.7%

            \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
          5. Taylor expanded in x2 around 0

            \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right)\right) \]
          6. Step-by-step derivation
            1. lower-*.f6496.4

              \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right)\right) \]
          7. Applied rewrites96.4%

            \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right)\right) \]

          if +inf.0 < (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))))

          1. Initial program 0.0%

            \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
          2. Taylor expanded in x1 around 0

            \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
          3. Step-by-step derivation
            1. lower-fma.f64N/A

              \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
          4. Applied rewrites59.1%

            \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
          5. Taylor expanded in x1 around inf

            \[\leadsto {x1}^{2} \cdot \color{blue}{\left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)} \]
          6. Step-by-step derivation
            1. lower-*.f64N/A

              \[\leadsto {x1}^{2} \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - \color{blue}{6}\right) \]
            2. pow2N/A

              \[\leadsto \left(x1 \cdot x1\right) \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right) \]
            3. lift-*.f64N/A

              \[\leadsto \left(x1 \cdot x1\right) \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right) \]
          7. Applied rewrites67.1%

            \[\leadsto \left(x1 \cdot x1\right) \cdot \color{blue}{\left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)} \]
          8. Taylor expanded in x2 around 0

            \[\leadsto \left(x1 \cdot x1\right) \cdot 9 \]
          9. Step-by-step derivation
            1. Applied rewrites85.9%

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

          Alternative 5: 71.4% accurate, 0.3× speedup?

          \[\begin{array}{l} \\ \begin{array}{l} t_0 := \left(3 \cdot x1\right) \cdot x1\\ t_1 := x1 \cdot x1 + 1\\ t_2 := \frac{\left(t\_0 + 2 \cdot x2\right) - x1}{t\_1}\\ t_3 := x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot t\_2\right) \cdot \left(t\_2 - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot t\_2 - 6\right)\right) \cdot t\_1 + t\_0 \cdot t\_2\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(t\_0 - 2 \cdot x2\right) - x1}{t\_1}\right)\\ \mathbf{if}\;t\_3 \leq -2 \cdot 10^{+113}:\\ \;\;\;\;8 \cdot \left(x1 \cdot \left(x2 \cdot x2\right)\right)\\ \mathbf{elif}\;t\_3 \leq 10^{+172}:\\ \;\;\;\;\mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right)\right)\\ \mathbf{elif}\;t\_3 \leq \infty:\\ \;\;\;\;8 \cdot \frac{x2 \cdot x2}{x1}\\ \mathbf{else}:\\ \;\;\;\;\left(x1 \cdot x1\right) \cdot 9\\ \end{array} \end{array} \]
          (FPCore (x1 x2)
           :precision binary64
           (let* ((t_0 (* (* 3.0 x1) x1))
                  (t_1 (+ (* x1 x1) 1.0))
                  (t_2 (/ (- (+ t_0 (* 2.0 x2)) x1) t_1))
                  (t_3
                   (+
                    x1
                    (+
                     (+
                      (+
                       (+
                        (*
                         (+
                          (* (* (* 2.0 x1) t_2) (- t_2 3.0))
                          (* (* x1 x1) (- (* 4.0 t_2) 6.0)))
                         t_1)
                        (* t_0 t_2))
                       (* (* x1 x1) x1))
                      x1)
                     (* 3.0 (/ (- (- t_0 (* 2.0 x2)) x1) t_1))))))
             (if (<= t_3 -2e+113)
               (* 8.0 (* x1 (* x2 x2)))
               (if (<= t_3 1e+172)
                 (fma -6.0 x2 (* x1 (- (* 9.0 x1) 1.0)))
                 (if (<= t_3 INFINITY) (* 8.0 (/ (* x2 x2) x1)) (* (* x1 x1) 9.0))))))
          double code(double x1, double x2) {
          	double t_0 = (3.0 * x1) * x1;
          	double t_1 = (x1 * x1) + 1.0;
          	double t_2 = ((t_0 + (2.0 * x2)) - x1) / t_1;
          	double t_3 = x1 + (((((((((2.0 * x1) * t_2) * (t_2 - 3.0)) + ((x1 * x1) * ((4.0 * t_2) - 6.0))) * t_1) + (t_0 * t_2)) + ((x1 * x1) * x1)) + x1) + (3.0 * (((t_0 - (2.0 * x2)) - x1) / t_1)));
          	double tmp;
          	if (t_3 <= -2e+113) {
          		tmp = 8.0 * (x1 * (x2 * x2));
          	} else if (t_3 <= 1e+172) {
          		tmp = fma(-6.0, x2, (x1 * ((9.0 * x1) - 1.0)));
          	} else if (t_3 <= ((double) INFINITY)) {
          		tmp = 8.0 * ((x2 * x2) / x1);
          	} else {
          		tmp = (x1 * x1) * 9.0;
          	}
          	return tmp;
          }
          
          function code(x1, x2)
          	t_0 = Float64(Float64(3.0 * x1) * x1)
          	t_1 = Float64(Float64(x1 * x1) + 1.0)
          	t_2 = Float64(Float64(Float64(t_0 + Float64(2.0 * x2)) - x1) / t_1)
          	t_3 = Float64(x1 + Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(2.0 * x1) * t_2) * Float64(t_2 - 3.0)) + Float64(Float64(x1 * x1) * Float64(Float64(4.0 * t_2) - 6.0))) * t_1) + Float64(t_0 * t_2)) + Float64(Float64(x1 * x1) * x1)) + x1) + Float64(3.0 * Float64(Float64(Float64(t_0 - Float64(2.0 * x2)) - x1) / t_1))))
          	tmp = 0.0
          	if (t_3 <= -2e+113)
          		tmp = Float64(8.0 * Float64(x1 * Float64(x2 * x2)));
          	elseif (t_3 <= 1e+172)
          		tmp = fma(-6.0, x2, Float64(x1 * Float64(Float64(9.0 * x1) - 1.0)));
          	elseif (t_3 <= Inf)
          		tmp = Float64(8.0 * Float64(Float64(x2 * x2) / x1));
          	else
          		tmp = Float64(Float64(x1 * x1) * 9.0);
          	end
          	return tmp
          end
          
          code[x1_, x2_] := Block[{t$95$0 = N[(N[(3.0 * x1), $MachinePrecision] * x1), $MachinePrecision]}, Block[{t$95$1 = N[(N[(x1 * x1), $MachinePrecision] + 1.0), $MachinePrecision]}, Block[{t$95$2 = N[(N[(N[(t$95$0 + N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / t$95$1), $MachinePrecision]}, Block[{t$95$3 = N[(x1 + N[(N[(N[(N[(N[(N[(N[(N[(N[(2.0 * x1), $MachinePrecision] * t$95$2), $MachinePrecision] * N[(t$95$2 - 3.0), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * N[(N[(4.0 * t$95$2), $MachinePrecision] - 6.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * t$95$1), $MachinePrecision] + N[(t$95$0 * t$95$2), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * x1), $MachinePrecision]), $MachinePrecision] + x1), $MachinePrecision] + N[(3.0 * N[(N[(N[(t$95$0 - N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / t$95$1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$3, -2e+113], N[(8.0 * N[(x1 * N[(x2 * x2), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$3, 1e+172], N[(-6.0 * x2 + N[(x1 * N[(N[(9.0 * x1), $MachinePrecision] - 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$3, Infinity], N[(8.0 * N[(N[(x2 * x2), $MachinePrecision] / x1), $MachinePrecision]), $MachinePrecision], N[(N[(x1 * x1), $MachinePrecision] * 9.0), $MachinePrecision]]]]]]]]
          
          \begin{array}{l}
          
          \\
          \begin{array}{l}
          t_0 := \left(3 \cdot x1\right) \cdot x1\\
          t_1 := x1 \cdot x1 + 1\\
          t_2 := \frac{\left(t\_0 + 2 \cdot x2\right) - x1}{t\_1}\\
          t_3 := x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot t\_2\right) \cdot \left(t\_2 - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot t\_2 - 6\right)\right) \cdot t\_1 + t\_0 \cdot t\_2\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(t\_0 - 2 \cdot x2\right) - x1}{t\_1}\right)\\
          \mathbf{if}\;t\_3 \leq -2 \cdot 10^{+113}:\\
          \;\;\;\;8 \cdot \left(x1 \cdot \left(x2 \cdot x2\right)\right)\\
          
          \mathbf{elif}\;t\_3 \leq 10^{+172}:\\
          \;\;\;\;\mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right)\right)\\
          
          \mathbf{elif}\;t\_3 \leq \infty:\\
          \;\;\;\;8 \cdot \frac{x2 \cdot x2}{x1}\\
          
          \mathbf{else}:\\
          \;\;\;\;\left(x1 \cdot x1\right) \cdot 9\\
          
          
          \end{array}
          \end{array}
          
          Derivation
          1. Split input into 4 regimes
          2. if (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))))) < -2e113

            1. Initial program 99.8%

              \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
            2. Taylor expanded in x1 around 0

              \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
            3. Step-by-step derivation
              1. lower-fma.f64N/A

                \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
            4. Applied rewrites60.0%

              \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
            5. Taylor expanded in x2 around inf

              \[\leadsto 8 \cdot \color{blue}{\left(x1 \cdot {x2}^{2}\right)} \]
            6. Step-by-step derivation
              1. lower-*.f64N/A

                \[\leadsto 8 \cdot \left(x1 \cdot \color{blue}{{x2}^{2}}\right) \]
              2. lower-*.f64N/A

                \[\leadsto 8 \cdot \left(x1 \cdot {x2}^{\color{blue}{2}}\right) \]
              3. unpow2N/A

                \[\leadsto 8 \cdot \left(x1 \cdot \left(x2 \cdot x2\right)\right) \]
              4. lower-*.f6452.7

                \[\leadsto 8 \cdot \left(x1 \cdot \left(x2 \cdot x2\right)\right) \]
            7. Applied rewrites52.7%

              \[\leadsto 8 \cdot \color{blue}{\left(x1 \cdot \left(x2 \cdot x2\right)\right)} \]

            if -2e113 < (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))))) < 1.0000000000000001e172

            1. Initial program 99.2%

              \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
            2. Taylor expanded in x1 around 0

              \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
            3. Step-by-step derivation
              1. lower-fma.f64N/A

                \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
            4. Applied rewrites88.3%

              \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
            5. Taylor expanded in x2 around 0

              \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right)\right) \]
            6. Step-by-step derivation
              1. lower-*.f6485.3

                \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right)\right) \]
            7. Applied rewrites85.3%

              \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right)\right) \]

            if 1.0000000000000001e172 < (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))))) < +inf.0

            1. Initial program 99.7%

              \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
            2. Taylor expanded in x2 around inf

              \[\leadsto \color{blue}{8 \cdot \frac{x1 \cdot {x2}^{2}}{1 + {x1}^{2}}} \]
            3. Step-by-step derivation
              1. lower-*.f64N/A

                \[\leadsto 8 \cdot \color{blue}{\frac{x1 \cdot {x2}^{2}}{1 + {x1}^{2}}} \]
              2. lower-/.f64N/A

                \[\leadsto 8 \cdot \frac{x1 \cdot {x2}^{2}}{\color{blue}{1 + {x1}^{2}}} \]
              3. lower-*.f64N/A

                \[\leadsto 8 \cdot \frac{x1 \cdot {x2}^{2}}{\color{blue}{1} + {x1}^{2}} \]
              4. unpow2N/A

                \[\leadsto 8 \cdot \frac{x1 \cdot \left(x2 \cdot x2\right)}{1 + {x1}^{2}} \]
              5. lower-*.f64N/A

                \[\leadsto 8 \cdot \frac{x1 \cdot \left(x2 \cdot x2\right)}{1 + {x1}^{2}} \]
              6. lower-+.f64N/A

                \[\leadsto 8 \cdot \frac{x1 \cdot \left(x2 \cdot x2\right)}{1 + \color{blue}{{x1}^{2}}} \]
              7. pow2N/A

                \[\leadsto 8 \cdot \frac{x1 \cdot \left(x2 \cdot x2\right)}{1 + x1 \cdot \color{blue}{x1}} \]
              8. lift-*.f6439.1

                \[\leadsto 8 \cdot \frac{x1 \cdot \left(x2 \cdot x2\right)}{1 + x1 \cdot \color{blue}{x1}} \]
            4. Applied rewrites39.1%

              \[\leadsto \color{blue}{8 \cdot \frac{x1 \cdot \left(x2 \cdot x2\right)}{1 + x1 \cdot x1}} \]
            5. Taylor expanded in x1 around inf

              \[\leadsto 8 \cdot \frac{{x2}^{2}}{\color{blue}{x1}} \]
            6. Step-by-step derivation
              1. lower-/.f64N/A

                \[\leadsto 8 \cdot \frac{{x2}^{2}}{x1} \]
              2. pow2N/A

                \[\leadsto 8 \cdot \frac{x2 \cdot x2}{x1} \]
              3. lift-*.f6433.0

                \[\leadsto 8 \cdot \frac{x2 \cdot x2}{x1} \]
            7. Applied rewrites33.0%

              \[\leadsto 8 \cdot \frac{x2 \cdot x2}{\color{blue}{x1}} \]

            if +inf.0 < (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))))

            1. Initial program 0.0%

              \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
            2. Taylor expanded in x1 around 0

              \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
            3. Step-by-step derivation
              1. lower-fma.f64N/A

                \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
            4. Applied rewrites59.1%

              \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
            5. Taylor expanded in x1 around inf

              \[\leadsto {x1}^{2} \cdot \color{blue}{\left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)} \]
            6. Step-by-step derivation
              1. lower-*.f64N/A

                \[\leadsto {x1}^{2} \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - \color{blue}{6}\right) \]
              2. pow2N/A

                \[\leadsto \left(x1 \cdot x1\right) \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right) \]
              3. lift-*.f64N/A

                \[\leadsto \left(x1 \cdot x1\right) \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right) \]
            7. Applied rewrites67.1%

              \[\leadsto \left(x1 \cdot x1\right) \cdot \color{blue}{\left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)} \]
            8. Taylor expanded in x2 around 0

              \[\leadsto \left(x1 \cdot x1\right) \cdot 9 \]
            9. Step-by-step derivation
              1. Applied rewrites85.9%

                \[\leadsto \left(x1 \cdot x1\right) \cdot 9 \]
            10. Recombined 4 regimes into one program.
            11. Add Preprocessing

            Alternative 6: 72.5% accurate, 0.3× speedup?

            \[\begin{array}{l} \\ \begin{array}{l} t_0 := \left(3 \cdot x1\right) \cdot x1\\ t_1 := x1 \cdot x1 + 1\\ t_2 := \frac{\left(t\_0 + 2 \cdot x2\right) - x1}{t\_1}\\ t_3 := x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot t\_2\right) \cdot \left(t\_2 - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot t\_2 - 6\right)\right) \cdot t\_1 + t\_0 \cdot t\_2\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(t\_0 - 2 \cdot x2\right) - x1}{t\_1}\right)\\ t_4 := 8 \cdot \left(x1 \cdot \left(x2 \cdot x2\right)\right)\\ \mathbf{if}\;t\_3 \leq -2 \cdot 10^{+113}:\\ \;\;\;\;t\_4\\ \mathbf{elif}\;t\_3 \leq 2.2 \cdot 10^{+171}:\\ \;\;\;\;\mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right)\right)\\ \mathbf{elif}\;t\_3 \leq \infty:\\ \;\;\;\;t\_4\\ \mathbf{else}:\\ \;\;\;\;\left(x1 \cdot x1\right) \cdot 9\\ \end{array} \end{array} \]
            (FPCore (x1 x2)
             :precision binary64
             (let* ((t_0 (* (* 3.0 x1) x1))
                    (t_1 (+ (* x1 x1) 1.0))
                    (t_2 (/ (- (+ t_0 (* 2.0 x2)) x1) t_1))
                    (t_3
                     (+
                      x1
                      (+
                       (+
                        (+
                         (+
                          (*
                           (+
                            (* (* (* 2.0 x1) t_2) (- t_2 3.0))
                            (* (* x1 x1) (- (* 4.0 t_2) 6.0)))
                           t_1)
                          (* t_0 t_2))
                         (* (* x1 x1) x1))
                        x1)
                       (* 3.0 (/ (- (- t_0 (* 2.0 x2)) x1) t_1)))))
                    (t_4 (* 8.0 (* x1 (* x2 x2)))))
               (if (<= t_3 -2e+113)
                 t_4
                 (if (<= t_3 2.2e+171)
                   (fma -6.0 x2 (* x1 (- (* 9.0 x1) 1.0)))
                   (if (<= t_3 INFINITY) t_4 (* (* x1 x1) 9.0))))))
            double code(double x1, double x2) {
            	double t_0 = (3.0 * x1) * x1;
            	double t_1 = (x1 * x1) + 1.0;
            	double t_2 = ((t_0 + (2.0 * x2)) - x1) / t_1;
            	double t_3 = x1 + (((((((((2.0 * x1) * t_2) * (t_2 - 3.0)) + ((x1 * x1) * ((4.0 * t_2) - 6.0))) * t_1) + (t_0 * t_2)) + ((x1 * x1) * x1)) + x1) + (3.0 * (((t_0 - (2.0 * x2)) - x1) / t_1)));
            	double t_4 = 8.0 * (x1 * (x2 * x2));
            	double tmp;
            	if (t_3 <= -2e+113) {
            		tmp = t_4;
            	} else if (t_3 <= 2.2e+171) {
            		tmp = fma(-6.0, x2, (x1 * ((9.0 * x1) - 1.0)));
            	} else if (t_3 <= ((double) INFINITY)) {
            		tmp = t_4;
            	} else {
            		tmp = (x1 * x1) * 9.0;
            	}
            	return tmp;
            }
            
            function code(x1, x2)
            	t_0 = Float64(Float64(3.0 * x1) * x1)
            	t_1 = Float64(Float64(x1 * x1) + 1.0)
            	t_2 = Float64(Float64(Float64(t_0 + Float64(2.0 * x2)) - x1) / t_1)
            	t_3 = Float64(x1 + Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(2.0 * x1) * t_2) * Float64(t_2 - 3.0)) + Float64(Float64(x1 * x1) * Float64(Float64(4.0 * t_2) - 6.0))) * t_1) + Float64(t_0 * t_2)) + Float64(Float64(x1 * x1) * x1)) + x1) + Float64(3.0 * Float64(Float64(Float64(t_0 - Float64(2.0 * x2)) - x1) / t_1))))
            	t_4 = Float64(8.0 * Float64(x1 * Float64(x2 * x2)))
            	tmp = 0.0
            	if (t_3 <= -2e+113)
            		tmp = t_4;
            	elseif (t_3 <= 2.2e+171)
            		tmp = fma(-6.0, x2, Float64(x1 * Float64(Float64(9.0 * x1) - 1.0)));
            	elseif (t_3 <= Inf)
            		tmp = t_4;
            	else
            		tmp = Float64(Float64(x1 * x1) * 9.0);
            	end
            	return tmp
            end
            
            code[x1_, x2_] := Block[{t$95$0 = N[(N[(3.0 * x1), $MachinePrecision] * x1), $MachinePrecision]}, Block[{t$95$1 = N[(N[(x1 * x1), $MachinePrecision] + 1.0), $MachinePrecision]}, Block[{t$95$2 = N[(N[(N[(t$95$0 + N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / t$95$1), $MachinePrecision]}, Block[{t$95$3 = N[(x1 + N[(N[(N[(N[(N[(N[(N[(N[(N[(2.0 * x1), $MachinePrecision] * t$95$2), $MachinePrecision] * N[(t$95$2 - 3.0), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * N[(N[(4.0 * t$95$2), $MachinePrecision] - 6.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * t$95$1), $MachinePrecision] + N[(t$95$0 * t$95$2), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * x1), $MachinePrecision]), $MachinePrecision] + x1), $MachinePrecision] + N[(3.0 * N[(N[(N[(t$95$0 - N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / t$95$1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$4 = N[(8.0 * N[(x1 * N[(x2 * x2), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$3, -2e+113], t$95$4, If[LessEqual[t$95$3, 2.2e+171], N[(-6.0 * x2 + N[(x1 * N[(N[(9.0 * x1), $MachinePrecision] - 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$3, Infinity], t$95$4, N[(N[(x1 * x1), $MachinePrecision] * 9.0), $MachinePrecision]]]]]]]]]
            
            \begin{array}{l}
            
            \\
            \begin{array}{l}
            t_0 := \left(3 \cdot x1\right) \cdot x1\\
            t_1 := x1 \cdot x1 + 1\\
            t_2 := \frac{\left(t\_0 + 2 \cdot x2\right) - x1}{t\_1}\\
            t_3 := x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot t\_2\right) \cdot \left(t\_2 - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot t\_2 - 6\right)\right) \cdot t\_1 + t\_0 \cdot t\_2\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(t\_0 - 2 \cdot x2\right) - x1}{t\_1}\right)\\
            t_4 := 8 \cdot \left(x1 \cdot \left(x2 \cdot x2\right)\right)\\
            \mathbf{if}\;t\_3 \leq -2 \cdot 10^{+113}:\\
            \;\;\;\;t\_4\\
            
            \mathbf{elif}\;t\_3 \leq 2.2 \cdot 10^{+171}:\\
            \;\;\;\;\mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right)\right)\\
            
            \mathbf{elif}\;t\_3 \leq \infty:\\
            \;\;\;\;t\_4\\
            
            \mathbf{else}:\\
            \;\;\;\;\left(x1 \cdot x1\right) \cdot 9\\
            
            
            \end{array}
            \end{array}
            
            Derivation
            1. Split input into 3 regimes
            2. if (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))))) < -2e113 or 2.1999999999999999e171 < (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))))) < +inf.0

              1. Initial program 99.7%

                \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
              2. Taylor expanded in x1 around 0

                \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
              3. Step-by-step derivation
                1. lower-fma.f64N/A

                  \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
              4. Applied rewrites45.0%

                \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
              5. Taylor expanded in x2 around inf

                \[\leadsto 8 \cdot \color{blue}{\left(x1 \cdot {x2}^{2}\right)} \]
              6. Step-by-step derivation
                1. lower-*.f64N/A

                  \[\leadsto 8 \cdot \left(x1 \cdot \color{blue}{{x2}^{2}}\right) \]
                2. lower-*.f64N/A

                  \[\leadsto 8 \cdot \left(x1 \cdot {x2}^{\color{blue}{2}}\right) \]
                3. unpow2N/A

                  \[\leadsto 8 \cdot \left(x1 \cdot \left(x2 \cdot x2\right)\right) \]
                4. lower-*.f6443.5

                  \[\leadsto 8 \cdot \left(x1 \cdot \left(x2 \cdot x2\right)\right) \]
              7. Applied rewrites43.5%

                \[\leadsto 8 \cdot \color{blue}{\left(x1 \cdot \left(x2 \cdot x2\right)\right)} \]

              if -2e113 < (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))))) < 2.1999999999999999e171

              1. Initial program 99.2%

                \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
              2. Taylor expanded in x1 around 0

                \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
              3. Step-by-step derivation
                1. lower-fma.f64N/A

                  \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
              4. Applied rewrites88.3%

                \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
              5. Taylor expanded in x2 around 0

                \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right)\right) \]
              6. Step-by-step derivation
                1. lower-*.f6485.4

                  \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right)\right) \]
              7. Applied rewrites85.4%

                \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right)\right) \]

              if +inf.0 < (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))))

              1. Initial program 0.0%

                \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
              2. Taylor expanded in x1 around 0

                \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
              3. Step-by-step derivation
                1. lower-fma.f64N/A

                  \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
              4. Applied rewrites59.1%

                \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
              5. Taylor expanded in x1 around inf

                \[\leadsto {x1}^{2} \cdot \color{blue}{\left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)} \]
              6. Step-by-step derivation
                1. lower-*.f64N/A

                  \[\leadsto {x1}^{2} \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - \color{blue}{6}\right) \]
                2. pow2N/A

                  \[\leadsto \left(x1 \cdot x1\right) \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right) \]
                3. lift-*.f64N/A

                  \[\leadsto \left(x1 \cdot x1\right) \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right) \]
              7. Applied rewrites67.1%

                \[\leadsto \left(x1 \cdot x1\right) \cdot \color{blue}{\left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)} \]
              8. Taylor expanded in x2 around 0

                \[\leadsto \left(x1 \cdot x1\right) \cdot 9 \]
              9. Step-by-step derivation
                1. Applied rewrites85.9%

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

              Alternative 7: 72.1% accurate, 0.3× speedup?

              \[\begin{array}{l} \\ \begin{array}{l} t_0 := \left(3 \cdot x1\right) \cdot x1\\ t_1 := x1 \cdot x1 + 1\\ t_2 := \frac{\left(t\_0 + 2 \cdot x2\right) - x1}{t\_1}\\ t_3 := x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot t\_2\right) \cdot \left(t\_2 - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot t\_2 - 6\right)\right) \cdot t\_1 + t\_0 \cdot t\_2\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(t\_0 - 2 \cdot x2\right) - x1}{t\_1}\right)\\ t_4 := 8 \cdot \left(x1 \cdot \left(x2 \cdot x2\right)\right)\\ \mathbf{if}\;t\_3 \leq -2 \cdot 10^{+113}:\\ \;\;\;\;t\_4\\ \mathbf{elif}\;t\_3 \leq 10^{+171}:\\ \;\;\;\;\mathsf{fma}\left(-6, x2, x1 \cdot \left(-12 \cdot x2 - 1\right)\right)\\ \mathbf{elif}\;t\_3 \leq \infty:\\ \;\;\;\;t\_4\\ \mathbf{else}:\\ \;\;\;\;\left(x1 \cdot x1\right) \cdot 9\\ \end{array} \end{array} \]
              (FPCore (x1 x2)
               :precision binary64
               (let* ((t_0 (* (* 3.0 x1) x1))
                      (t_1 (+ (* x1 x1) 1.0))
                      (t_2 (/ (- (+ t_0 (* 2.0 x2)) x1) t_1))
                      (t_3
                       (+
                        x1
                        (+
                         (+
                          (+
                           (+
                            (*
                             (+
                              (* (* (* 2.0 x1) t_2) (- t_2 3.0))
                              (* (* x1 x1) (- (* 4.0 t_2) 6.0)))
                             t_1)
                            (* t_0 t_2))
                           (* (* x1 x1) x1))
                          x1)
                         (* 3.0 (/ (- (- t_0 (* 2.0 x2)) x1) t_1)))))
                      (t_4 (* 8.0 (* x1 (* x2 x2)))))
                 (if (<= t_3 -2e+113)
                   t_4
                   (if (<= t_3 1e+171)
                     (fma -6.0 x2 (* x1 (- (* -12.0 x2) 1.0)))
                     (if (<= t_3 INFINITY) t_4 (* (* x1 x1) 9.0))))))
              double code(double x1, double x2) {
              	double t_0 = (3.0 * x1) * x1;
              	double t_1 = (x1 * x1) + 1.0;
              	double t_2 = ((t_0 + (2.0 * x2)) - x1) / t_1;
              	double t_3 = x1 + (((((((((2.0 * x1) * t_2) * (t_2 - 3.0)) + ((x1 * x1) * ((4.0 * t_2) - 6.0))) * t_1) + (t_0 * t_2)) + ((x1 * x1) * x1)) + x1) + (3.0 * (((t_0 - (2.0 * x2)) - x1) / t_1)));
              	double t_4 = 8.0 * (x1 * (x2 * x2));
              	double tmp;
              	if (t_3 <= -2e+113) {
              		tmp = t_4;
              	} else if (t_3 <= 1e+171) {
              		tmp = fma(-6.0, x2, (x1 * ((-12.0 * x2) - 1.0)));
              	} else if (t_3 <= ((double) INFINITY)) {
              		tmp = t_4;
              	} else {
              		tmp = (x1 * x1) * 9.0;
              	}
              	return tmp;
              }
              
              function code(x1, x2)
              	t_0 = Float64(Float64(3.0 * x1) * x1)
              	t_1 = Float64(Float64(x1 * x1) + 1.0)
              	t_2 = Float64(Float64(Float64(t_0 + Float64(2.0 * x2)) - x1) / t_1)
              	t_3 = Float64(x1 + Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(2.0 * x1) * t_2) * Float64(t_2 - 3.0)) + Float64(Float64(x1 * x1) * Float64(Float64(4.0 * t_2) - 6.0))) * t_1) + Float64(t_0 * t_2)) + Float64(Float64(x1 * x1) * x1)) + x1) + Float64(3.0 * Float64(Float64(Float64(t_0 - Float64(2.0 * x2)) - x1) / t_1))))
              	t_4 = Float64(8.0 * Float64(x1 * Float64(x2 * x2)))
              	tmp = 0.0
              	if (t_3 <= -2e+113)
              		tmp = t_4;
              	elseif (t_3 <= 1e+171)
              		tmp = fma(-6.0, x2, Float64(x1 * Float64(Float64(-12.0 * x2) - 1.0)));
              	elseif (t_3 <= Inf)
              		tmp = t_4;
              	else
              		tmp = Float64(Float64(x1 * x1) * 9.0);
              	end
              	return tmp
              end
              
              code[x1_, x2_] := Block[{t$95$0 = N[(N[(3.0 * x1), $MachinePrecision] * x1), $MachinePrecision]}, Block[{t$95$1 = N[(N[(x1 * x1), $MachinePrecision] + 1.0), $MachinePrecision]}, Block[{t$95$2 = N[(N[(N[(t$95$0 + N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / t$95$1), $MachinePrecision]}, Block[{t$95$3 = N[(x1 + N[(N[(N[(N[(N[(N[(N[(N[(N[(2.0 * x1), $MachinePrecision] * t$95$2), $MachinePrecision] * N[(t$95$2 - 3.0), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * N[(N[(4.0 * t$95$2), $MachinePrecision] - 6.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * t$95$1), $MachinePrecision] + N[(t$95$0 * t$95$2), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * x1), $MachinePrecision]), $MachinePrecision] + x1), $MachinePrecision] + N[(3.0 * N[(N[(N[(t$95$0 - N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / t$95$1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$4 = N[(8.0 * N[(x1 * N[(x2 * x2), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$3, -2e+113], t$95$4, If[LessEqual[t$95$3, 1e+171], N[(-6.0 * x2 + N[(x1 * N[(N[(-12.0 * x2), $MachinePrecision] - 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$3, Infinity], t$95$4, N[(N[(x1 * x1), $MachinePrecision] * 9.0), $MachinePrecision]]]]]]]]]
              
              \begin{array}{l}
              
              \\
              \begin{array}{l}
              t_0 := \left(3 \cdot x1\right) \cdot x1\\
              t_1 := x1 \cdot x1 + 1\\
              t_2 := \frac{\left(t\_0 + 2 \cdot x2\right) - x1}{t\_1}\\
              t_3 := x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot t\_2\right) \cdot \left(t\_2 - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot t\_2 - 6\right)\right) \cdot t\_1 + t\_0 \cdot t\_2\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(t\_0 - 2 \cdot x2\right) - x1}{t\_1}\right)\\
              t_4 := 8 \cdot \left(x1 \cdot \left(x2 \cdot x2\right)\right)\\
              \mathbf{if}\;t\_3 \leq -2 \cdot 10^{+113}:\\
              \;\;\;\;t\_4\\
              
              \mathbf{elif}\;t\_3 \leq 10^{+171}:\\
              \;\;\;\;\mathsf{fma}\left(-6, x2, x1 \cdot \left(-12 \cdot x2 - 1\right)\right)\\
              
              \mathbf{elif}\;t\_3 \leq \infty:\\
              \;\;\;\;t\_4\\
              
              \mathbf{else}:\\
              \;\;\;\;\left(x1 \cdot x1\right) \cdot 9\\
              
              
              \end{array}
              \end{array}
              
              Derivation
              1. Split input into 3 regimes
              2. if (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))))) < -2e113 or 9.99999999999999954e170 < (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))))) < +inf.0

                1. Initial program 99.7%

                  \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                2. Taylor expanded in x1 around 0

                  \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
                3. Step-by-step derivation
                  1. lower-fma.f64N/A

                    \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
                4. Applied rewrites45.0%

                  \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
                5. Taylor expanded in x2 around inf

                  \[\leadsto 8 \cdot \color{blue}{\left(x1 \cdot {x2}^{2}\right)} \]
                6. Step-by-step derivation
                  1. lower-*.f64N/A

                    \[\leadsto 8 \cdot \left(x1 \cdot \color{blue}{{x2}^{2}}\right) \]
                  2. lower-*.f64N/A

                    \[\leadsto 8 \cdot \left(x1 \cdot {x2}^{\color{blue}{2}}\right) \]
                  3. unpow2N/A

                    \[\leadsto 8 \cdot \left(x1 \cdot \left(x2 \cdot x2\right)\right) \]
                  4. lower-*.f6443.4

                    \[\leadsto 8 \cdot \left(x1 \cdot \left(x2 \cdot x2\right)\right) \]
                7. Applied rewrites43.4%

                  \[\leadsto 8 \cdot \color{blue}{\left(x1 \cdot \left(x2 \cdot x2\right)\right)} \]

                if -2e113 < (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))))) < 9.99999999999999954e170

                1. Initial program 99.2%

                  \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                2. Taylor expanded in x1 around 0

                  \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
                3. Step-by-step derivation
                  1. lower-fma.f64N/A

                    \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
                4. Applied rewrites88.4%

                  \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
                5. Taylor expanded in x2 around 0

                  \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(\left(9 \cdot x1 + x2 \cdot \left(12 \cdot x1 - 12\right)\right) - 1\right)\right) \]
                6. Step-by-step derivation
                  1. lower-fma.f64N/A

                    \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(9, x1, x2 \cdot \left(12 \cdot x1 - 12\right)\right) - 1\right)\right) \]
                  2. lower-*.f64N/A

                    \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(9, x1, x2 \cdot \left(12 \cdot x1 - 12\right)\right) - 1\right)\right) \]
                  3. lower--.f64N/A

                    \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(9, x1, x2 \cdot \left(12 \cdot x1 - 12\right)\right) - 1\right)\right) \]
                  4. lower-*.f6485.6

                    \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(9, x1, x2 \cdot \left(12 \cdot x1 - 12\right)\right) - 1\right)\right) \]
                7. Applied rewrites85.6%

                  \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(9, x1, x2 \cdot \left(12 \cdot x1 - 12\right)\right) - 1\right)\right) \]
                8. Taylor expanded in x1 around 0

                  \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(-12 \cdot x2 - 1\right)\right) \]
                9. Step-by-step derivation
                  1. lower-*.f6484.5

                    \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(-12 \cdot x2 - 1\right)\right) \]
                10. Applied rewrites84.5%

                  \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(-12 \cdot x2 - 1\right)\right) \]

                if +inf.0 < (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))))

                1. Initial program 0.0%

                  \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                2. Taylor expanded in x1 around 0

                  \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
                3. Step-by-step derivation
                  1. lower-fma.f64N/A

                    \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
                4. Applied rewrites59.1%

                  \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
                5. Taylor expanded in x1 around inf

                  \[\leadsto {x1}^{2} \cdot \color{blue}{\left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)} \]
                6. Step-by-step derivation
                  1. lower-*.f64N/A

                    \[\leadsto {x1}^{2} \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - \color{blue}{6}\right) \]
                  2. pow2N/A

                    \[\leadsto \left(x1 \cdot x1\right) \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right) \]
                  3. lift-*.f64N/A

                    \[\leadsto \left(x1 \cdot x1\right) \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right) \]
                7. Applied rewrites67.1%

                  \[\leadsto \left(x1 \cdot x1\right) \cdot \color{blue}{\left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)} \]
                8. Taylor expanded in x2 around 0

                  \[\leadsto \left(x1 \cdot x1\right) \cdot 9 \]
                9. Step-by-step derivation
                  1. Applied rewrites85.9%

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

                Alternative 8: 98.8% accurate, 0.5× speedup?

                \[\begin{array}{l} \\ \begin{array}{l} t_0 := \left(x1 \cdot x1\right) \cdot x1\\ t_1 := 2 \cdot x2 - 3\\ t_2 := x1 \cdot x1 + 1\\ t_3 := \frac{\mathsf{fma}\left(3 \cdot x1, x1, 2 \cdot x2\right) - x1}{\mathsf{fma}\left(x1, x1, 1\right)}\\ t_4 := \left(3 \cdot x1\right) \cdot x1\\ t_5 := \frac{\left(t\_4 + 2 \cdot x2\right) - x1}{t\_2}\\ t_6 := 3 \cdot \frac{\left(t\_4 - 2 \cdot x2\right) - x1}{t\_2}\\ \mathbf{if}\;x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot t\_5\right) \cdot \left(t\_5 - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot t\_5 - 6\right)\right) \cdot t\_2 + t\_4 \cdot t\_5\right) + t\_0\right) + x1\right) + t\_6\right) \leq \infty:\\ \;\;\;\;x1 + \left(\left(\left(\mathsf{fma}\left(\mathsf{fma}\left(\left(2 \cdot x1\right) \cdot t\_3, t\_3 - 3, \left(x1 \cdot x1\right) \cdot \left(4 \cdot t\_3 - 6\right)\right), \mathsf{fma}\left(x1, x1, 1\right), 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + x1 \cdot x1}\right) + t\_0\right) + x1\right) + t\_6\right)\\ \mathbf{else}:\\ \;\;\;\;x1 \cdot \mathsf{fma}\left(-1, 1 + -2 \cdot \left(1 + 3 \cdot t\_1\right), x1 \cdot \left(9 + \mathsf{fma}\left(4, t\_1, x1 \cdot \left(6 \cdot x1 - 3\right)\right)\right)\right)\\ \end{array} \end{array} \]
                (FPCore (x1 x2)
                 :precision binary64
                 (let* ((t_0 (* (* x1 x1) x1))
                        (t_1 (- (* 2.0 x2) 3.0))
                        (t_2 (+ (* x1 x1) 1.0))
                        (t_3 (/ (- (fma (* 3.0 x1) x1 (* 2.0 x2)) x1) (fma x1 x1 1.0)))
                        (t_4 (* (* 3.0 x1) x1))
                        (t_5 (/ (- (+ t_4 (* 2.0 x2)) x1) t_2))
                        (t_6 (* 3.0 (/ (- (- t_4 (* 2.0 x2)) x1) t_2))))
                   (if (<=
                        (+
                         x1
                         (+
                          (+
                           (+
                            (+
                             (*
                              (+
                               (* (* (* 2.0 x1) t_5) (- t_5 3.0))
                               (* (* x1 x1) (- (* 4.0 t_5) 6.0)))
                              t_2)
                             (* t_4 t_5))
                            t_0)
                           x1)
                          t_6))
                        INFINITY)
                     (+
                      x1
                      (+
                       (+
                        (+
                         (fma
                          (fma
                           (* (* 2.0 x1) t_3)
                           (- t_3 3.0)
                           (* (* x1 x1) (- (* 4.0 t_3) 6.0)))
                          (fma x1 x1 1.0)
                          (* 3.0 (/ (* (* x1 x1) (- (* 3.0 (* x1 x1)) x1)) (+ 1.0 (* x1 x1)))))
                         t_0)
                        x1)
                       t_6))
                     (*
                      x1
                      (fma
                       -1.0
                       (+ 1.0 (* -2.0 (+ 1.0 (* 3.0 t_1))))
                       (* x1 (+ 9.0 (fma 4.0 t_1 (* x1 (- (* 6.0 x1) 3.0))))))))))
                double code(double x1, double x2) {
                	double t_0 = (x1 * x1) * x1;
                	double t_1 = (2.0 * x2) - 3.0;
                	double t_2 = (x1 * x1) + 1.0;
                	double t_3 = (fma((3.0 * x1), x1, (2.0 * x2)) - x1) / fma(x1, x1, 1.0);
                	double t_4 = (3.0 * x1) * x1;
                	double t_5 = ((t_4 + (2.0 * x2)) - x1) / t_2;
                	double t_6 = 3.0 * (((t_4 - (2.0 * x2)) - x1) / t_2);
                	double tmp;
                	if ((x1 + (((((((((2.0 * x1) * t_5) * (t_5 - 3.0)) + ((x1 * x1) * ((4.0 * t_5) - 6.0))) * t_2) + (t_4 * t_5)) + t_0) + x1) + t_6)) <= ((double) INFINITY)) {
                		tmp = x1 + (((fma(fma(((2.0 * x1) * t_3), (t_3 - 3.0), ((x1 * x1) * ((4.0 * t_3) - 6.0))), fma(x1, x1, 1.0), (3.0 * (((x1 * x1) * ((3.0 * (x1 * x1)) - x1)) / (1.0 + (x1 * x1))))) + t_0) + x1) + t_6);
                	} else {
                		tmp = x1 * fma(-1.0, (1.0 + (-2.0 * (1.0 + (3.0 * t_1)))), (x1 * (9.0 + fma(4.0, t_1, (x1 * ((6.0 * x1) - 3.0))))));
                	}
                	return tmp;
                }
                
                function code(x1, x2)
                	t_0 = Float64(Float64(x1 * x1) * x1)
                	t_1 = Float64(Float64(2.0 * x2) - 3.0)
                	t_2 = Float64(Float64(x1 * x1) + 1.0)
                	t_3 = Float64(Float64(fma(Float64(3.0 * x1), x1, Float64(2.0 * x2)) - x1) / fma(x1, x1, 1.0))
                	t_4 = Float64(Float64(3.0 * x1) * x1)
                	t_5 = Float64(Float64(Float64(t_4 + Float64(2.0 * x2)) - x1) / t_2)
                	t_6 = Float64(3.0 * Float64(Float64(Float64(t_4 - Float64(2.0 * x2)) - x1) / t_2))
                	tmp = 0.0
                	if (Float64(x1 + Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(2.0 * x1) * t_5) * Float64(t_5 - 3.0)) + Float64(Float64(x1 * x1) * Float64(Float64(4.0 * t_5) - 6.0))) * t_2) + Float64(t_4 * t_5)) + t_0) + x1) + t_6)) <= Inf)
                		tmp = Float64(x1 + Float64(Float64(Float64(fma(fma(Float64(Float64(2.0 * x1) * t_3), Float64(t_3 - 3.0), Float64(Float64(x1 * x1) * Float64(Float64(4.0 * t_3) - 6.0))), fma(x1, x1, 1.0), Float64(3.0 * Float64(Float64(Float64(x1 * x1) * Float64(Float64(3.0 * Float64(x1 * x1)) - x1)) / Float64(1.0 + Float64(x1 * x1))))) + t_0) + x1) + t_6));
                	else
                		tmp = Float64(x1 * fma(-1.0, Float64(1.0 + Float64(-2.0 * Float64(1.0 + Float64(3.0 * t_1)))), Float64(x1 * Float64(9.0 + fma(4.0, t_1, Float64(x1 * Float64(Float64(6.0 * x1) - 3.0)))))));
                	end
                	return tmp
                end
                
                code[x1_, x2_] := Block[{t$95$0 = N[(N[(x1 * x1), $MachinePrecision] * x1), $MachinePrecision]}, Block[{t$95$1 = N[(N[(2.0 * x2), $MachinePrecision] - 3.0), $MachinePrecision]}, Block[{t$95$2 = N[(N[(x1 * x1), $MachinePrecision] + 1.0), $MachinePrecision]}, Block[{t$95$3 = N[(N[(N[(N[(3.0 * x1), $MachinePrecision] * x1 + N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / N[(x1 * x1 + 1.0), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$4 = N[(N[(3.0 * x1), $MachinePrecision] * x1), $MachinePrecision]}, Block[{t$95$5 = N[(N[(N[(t$95$4 + N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / t$95$2), $MachinePrecision]}, Block[{t$95$6 = N[(3.0 * N[(N[(N[(t$95$4 - N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / t$95$2), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[N[(x1 + N[(N[(N[(N[(N[(N[(N[(N[(N[(2.0 * x1), $MachinePrecision] * t$95$5), $MachinePrecision] * N[(t$95$5 - 3.0), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * N[(N[(4.0 * t$95$5), $MachinePrecision] - 6.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * t$95$2), $MachinePrecision] + N[(t$95$4 * t$95$5), $MachinePrecision]), $MachinePrecision] + t$95$0), $MachinePrecision] + x1), $MachinePrecision] + t$95$6), $MachinePrecision]), $MachinePrecision], Infinity], N[(x1 + N[(N[(N[(N[(N[(N[(N[(2.0 * x1), $MachinePrecision] * t$95$3), $MachinePrecision] * N[(t$95$3 - 3.0), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * N[(N[(4.0 * t$95$3), $MachinePrecision] - 6.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(x1 * x1 + 1.0), $MachinePrecision] + N[(3.0 * N[(N[(N[(x1 * x1), $MachinePrecision] * N[(N[(3.0 * N[(x1 * x1), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision]), $MachinePrecision] / N[(1.0 + N[(x1 * x1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + t$95$0), $MachinePrecision] + x1), $MachinePrecision] + t$95$6), $MachinePrecision]), $MachinePrecision], N[(x1 * N[(-1.0 * N[(1.0 + N[(-2.0 * N[(1.0 + N[(3.0 * t$95$1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(x1 * N[(9.0 + N[(4.0 * t$95$1 + N[(x1 * N[(N[(6.0 * x1), $MachinePrecision] - 3.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]]]]]]]
                
                \begin{array}{l}
                
                \\
                \begin{array}{l}
                t_0 := \left(x1 \cdot x1\right) \cdot x1\\
                t_1 := 2 \cdot x2 - 3\\
                t_2 := x1 \cdot x1 + 1\\
                t_3 := \frac{\mathsf{fma}\left(3 \cdot x1, x1, 2 \cdot x2\right) - x1}{\mathsf{fma}\left(x1, x1, 1\right)}\\
                t_4 := \left(3 \cdot x1\right) \cdot x1\\
                t_5 := \frac{\left(t\_4 + 2 \cdot x2\right) - x1}{t\_2}\\
                t_6 := 3 \cdot \frac{\left(t\_4 - 2 \cdot x2\right) - x1}{t\_2}\\
                \mathbf{if}\;x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot t\_5\right) \cdot \left(t\_5 - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot t\_5 - 6\right)\right) \cdot t\_2 + t\_4 \cdot t\_5\right) + t\_0\right) + x1\right) + t\_6\right) \leq \infty:\\
                \;\;\;\;x1 + \left(\left(\left(\mathsf{fma}\left(\mathsf{fma}\left(\left(2 \cdot x1\right) \cdot t\_3, t\_3 - 3, \left(x1 \cdot x1\right) \cdot \left(4 \cdot t\_3 - 6\right)\right), \mathsf{fma}\left(x1, x1, 1\right), 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + x1 \cdot x1}\right) + t\_0\right) + x1\right) + t\_6\right)\\
                
                \mathbf{else}:\\
                \;\;\;\;x1 \cdot \mathsf{fma}\left(-1, 1 + -2 \cdot \left(1 + 3 \cdot t\_1\right), x1 \cdot \left(9 + \mathsf{fma}\left(4, t\_1, x1 \cdot \left(6 \cdot x1 - 3\right)\right)\right)\right)\\
                
                
                \end{array}
                \end{array}
                
                Derivation
                1. Split input into 2 regimes
                2. if (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))))) < +inf.0

                  1. Initial program 99.4%

                    \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                  2. Taylor expanded in x2 around 0

                    \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \color{blue}{3 \cdot \frac{{x1}^{2} \cdot \left(3 \cdot {x1}^{2} - x1\right)}{1 + {x1}^{2}}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                  3. Step-by-step derivation
                    1. lower-*.f64N/A

                      \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \color{blue}{\frac{{x1}^{2} \cdot \left(3 \cdot {x1}^{2} - x1\right)}{1 + {x1}^{2}}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                    2. lower-/.f64N/A

                      \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{{x1}^{2} \cdot \left(3 \cdot {x1}^{2} - x1\right)}{\color{blue}{1 + {x1}^{2}}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                    3. lower-*.f64N/A

                      \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{{x1}^{2} \cdot \left(3 \cdot {x1}^{2} - x1\right)}{\color{blue}{1} + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                    4. pow2N/A

                      \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot {x1}^{2} - x1\right)}{1 + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                    5. lift-*.f64N/A

                      \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot {x1}^{2} - x1\right)}{1 + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                    6. lower--.f64N/A

                      \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot {x1}^{2} - x1\right)}{1 + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                    7. lower-*.f64N/A

                      \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot {x1}^{2} - x1\right)}{1 + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                    8. pow2N/A

                      \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                    9. lift-*.f64N/A

                      \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                    10. lower-+.f64N/A

                      \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + \color{blue}{{x1}^{2}}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                    11. pow2N/A

                      \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + x1 \cdot \color{blue}{x1}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                    12. lift-*.f6498.4

                      \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + x1 \cdot \color{blue}{x1}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                  4. Applied rewrites98.4%

                    \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \color{blue}{3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + x1 \cdot x1}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                  5. Applied rewrites98.4%

                    \[\leadsto x1 + \left(\left(\left(\color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(\left(2 \cdot x1\right) \cdot \frac{\mathsf{fma}\left(3 \cdot x1, x1, 2 \cdot x2\right) - x1}{\mathsf{fma}\left(x1, x1, 1\right)}, \frac{\mathsf{fma}\left(3 \cdot x1, x1, 2 \cdot x2\right) - x1}{\mathsf{fma}\left(x1, x1, 1\right)} - 3, \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\mathsf{fma}\left(3 \cdot x1, x1, 2 \cdot x2\right) - x1}{\mathsf{fma}\left(x1, x1, 1\right)} - 6\right)\right), \mathsf{fma}\left(x1, x1, 1\right), 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + x1 \cdot x1}\right)} + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]

                  if +inf.0 < (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))))

                  1. Initial program 0.0%

                    \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                  2. Taylor expanded in x1 around -inf

                    \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + \left(-1 \cdot \frac{1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1} + 4 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}}{x1}\right)} \]
                  3. Applied rewrites99.8%

                    \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + \mathsf{fma}\left(-1, \frac{1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}, 4 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}}{x1}\right)} \]
                  4. Taylor expanded in x1 around 0

                    \[\leadsto x1 \cdot \color{blue}{\left(-1 \cdot \left(1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + x1 \cdot \left(9 + \left(4 \cdot \left(2 \cdot x2 - 3\right) + x1 \cdot \left(6 \cdot x1 - 3\right)\right)\right)\right)} \]
                  5. Step-by-step derivation
                    1. lower-*.f64N/A

                      \[\leadsto x1 \cdot \left(-1 \cdot \left(1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + \color{blue}{x1 \cdot \left(9 + \left(4 \cdot \left(2 \cdot x2 - 3\right) + x1 \cdot \left(6 \cdot x1 - 3\right)\right)\right)}\right) \]
                    2. lower-fma.f64N/A

                      \[\leadsto x1 \cdot \mathsf{fma}\left(-1, 1 + \color{blue}{-2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}, x1 \cdot \left(9 + \left(4 \cdot \left(2 \cdot x2 - 3\right) + x1 \cdot \left(6 \cdot x1 - 3\right)\right)\right)\right) \]
                  6. Applied rewrites99.8%

                    \[\leadsto x1 \cdot \color{blue}{\mathsf{fma}\left(-1, 1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right), x1 \cdot \left(9 + \mathsf{fma}\left(4, 2 \cdot x2 - 3, x1 \cdot \left(6 \cdot x1 - 3\right)\right)\right)\right)} \]
                3. Recombined 2 regimes into one program.
                4. Add Preprocessing

                Alternative 9: 51.6% accurate, 0.9× speedup?

                \[\begin{array}{l} \\ \begin{array}{l} t_0 := \left(3 \cdot x1\right) \cdot x1\\ t_1 := x1 \cdot x1 + 1\\ t_2 := \frac{\left(t\_0 + 2 \cdot x2\right) - x1}{t\_1}\\ \mathbf{if}\;x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot t\_2\right) \cdot \left(t\_2 - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot t\_2 - 6\right)\right) \cdot t\_1 + t\_0 \cdot t\_2\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(t\_0 - 2 \cdot x2\right) - x1}{t\_1}\right) \leq 10^{+233}:\\ \;\;\;\;-6 \cdot x2\\ \mathbf{else}:\\ \;\;\;\;\left(x1 \cdot x1\right) \cdot 9\\ \end{array} \end{array} \]
                (FPCore (x1 x2)
                 :precision binary64
                 (let* ((t_0 (* (* 3.0 x1) x1))
                        (t_1 (+ (* x1 x1) 1.0))
                        (t_2 (/ (- (+ t_0 (* 2.0 x2)) x1) t_1)))
                   (if (<=
                        (+
                         x1
                         (+
                          (+
                           (+
                            (+
                             (*
                              (+
                               (* (* (* 2.0 x1) t_2) (- t_2 3.0))
                               (* (* x1 x1) (- (* 4.0 t_2) 6.0)))
                              t_1)
                             (* t_0 t_2))
                            (* (* x1 x1) x1))
                           x1)
                          (* 3.0 (/ (- (- t_0 (* 2.0 x2)) x1) t_1))))
                        1e+233)
                     (* -6.0 x2)
                     (* (* x1 x1) 9.0))))
                double code(double x1, double x2) {
                	double t_0 = (3.0 * x1) * x1;
                	double t_1 = (x1 * x1) + 1.0;
                	double t_2 = ((t_0 + (2.0 * x2)) - x1) / t_1;
                	double tmp;
                	if ((x1 + (((((((((2.0 * x1) * t_2) * (t_2 - 3.0)) + ((x1 * x1) * ((4.0 * t_2) - 6.0))) * t_1) + (t_0 * t_2)) + ((x1 * x1) * x1)) + x1) + (3.0 * (((t_0 - (2.0 * x2)) - x1) / t_1)))) <= 1e+233) {
                		tmp = -6.0 * x2;
                	} else {
                		tmp = (x1 * x1) * 9.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(x1, x2)
                use fmin_fmax_functions
                    real(8), intent (in) :: x1
                    real(8), intent (in) :: x2
                    real(8) :: t_0
                    real(8) :: t_1
                    real(8) :: t_2
                    real(8) :: tmp
                    t_0 = (3.0d0 * x1) * x1
                    t_1 = (x1 * x1) + 1.0d0
                    t_2 = ((t_0 + (2.0d0 * x2)) - x1) / t_1
                    if ((x1 + (((((((((2.0d0 * x1) * t_2) * (t_2 - 3.0d0)) + ((x1 * x1) * ((4.0d0 * t_2) - 6.0d0))) * t_1) + (t_0 * t_2)) + ((x1 * x1) * x1)) + x1) + (3.0d0 * (((t_0 - (2.0d0 * x2)) - x1) / t_1)))) <= 1d+233) then
                        tmp = (-6.0d0) * x2
                    else
                        tmp = (x1 * x1) * 9.0d0
                    end if
                    code = tmp
                end function
                
                public static double code(double x1, double x2) {
                	double t_0 = (3.0 * x1) * x1;
                	double t_1 = (x1 * x1) + 1.0;
                	double t_2 = ((t_0 + (2.0 * x2)) - x1) / t_1;
                	double tmp;
                	if ((x1 + (((((((((2.0 * x1) * t_2) * (t_2 - 3.0)) + ((x1 * x1) * ((4.0 * t_2) - 6.0))) * t_1) + (t_0 * t_2)) + ((x1 * x1) * x1)) + x1) + (3.0 * (((t_0 - (2.0 * x2)) - x1) / t_1)))) <= 1e+233) {
                		tmp = -6.0 * x2;
                	} else {
                		tmp = (x1 * x1) * 9.0;
                	}
                	return tmp;
                }
                
                def code(x1, x2):
                	t_0 = (3.0 * x1) * x1
                	t_1 = (x1 * x1) + 1.0
                	t_2 = ((t_0 + (2.0 * x2)) - x1) / t_1
                	tmp = 0
                	if (x1 + (((((((((2.0 * x1) * t_2) * (t_2 - 3.0)) + ((x1 * x1) * ((4.0 * t_2) - 6.0))) * t_1) + (t_0 * t_2)) + ((x1 * x1) * x1)) + x1) + (3.0 * (((t_0 - (2.0 * x2)) - x1) / t_1)))) <= 1e+233:
                		tmp = -6.0 * x2
                	else:
                		tmp = (x1 * x1) * 9.0
                	return tmp
                
                function code(x1, x2)
                	t_0 = Float64(Float64(3.0 * x1) * x1)
                	t_1 = Float64(Float64(x1 * x1) + 1.0)
                	t_2 = Float64(Float64(Float64(t_0 + Float64(2.0 * x2)) - x1) / t_1)
                	tmp = 0.0
                	if (Float64(x1 + Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(2.0 * x1) * t_2) * Float64(t_2 - 3.0)) + Float64(Float64(x1 * x1) * Float64(Float64(4.0 * t_2) - 6.0))) * t_1) + Float64(t_0 * t_2)) + Float64(Float64(x1 * x1) * x1)) + x1) + Float64(3.0 * Float64(Float64(Float64(t_0 - Float64(2.0 * x2)) - x1) / t_1)))) <= 1e+233)
                		tmp = Float64(-6.0 * x2);
                	else
                		tmp = Float64(Float64(x1 * x1) * 9.0);
                	end
                	return tmp
                end
                
                function tmp_2 = code(x1, x2)
                	t_0 = (3.0 * x1) * x1;
                	t_1 = (x1 * x1) + 1.0;
                	t_2 = ((t_0 + (2.0 * x2)) - x1) / t_1;
                	tmp = 0.0;
                	if ((x1 + (((((((((2.0 * x1) * t_2) * (t_2 - 3.0)) + ((x1 * x1) * ((4.0 * t_2) - 6.0))) * t_1) + (t_0 * t_2)) + ((x1 * x1) * x1)) + x1) + (3.0 * (((t_0 - (2.0 * x2)) - x1) / t_1)))) <= 1e+233)
                		tmp = -6.0 * x2;
                	else
                		tmp = (x1 * x1) * 9.0;
                	end
                	tmp_2 = tmp;
                end
                
                code[x1_, x2_] := Block[{t$95$0 = N[(N[(3.0 * x1), $MachinePrecision] * x1), $MachinePrecision]}, Block[{t$95$1 = N[(N[(x1 * x1), $MachinePrecision] + 1.0), $MachinePrecision]}, Block[{t$95$2 = N[(N[(N[(t$95$0 + N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / t$95$1), $MachinePrecision]}, If[LessEqual[N[(x1 + N[(N[(N[(N[(N[(N[(N[(N[(N[(2.0 * x1), $MachinePrecision] * t$95$2), $MachinePrecision] * N[(t$95$2 - 3.0), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * N[(N[(4.0 * t$95$2), $MachinePrecision] - 6.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * t$95$1), $MachinePrecision] + N[(t$95$0 * t$95$2), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * x1), $MachinePrecision]), $MachinePrecision] + x1), $MachinePrecision] + N[(3.0 * N[(N[(N[(t$95$0 - N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / t$95$1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], 1e+233], N[(-6.0 * x2), $MachinePrecision], N[(N[(x1 * x1), $MachinePrecision] * 9.0), $MachinePrecision]]]]]
                
                \begin{array}{l}
                
                \\
                \begin{array}{l}
                t_0 := \left(3 \cdot x1\right) \cdot x1\\
                t_1 := x1 \cdot x1 + 1\\
                t_2 := \frac{\left(t\_0 + 2 \cdot x2\right) - x1}{t\_1}\\
                \mathbf{if}\;x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot t\_2\right) \cdot \left(t\_2 - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot t\_2 - 6\right)\right) \cdot t\_1 + t\_0 \cdot t\_2\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(t\_0 - 2 \cdot x2\right) - x1}{t\_1}\right) \leq 10^{+233}:\\
                \;\;\;\;-6 \cdot x2\\
                
                \mathbf{else}:\\
                \;\;\;\;\left(x1 \cdot x1\right) \cdot 9\\
                
                
                \end{array}
                \end{array}
                
                Derivation
                1. Split input into 2 regimes
                2. if (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))))) < 9.99999999999999974e232

                  1. Initial program 99.3%

                    \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                  2. Taylor expanded in x1 around 0

                    \[\leadsto \color{blue}{-6 \cdot x2} \]
                  3. Step-by-step derivation
                    1. lower-*.f6447.4

                      \[\leadsto -6 \cdot \color{blue}{x2} \]
                  4. Applied rewrites47.4%

                    \[\leadsto \color{blue}{-6 \cdot x2} \]

                  if 9.99999999999999974e232 < (+.f64 x1 (+.f64 (+.f64 (+.f64 (+.f64 (*.f64 (+.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) (-.f64 (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) #s(literal 3 binary64))) (*.f64 (*.f64 x1 x1) (-.f64 (*.f64 #s(literal 4 binary64) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64)))) #s(literal 6 binary64)))) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))) (*.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (/.f64 (-.f64 (+.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))) (*.f64 (*.f64 x1 x1) x1)) x1) (*.f64 #s(literal 3 binary64) (/.f64 (-.f64 (-.f64 (*.f64 (*.f64 #s(literal 3 binary64) x1) x1) (*.f64 #s(literal 2 binary64) x2)) x1) (+.f64 (*.f64 x1 x1) #s(literal 1 binary64))))))

                  1. Initial program 36.2%

                    \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                  2. Taylor expanded in x1 around 0

                    \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
                  3. Step-by-step derivation
                    1. lower-fma.f64N/A

                      \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
                  4. Applied rewrites52.6%

                    \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
                  5. Taylor expanded in x1 around inf

                    \[\leadsto {x1}^{2} \cdot \color{blue}{\left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)} \]
                  6. Step-by-step derivation
                    1. lower-*.f64N/A

                      \[\leadsto {x1}^{2} \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - \color{blue}{6}\right) \]
                    2. pow2N/A

                      \[\leadsto \left(x1 \cdot x1\right) \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right) \]
                    3. lift-*.f64N/A

                      \[\leadsto \left(x1 \cdot x1\right) \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right) \]
                  7. Applied rewrites48.2%

                    \[\leadsto \left(x1 \cdot x1\right) \cdot \color{blue}{\left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)} \]
                  8. Taylor expanded in x2 around 0

                    \[\leadsto \left(x1 \cdot x1\right) \cdot 9 \]
                  9. Step-by-step derivation
                    1. Applied rewrites56.6%

                      \[\leadsto \left(x1 \cdot x1\right) \cdot 9 \]
                  10. Recombined 2 regimes into one program.
                  11. Add Preprocessing

                  Alternative 10: 97.1% accurate, 1.3× speedup?

                  \[\begin{array}{l} \\ \begin{array}{l} t_0 := \left(3 \cdot x1\right) \cdot x1\\ t_1 := x1 \cdot x1 + 1\\ t_2 := {x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot \left(2 \cdot x2 - 3\right)}{x1}}{x1}\right)\\ t_3 := \frac{\left(t\_0 + 2 \cdot x2\right) - x1}{t\_1}\\ \mathbf{if}\;x1 \leq -4.2 \cdot 10^{+45}:\\ \;\;\;\;t\_2\\ \mathbf{elif}\;x1 \leq 5.4 \cdot 10^{+45}:\\ \;\;\;\;x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot t\_3\right) \cdot \left(t\_3 - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot t\_1 + \left(x1 \cdot x1\right) \cdot \mathsf{fma}\left(-3, x1, 6 \cdot x2\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(t\_0 - 2 \cdot x2\right) - x1}{t\_1}\right)\\ \mathbf{else}:\\ \;\;\;\;t\_2\\ \end{array} \end{array} \]
                  (FPCore (x1 x2)
                   :precision binary64
                   (let* ((t_0 (* (* 3.0 x1) x1))
                          (t_1 (+ (* x1 x1) 1.0))
                          (t_2
                           (*
                            (pow x1 4.0)
                            (+
                             6.0
                             (*
                              -1.0
                              (/
                               (+ 3.0 (* -1.0 (/ (+ 9.0 (* 4.0 (- (* 2.0 x2) 3.0))) x1)))
                               x1)))))
                          (t_3 (/ (- (+ t_0 (* 2.0 x2)) x1) t_1)))
                     (if (<= x1 -4.2e+45)
                       t_2
                       (if (<= x1 5.4e+45)
                         (+
                          x1
                          (+
                           (+
                            (+
                             (+
                              (* (+ (* (* (* 2.0 x1) t_3) (- t_3 3.0)) (* (* x1 x1) 6.0)) t_1)
                              (* (* x1 x1) (fma -3.0 x1 (* 6.0 x2))))
                             (* (* x1 x1) x1))
                            x1)
                           (* 3.0 (/ (- (- t_0 (* 2.0 x2)) x1) t_1))))
                         t_2))))
                  double code(double x1, double x2) {
                  	double t_0 = (3.0 * x1) * x1;
                  	double t_1 = (x1 * x1) + 1.0;
                  	double t_2 = pow(x1, 4.0) * (6.0 + (-1.0 * ((3.0 + (-1.0 * ((9.0 + (4.0 * ((2.0 * x2) - 3.0))) / x1))) / x1)));
                  	double t_3 = ((t_0 + (2.0 * x2)) - x1) / t_1;
                  	double tmp;
                  	if (x1 <= -4.2e+45) {
                  		tmp = t_2;
                  	} else if (x1 <= 5.4e+45) {
                  		tmp = x1 + (((((((((2.0 * x1) * t_3) * (t_3 - 3.0)) + ((x1 * x1) * 6.0)) * t_1) + ((x1 * x1) * fma(-3.0, x1, (6.0 * x2)))) + ((x1 * x1) * x1)) + x1) + (3.0 * (((t_0 - (2.0 * x2)) - x1) / t_1)));
                  	} else {
                  		tmp = t_2;
                  	}
                  	return tmp;
                  }
                  
                  function code(x1, x2)
                  	t_0 = Float64(Float64(3.0 * x1) * x1)
                  	t_1 = Float64(Float64(x1 * x1) + 1.0)
                  	t_2 = Float64((x1 ^ 4.0) * Float64(6.0 + Float64(-1.0 * Float64(Float64(3.0 + Float64(-1.0 * Float64(Float64(9.0 + Float64(4.0 * Float64(Float64(2.0 * x2) - 3.0))) / x1))) / x1))))
                  	t_3 = Float64(Float64(Float64(t_0 + Float64(2.0 * x2)) - x1) / t_1)
                  	tmp = 0.0
                  	if (x1 <= -4.2e+45)
                  		tmp = t_2;
                  	elseif (x1 <= 5.4e+45)
                  		tmp = Float64(x1 + Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(2.0 * x1) * t_3) * Float64(t_3 - 3.0)) + Float64(Float64(x1 * x1) * 6.0)) * t_1) + Float64(Float64(x1 * x1) * fma(-3.0, x1, Float64(6.0 * x2)))) + Float64(Float64(x1 * x1) * x1)) + x1) + Float64(3.0 * Float64(Float64(Float64(t_0 - Float64(2.0 * x2)) - x1) / t_1))));
                  	else
                  		tmp = t_2;
                  	end
                  	return tmp
                  end
                  
                  code[x1_, x2_] := Block[{t$95$0 = N[(N[(3.0 * x1), $MachinePrecision] * x1), $MachinePrecision]}, Block[{t$95$1 = N[(N[(x1 * x1), $MachinePrecision] + 1.0), $MachinePrecision]}, Block[{t$95$2 = N[(N[Power[x1, 4.0], $MachinePrecision] * N[(6.0 + N[(-1.0 * N[(N[(3.0 + N[(-1.0 * N[(N[(9.0 + N[(4.0 * N[(N[(2.0 * x2), $MachinePrecision] - 3.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / x1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / x1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$3 = N[(N[(N[(t$95$0 + N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / t$95$1), $MachinePrecision]}, If[LessEqual[x1, -4.2e+45], t$95$2, If[LessEqual[x1, 5.4e+45], N[(x1 + N[(N[(N[(N[(N[(N[(N[(N[(N[(2.0 * x1), $MachinePrecision] * t$95$3), $MachinePrecision] * N[(t$95$3 - 3.0), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * 6.0), $MachinePrecision]), $MachinePrecision] * t$95$1), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * N[(-3.0 * x1 + N[(6.0 * x2), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * x1), $MachinePrecision]), $MachinePrecision] + x1), $MachinePrecision] + N[(3.0 * N[(N[(N[(t$95$0 - N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / t$95$1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], t$95$2]]]]]]
                  
                  \begin{array}{l}
                  
                  \\
                  \begin{array}{l}
                  t_0 := \left(3 \cdot x1\right) \cdot x1\\
                  t_1 := x1 \cdot x1 + 1\\
                  t_2 := {x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot \left(2 \cdot x2 - 3\right)}{x1}}{x1}\right)\\
                  t_3 := \frac{\left(t\_0 + 2 \cdot x2\right) - x1}{t\_1}\\
                  \mathbf{if}\;x1 \leq -4.2 \cdot 10^{+45}:\\
                  \;\;\;\;t\_2\\
                  
                  \mathbf{elif}\;x1 \leq 5.4 \cdot 10^{+45}:\\
                  \;\;\;\;x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot t\_3\right) \cdot \left(t\_3 - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot t\_1 + \left(x1 \cdot x1\right) \cdot \mathsf{fma}\left(-3, x1, 6 \cdot x2\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(t\_0 - 2 \cdot x2\right) - x1}{t\_1}\right)\\
                  
                  \mathbf{else}:\\
                  \;\;\;\;t\_2\\
                  
                  
                  \end{array}
                  \end{array}
                  
                  Derivation
                  1. Split input into 2 regimes
                  2. if x1 < -4.1999999999999999e45 or 5.39999999999999968e45 < x1

                    1. Initial program 31.4%

                      \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                    2. Taylor expanded in x1 around -inf

                      \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot \left(2 \cdot x2 - 3\right)}{x1}}{x1}\right)} \]
                    3. Step-by-step derivation
                      1. lower-*.f64N/A

                        \[\leadsto {x1}^{4} \cdot \color{blue}{\left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot \left(2 \cdot x2 - 3\right)}{x1}}{x1}\right)} \]
                      2. lower-pow.f64N/A

                        \[\leadsto {x1}^{4} \cdot \left(\color{blue}{6} + -1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot \left(2 \cdot x2 - 3\right)}{x1}}{x1}\right) \]
                      3. lower-+.f64N/A

                        \[\leadsto {x1}^{4} \cdot \left(6 + \color{blue}{-1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot \left(2 \cdot x2 - 3\right)}{x1}}{x1}}\right) \]
                    4. Applied rewrites98.2%

                      \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot \left(2 \cdot x2 - 3\right)}{x1}}{x1}\right)} \]

                    if -4.1999999999999999e45 < x1 < 5.39999999999999968e45

                    1. Initial program 99.3%

                      \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                    2. Taylor expanded in x2 around 0

                      \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \color{blue}{3 \cdot \frac{{x1}^{2} \cdot \left(3 \cdot {x1}^{2} - x1\right)}{1 + {x1}^{2}}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                    3. Step-by-step derivation
                      1. lower-*.f64N/A

                        \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \color{blue}{\frac{{x1}^{2} \cdot \left(3 \cdot {x1}^{2} - x1\right)}{1 + {x1}^{2}}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                      2. lower-/.f64N/A

                        \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{{x1}^{2} \cdot \left(3 \cdot {x1}^{2} - x1\right)}{\color{blue}{1 + {x1}^{2}}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                      3. lower-*.f64N/A

                        \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{{x1}^{2} \cdot \left(3 \cdot {x1}^{2} - x1\right)}{\color{blue}{1} + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                      4. pow2N/A

                        \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot {x1}^{2} - x1\right)}{1 + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                      5. lift-*.f64N/A

                        \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot {x1}^{2} - x1\right)}{1 + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                      6. lower--.f64N/A

                        \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot {x1}^{2} - x1\right)}{1 + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                      7. lower-*.f64N/A

                        \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot {x1}^{2} - x1\right)}{1 + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                      8. pow2N/A

                        \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                      9. lift-*.f64N/A

                        \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                      10. lower-+.f64N/A

                        \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + \color{blue}{{x1}^{2}}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                      11. pow2N/A

                        \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + x1 \cdot \color{blue}{x1}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                      12. lift-*.f6499.2

                        \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + x1 \cdot \color{blue}{x1}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                    4. Applied rewrites99.2%

                      \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \color{blue}{3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + x1 \cdot x1}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                    5. Taylor expanded in x1 around inf

                      \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \color{blue}{6}\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + x1 \cdot x1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                    6. Step-by-step derivation
                      1. Applied rewrites96.9%

                        \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \color{blue}{6}\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + x1 \cdot x1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                      2. Taylor expanded in x1 around 0

                        \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot \left(x1 \cdot x1 + 1\right) + \color{blue}{{x1}^{2} \cdot \left(-3 \cdot x1 + 6 \cdot x2\right)}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                      3. Step-by-step derivation
                        1. lower-*.f64N/A

                          \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot \left(x1 \cdot x1 + 1\right) + {x1}^{2} \cdot \color{blue}{\left(-3 \cdot x1 + 6 \cdot x2\right)}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                        2. pow2N/A

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

                          \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(x1 \cdot x1\right) \cdot \left(\color{blue}{-3 \cdot x1} + 6 \cdot x2\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                        4. lower-fma.f64N/A

                          \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(x1 \cdot x1\right) \cdot \mathsf{fma}\left(-3, \color{blue}{x1}, 6 \cdot x2\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                        5. lower-*.f6496.3

                          \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(x1 \cdot x1\right) \cdot \mathsf{fma}\left(-3, x1, 6 \cdot x2\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                      4. Applied rewrites96.3%

                        \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot \left(x1 \cdot x1 + 1\right) + \color{blue}{\left(x1 \cdot x1\right) \cdot \mathsf{fma}\left(-3, x1, 6 \cdot x2\right)}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                    7. Recombined 2 regimes into one program.
                    8. Add Preprocessing

                    Alternative 11: 97.1% accurate, 1.3× speedup?

                    \[\begin{array}{l} \\ \begin{array}{l} t_0 := \left(3 \cdot x1\right) \cdot x1\\ t_1 := x1 \cdot x1 + 1\\ t_2 := {x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot \left(2 \cdot x2 - 3\right)}{x1}}{x1}\right)\\ t_3 := \frac{\left(t\_0 + 2 \cdot x2\right) - x1}{t\_1}\\ \mathbf{if}\;x1 \leq -4.2 \cdot 10^{+45}:\\ \;\;\;\;t\_2\\ \mathbf{elif}\;x1 \leq 5.4 \cdot 10^{+45}:\\ \;\;\;\;x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot t\_3\right) \cdot \left(t\_3 - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot t\_1 + 6 \cdot \left(\left(x1 \cdot x1\right) \cdot x2\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(t\_0 - 2 \cdot x2\right) - x1}{t\_1}\right)\\ \mathbf{else}:\\ \;\;\;\;t\_2\\ \end{array} \end{array} \]
                    (FPCore (x1 x2)
                     :precision binary64
                     (let* ((t_0 (* (* 3.0 x1) x1))
                            (t_1 (+ (* x1 x1) 1.0))
                            (t_2
                             (*
                              (pow x1 4.0)
                              (+
                               6.0
                               (*
                                -1.0
                                (/
                                 (+ 3.0 (* -1.0 (/ (+ 9.0 (* 4.0 (- (* 2.0 x2) 3.0))) x1)))
                                 x1)))))
                            (t_3 (/ (- (+ t_0 (* 2.0 x2)) x1) t_1)))
                       (if (<= x1 -4.2e+45)
                         t_2
                         (if (<= x1 5.4e+45)
                           (+
                            x1
                            (+
                             (+
                              (+
                               (+
                                (* (+ (* (* (* 2.0 x1) t_3) (- t_3 3.0)) (* (* x1 x1) 6.0)) t_1)
                                (* 6.0 (* (* x1 x1) x2)))
                               (* (* x1 x1) x1))
                              x1)
                             (* 3.0 (/ (- (- t_0 (* 2.0 x2)) x1) t_1))))
                           t_2))))
                    double code(double x1, double x2) {
                    	double t_0 = (3.0 * x1) * x1;
                    	double t_1 = (x1 * x1) + 1.0;
                    	double t_2 = pow(x1, 4.0) * (6.0 + (-1.0 * ((3.0 + (-1.0 * ((9.0 + (4.0 * ((2.0 * x2) - 3.0))) / x1))) / x1)));
                    	double t_3 = ((t_0 + (2.0 * x2)) - x1) / t_1;
                    	double tmp;
                    	if (x1 <= -4.2e+45) {
                    		tmp = t_2;
                    	} else if (x1 <= 5.4e+45) {
                    		tmp = x1 + (((((((((2.0 * x1) * t_3) * (t_3 - 3.0)) + ((x1 * x1) * 6.0)) * t_1) + (6.0 * ((x1 * x1) * x2))) + ((x1 * x1) * x1)) + x1) + (3.0 * (((t_0 - (2.0 * x2)) - x1) / t_1)));
                    	} else {
                    		tmp = t_2;
                    	}
                    	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(x1, x2)
                    use fmin_fmax_functions
                        real(8), intent (in) :: x1
                        real(8), intent (in) :: x2
                        real(8) :: t_0
                        real(8) :: t_1
                        real(8) :: t_2
                        real(8) :: t_3
                        real(8) :: tmp
                        t_0 = (3.0d0 * x1) * x1
                        t_1 = (x1 * x1) + 1.0d0
                        t_2 = (x1 ** 4.0d0) * (6.0d0 + ((-1.0d0) * ((3.0d0 + ((-1.0d0) * ((9.0d0 + (4.0d0 * ((2.0d0 * x2) - 3.0d0))) / x1))) / x1)))
                        t_3 = ((t_0 + (2.0d0 * x2)) - x1) / t_1
                        if (x1 <= (-4.2d+45)) then
                            tmp = t_2
                        else if (x1 <= 5.4d+45) then
                            tmp = x1 + (((((((((2.0d0 * x1) * t_3) * (t_3 - 3.0d0)) + ((x1 * x1) * 6.0d0)) * t_1) + (6.0d0 * ((x1 * x1) * x2))) + ((x1 * x1) * x1)) + x1) + (3.0d0 * (((t_0 - (2.0d0 * x2)) - x1) / t_1)))
                        else
                            tmp = t_2
                        end if
                        code = tmp
                    end function
                    
                    public static double code(double x1, double x2) {
                    	double t_0 = (3.0 * x1) * x1;
                    	double t_1 = (x1 * x1) + 1.0;
                    	double t_2 = Math.pow(x1, 4.0) * (6.0 + (-1.0 * ((3.0 + (-1.0 * ((9.0 + (4.0 * ((2.0 * x2) - 3.0))) / x1))) / x1)));
                    	double t_3 = ((t_0 + (2.0 * x2)) - x1) / t_1;
                    	double tmp;
                    	if (x1 <= -4.2e+45) {
                    		tmp = t_2;
                    	} else if (x1 <= 5.4e+45) {
                    		tmp = x1 + (((((((((2.0 * x1) * t_3) * (t_3 - 3.0)) + ((x1 * x1) * 6.0)) * t_1) + (6.0 * ((x1 * x1) * x2))) + ((x1 * x1) * x1)) + x1) + (3.0 * (((t_0 - (2.0 * x2)) - x1) / t_1)));
                    	} else {
                    		tmp = t_2;
                    	}
                    	return tmp;
                    }
                    
                    def code(x1, x2):
                    	t_0 = (3.0 * x1) * x1
                    	t_1 = (x1 * x1) + 1.0
                    	t_2 = math.pow(x1, 4.0) * (6.0 + (-1.0 * ((3.0 + (-1.0 * ((9.0 + (4.0 * ((2.0 * x2) - 3.0))) / x1))) / x1)))
                    	t_3 = ((t_0 + (2.0 * x2)) - x1) / t_1
                    	tmp = 0
                    	if x1 <= -4.2e+45:
                    		tmp = t_2
                    	elif x1 <= 5.4e+45:
                    		tmp = x1 + (((((((((2.0 * x1) * t_3) * (t_3 - 3.0)) + ((x1 * x1) * 6.0)) * t_1) + (6.0 * ((x1 * x1) * x2))) + ((x1 * x1) * x1)) + x1) + (3.0 * (((t_0 - (2.0 * x2)) - x1) / t_1)))
                    	else:
                    		tmp = t_2
                    	return tmp
                    
                    function code(x1, x2)
                    	t_0 = Float64(Float64(3.0 * x1) * x1)
                    	t_1 = Float64(Float64(x1 * x1) + 1.0)
                    	t_2 = Float64((x1 ^ 4.0) * Float64(6.0 + Float64(-1.0 * Float64(Float64(3.0 + Float64(-1.0 * Float64(Float64(9.0 + Float64(4.0 * Float64(Float64(2.0 * x2) - 3.0))) / x1))) / x1))))
                    	t_3 = Float64(Float64(Float64(t_0 + Float64(2.0 * x2)) - x1) / t_1)
                    	tmp = 0.0
                    	if (x1 <= -4.2e+45)
                    		tmp = t_2;
                    	elseif (x1 <= 5.4e+45)
                    		tmp = Float64(x1 + Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(2.0 * x1) * t_3) * Float64(t_3 - 3.0)) + Float64(Float64(x1 * x1) * 6.0)) * t_1) + Float64(6.0 * Float64(Float64(x1 * x1) * x2))) + Float64(Float64(x1 * x1) * x1)) + x1) + Float64(3.0 * Float64(Float64(Float64(t_0 - Float64(2.0 * x2)) - x1) / t_1))));
                    	else
                    		tmp = t_2;
                    	end
                    	return tmp
                    end
                    
                    function tmp_2 = code(x1, x2)
                    	t_0 = (3.0 * x1) * x1;
                    	t_1 = (x1 * x1) + 1.0;
                    	t_2 = (x1 ^ 4.0) * (6.0 + (-1.0 * ((3.0 + (-1.0 * ((9.0 + (4.0 * ((2.0 * x2) - 3.0))) / x1))) / x1)));
                    	t_3 = ((t_0 + (2.0 * x2)) - x1) / t_1;
                    	tmp = 0.0;
                    	if (x1 <= -4.2e+45)
                    		tmp = t_2;
                    	elseif (x1 <= 5.4e+45)
                    		tmp = x1 + (((((((((2.0 * x1) * t_3) * (t_3 - 3.0)) + ((x1 * x1) * 6.0)) * t_1) + (6.0 * ((x1 * x1) * x2))) + ((x1 * x1) * x1)) + x1) + (3.0 * (((t_0 - (2.0 * x2)) - x1) / t_1)));
                    	else
                    		tmp = t_2;
                    	end
                    	tmp_2 = tmp;
                    end
                    
                    code[x1_, x2_] := Block[{t$95$0 = N[(N[(3.0 * x1), $MachinePrecision] * x1), $MachinePrecision]}, Block[{t$95$1 = N[(N[(x1 * x1), $MachinePrecision] + 1.0), $MachinePrecision]}, Block[{t$95$2 = N[(N[Power[x1, 4.0], $MachinePrecision] * N[(6.0 + N[(-1.0 * N[(N[(3.0 + N[(-1.0 * N[(N[(9.0 + N[(4.0 * N[(N[(2.0 * x2), $MachinePrecision] - 3.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / x1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / x1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$3 = N[(N[(N[(t$95$0 + N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / t$95$1), $MachinePrecision]}, If[LessEqual[x1, -4.2e+45], t$95$2, If[LessEqual[x1, 5.4e+45], N[(x1 + N[(N[(N[(N[(N[(N[(N[(N[(N[(2.0 * x1), $MachinePrecision] * t$95$3), $MachinePrecision] * N[(t$95$3 - 3.0), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * 6.0), $MachinePrecision]), $MachinePrecision] * t$95$1), $MachinePrecision] + N[(6.0 * N[(N[(x1 * x1), $MachinePrecision] * x2), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * x1), $MachinePrecision]), $MachinePrecision] + x1), $MachinePrecision] + N[(3.0 * N[(N[(N[(t$95$0 - N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / t$95$1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], t$95$2]]]]]]
                    
                    \begin{array}{l}
                    
                    \\
                    \begin{array}{l}
                    t_0 := \left(3 \cdot x1\right) \cdot x1\\
                    t_1 := x1 \cdot x1 + 1\\
                    t_2 := {x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot \left(2 \cdot x2 - 3\right)}{x1}}{x1}\right)\\
                    t_3 := \frac{\left(t\_0 + 2 \cdot x2\right) - x1}{t\_1}\\
                    \mathbf{if}\;x1 \leq -4.2 \cdot 10^{+45}:\\
                    \;\;\;\;t\_2\\
                    
                    \mathbf{elif}\;x1 \leq 5.4 \cdot 10^{+45}:\\
                    \;\;\;\;x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot t\_3\right) \cdot \left(t\_3 - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot t\_1 + 6 \cdot \left(\left(x1 \cdot x1\right) \cdot x2\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(t\_0 - 2 \cdot x2\right) - x1}{t\_1}\right)\\
                    
                    \mathbf{else}:\\
                    \;\;\;\;t\_2\\
                    
                    
                    \end{array}
                    \end{array}
                    
                    Derivation
                    1. Split input into 2 regimes
                    2. if x1 < -4.1999999999999999e45 or 5.39999999999999968e45 < x1

                      1. Initial program 31.4%

                        \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                      2. Taylor expanded in x1 around -inf

                        \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot \left(2 \cdot x2 - 3\right)}{x1}}{x1}\right)} \]
                      3. Step-by-step derivation
                        1. lower-*.f64N/A

                          \[\leadsto {x1}^{4} \cdot \color{blue}{\left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot \left(2 \cdot x2 - 3\right)}{x1}}{x1}\right)} \]
                        2. lower-pow.f64N/A

                          \[\leadsto {x1}^{4} \cdot \left(\color{blue}{6} + -1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot \left(2 \cdot x2 - 3\right)}{x1}}{x1}\right) \]
                        3. lower-+.f64N/A

                          \[\leadsto {x1}^{4} \cdot \left(6 + \color{blue}{-1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot \left(2 \cdot x2 - 3\right)}{x1}}{x1}}\right) \]
                      4. Applied rewrites98.2%

                        \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot \left(2 \cdot x2 - 3\right)}{x1}}{x1}\right)} \]

                      if -4.1999999999999999e45 < x1 < 5.39999999999999968e45

                      1. Initial program 99.3%

                        \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                      2. Taylor expanded in x2 around 0

                        \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \color{blue}{3 \cdot \frac{{x1}^{2} \cdot \left(3 \cdot {x1}^{2} - x1\right)}{1 + {x1}^{2}}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                      3. Step-by-step derivation
                        1. lower-*.f64N/A

                          \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \color{blue}{\frac{{x1}^{2} \cdot \left(3 \cdot {x1}^{2} - x1\right)}{1 + {x1}^{2}}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                        2. lower-/.f64N/A

                          \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{{x1}^{2} \cdot \left(3 \cdot {x1}^{2} - x1\right)}{\color{blue}{1 + {x1}^{2}}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                        3. lower-*.f64N/A

                          \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{{x1}^{2} \cdot \left(3 \cdot {x1}^{2} - x1\right)}{\color{blue}{1} + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                        4. pow2N/A

                          \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot {x1}^{2} - x1\right)}{1 + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                        5. lift-*.f64N/A

                          \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot {x1}^{2} - x1\right)}{1 + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                        6. lower--.f64N/A

                          \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot {x1}^{2} - x1\right)}{1 + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                        7. lower-*.f64N/A

                          \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot {x1}^{2} - x1\right)}{1 + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                        8. pow2N/A

                          \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                        9. lift-*.f64N/A

                          \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                        10. lower-+.f64N/A

                          \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + \color{blue}{{x1}^{2}}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                        11. pow2N/A

                          \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + x1 \cdot \color{blue}{x1}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                        12. lift-*.f6499.2

                          \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + x1 \cdot \color{blue}{x1}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                      4. Applied rewrites99.2%

                        \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \color{blue}{3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + x1 \cdot x1}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                      5. Taylor expanded in x1 around inf

                        \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \color{blue}{6}\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + x1 \cdot x1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                      6. Step-by-step derivation
                        1. Applied rewrites96.9%

                          \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \color{blue}{6}\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + x1 \cdot x1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                        2. Taylor expanded in x1 around 0

                          \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot \left(x1 \cdot x1 + 1\right) + \color{blue}{6 \cdot \left({x1}^{2} \cdot x2\right)}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                        3. Step-by-step derivation
                          1. lower-*.f64N/A

                            \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot \left(x1 \cdot x1 + 1\right) + 6 \cdot \color{blue}{\left({x1}^{2} \cdot x2\right)}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                          2. lower-*.f64N/A

                            \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot \left(x1 \cdot x1 + 1\right) + 6 \cdot \left({x1}^{2} \cdot \color{blue}{x2}\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                          3. pow2N/A

                            \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot \left(x1 \cdot x1 + 1\right) + 6 \cdot \left(\left(x1 \cdot x1\right) \cdot x2\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                          4. lift-*.f6496.3

                            \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot \left(x1 \cdot x1 + 1\right) + 6 \cdot \left(\left(x1 \cdot x1\right) \cdot x2\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                        4. Applied rewrites96.3%

                          \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot \left(x1 \cdot x1 + 1\right) + \color{blue}{6 \cdot \left(\left(x1 \cdot x1\right) \cdot x2\right)}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                      7. Recombined 2 regimes into one program.
                      8. Add Preprocessing

                      Alternative 12: 96.6% accurate, 1.4× speedup?

                      \[\begin{array}{l} \\ \begin{array}{l} t_0 := x1 \cdot x1 + 1\\ t_1 := 2 \cdot x2 - 3\\ t_2 := 4 \cdot t\_1\\ t_3 := \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{t\_0}\\ \mathbf{if}\;x1 \leq -1.85:\\ \;\;\;\;{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + \mathsf{fma}\left(-1, \frac{1 + -2 \cdot \left(1 + 3 \cdot t\_1\right)}{x1}, t\_2\right)}{x1}}{x1}\right)\\ \mathbf{elif}\;x1 \leq 2.9 \cdot 10^{-16}:\\ \;\;\;\;\mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right)\\ \mathbf{elif}\;x1 \leq 5.4 \cdot 10^{+45}:\\ \;\;\;\;x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot t\_3\right) \cdot \left(t\_3 - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot t\_0 + 6 \cdot \left(\left(x1 \cdot x1\right) \cdot x2\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 9\right)\\ \mathbf{else}:\\ \;\;\;\;{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + t\_2}{x1}}{x1}\right)\\ \end{array} \end{array} \]
                      (FPCore (x1 x2)
                       :precision binary64
                       (let* ((t_0 (+ (* x1 x1) 1.0))
                              (t_1 (- (* 2.0 x2) 3.0))
                              (t_2 (* 4.0 t_1))
                              (t_3 (/ (- (+ (* (* 3.0 x1) x1) (* 2.0 x2)) x1) t_0)))
                         (if (<= x1 -1.85)
                           (*
                            (pow x1 4.0)
                            (+
                             6.0
                             (*
                              -1.0
                              (/
                               (+
                                3.0
                                (*
                                 -1.0
                                 (/
                                  (+ 9.0 (fma -1.0 (/ (+ 1.0 (* -2.0 (+ 1.0 (* 3.0 t_1)))) x1) t_2))
                                  x1)))
                               x1))))
                           (if (<= x1 2.9e-16)
                             (fma
                              -6.0
                              x2
                              (fma
                               x1
                               (- (* 9.0 x1) 1.0)
                               (* x2 (fma 8.0 (* x1 x2) (* x1 (- (* 12.0 x1) 12.0))))))
                             (if (<= x1 5.4e+45)
                               (+
                                x1
                                (+
                                 (+
                                  (+
                                   (+
                                    (* (+ (* (* (* 2.0 x1) t_3) (- t_3 3.0)) (* (* x1 x1) 6.0)) t_0)
                                    (* 6.0 (* (* x1 x1) x2)))
                                   (* (* x1 x1) x1))
                                  x1)
                                 9.0))
                               (*
                                (pow x1 4.0)
                                (+ 6.0 (* -1.0 (/ (+ 3.0 (* -1.0 (/ (+ 9.0 t_2) x1))) x1)))))))))
                      double code(double x1, double x2) {
                      	double t_0 = (x1 * x1) + 1.0;
                      	double t_1 = (2.0 * x2) - 3.0;
                      	double t_2 = 4.0 * t_1;
                      	double t_3 = ((((3.0 * x1) * x1) + (2.0 * x2)) - x1) / t_0;
                      	double tmp;
                      	if (x1 <= -1.85) {
                      		tmp = pow(x1, 4.0) * (6.0 + (-1.0 * ((3.0 + (-1.0 * ((9.0 + fma(-1.0, ((1.0 + (-2.0 * (1.0 + (3.0 * t_1)))) / x1), t_2)) / x1))) / x1)));
                      	} else if (x1 <= 2.9e-16) {
                      		tmp = fma(-6.0, x2, fma(x1, ((9.0 * x1) - 1.0), (x2 * fma(8.0, (x1 * x2), (x1 * ((12.0 * x1) - 12.0))))));
                      	} else if (x1 <= 5.4e+45) {
                      		tmp = x1 + (((((((((2.0 * x1) * t_3) * (t_3 - 3.0)) + ((x1 * x1) * 6.0)) * t_0) + (6.0 * ((x1 * x1) * x2))) + ((x1 * x1) * x1)) + x1) + 9.0);
                      	} else {
                      		tmp = pow(x1, 4.0) * (6.0 + (-1.0 * ((3.0 + (-1.0 * ((9.0 + t_2) / x1))) / x1)));
                      	}
                      	return tmp;
                      }
                      
                      function code(x1, x2)
                      	t_0 = Float64(Float64(x1 * x1) + 1.0)
                      	t_1 = Float64(Float64(2.0 * x2) - 3.0)
                      	t_2 = Float64(4.0 * t_1)
                      	t_3 = Float64(Float64(Float64(Float64(Float64(3.0 * x1) * x1) + Float64(2.0 * x2)) - x1) / t_0)
                      	tmp = 0.0
                      	if (x1 <= -1.85)
                      		tmp = Float64((x1 ^ 4.0) * Float64(6.0 + Float64(-1.0 * Float64(Float64(3.0 + Float64(-1.0 * Float64(Float64(9.0 + fma(-1.0, Float64(Float64(1.0 + Float64(-2.0 * Float64(1.0 + Float64(3.0 * t_1)))) / x1), t_2)) / x1))) / x1))));
                      	elseif (x1 <= 2.9e-16)
                      		tmp = fma(-6.0, x2, fma(x1, Float64(Float64(9.0 * x1) - 1.0), Float64(x2 * fma(8.0, Float64(x1 * x2), Float64(x1 * Float64(Float64(12.0 * x1) - 12.0))))));
                      	elseif (x1 <= 5.4e+45)
                      		tmp = Float64(x1 + Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(2.0 * x1) * t_3) * Float64(t_3 - 3.0)) + Float64(Float64(x1 * x1) * 6.0)) * t_0) + Float64(6.0 * Float64(Float64(x1 * x1) * x2))) + Float64(Float64(x1 * x1) * x1)) + x1) + 9.0));
                      	else
                      		tmp = Float64((x1 ^ 4.0) * Float64(6.0 + Float64(-1.0 * Float64(Float64(3.0 + Float64(-1.0 * Float64(Float64(9.0 + t_2) / x1))) / x1))));
                      	end
                      	return tmp
                      end
                      
                      code[x1_, x2_] := Block[{t$95$0 = N[(N[(x1 * x1), $MachinePrecision] + 1.0), $MachinePrecision]}, Block[{t$95$1 = N[(N[(2.0 * x2), $MachinePrecision] - 3.0), $MachinePrecision]}, Block[{t$95$2 = N[(4.0 * t$95$1), $MachinePrecision]}, Block[{t$95$3 = N[(N[(N[(N[(N[(3.0 * x1), $MachinePrecision] * x1), $MachinePrecision] + N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / t$95$0), $MachinePrecision]}, If[LessEqual[x1, -1.85], N[(N[Power[x1, 4.0], $MachinePrecision] * N[(6.0 + N[(-1.0 * N[(N[(3.0 + N[(-1.0 * N[(N[(9.0 + N[(-1.0 * N[(N[(1.0 + N[(-2.0 * N[(1.0 + N[(3.0 * t$95$1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / x1), $MachinePrecision] + t$95$2), $MachinePrecision]), $MachinePrecision] / x1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / x1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[x1, 2.9e-16], N[(-6.0 * x2 + N[(x1 * N[(N[(9.0 * x1), $MachinePrecision] - 1.0), $MachinePrecision] + N[(x2 * N[(8.0 * N[(x1 * x2), $MachinePrecision] + N[(x1 * N[(N[(12.0 * x1), $MachinePrecision] - 12.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[x1, 5.4e+45], N[(x1 + N[(N[(N[(N[(N[(N[(N[(N[(N[(2.0 * x1), $MachinePrecision] * t$95$3), $MachinePrecision] * N[(t$95$3 - 3.0), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * 6.0), $MachinePrecision]), $MachinePrecision] * t$95$0), $MachinePrecision] + N[(6.0 * N[(N[(x1 * x1), $MachinePrecision] * x2), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * x1), $MachinePrecision]), $MachinePrecision] + x1), $MachinePrecision] + 9.0), $MachinePrecision]), $MachinePrecision], N[(N[Power[x1, 4.0], $MachinePrecision] * N[(6.0 + N[(-1.0 * N[(N[(3.0 + N[(-1.0 * N[(N[(9.0 + t$95$2), $MachinePrecision] / x1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / x1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]]]]]]
                      
                      \begin{array}{l}
                      
                      \\
                      \begin{array}{l}
                      t_0 := x1 \cdot x1 + 1\\
                      t_1 := 2 \cdot x2 - 3\\
                      t_2 := 4 \cdot t\_1\\
                      t_3 := \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{t\_0}\\
                      \mathbf{if}\;x1 \leq -1.85:\\
                      \;\;\;\;{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + \mathsf{fma}\left(-1, \frac{1 + -2 \cdot \left(1 + 3 \cdot t\_1\right)}{x1}, t\_2\right)}{x1}}{x1}\right)\\
                      
                      \mathbf{elif}\;x1 \leq 2.9 \cdot 10^{-16}:\\
                      \;\;\;\;\mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right)\\
                      
                      \mathbf{elif}\;x1 \leq 5.4 \cdot 10^{+45}:\\
                      \;\;\;\;x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot t\_3\right) \cdot \left(t\_3 - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot t\_0 + 6 \cdot \left(\left(x1 \cdot x1\right) \cdot x2\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 9\right)\\
                      
                      \mathbf{else}:\\
                      \;\;\;\;{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + t\_2}{x1}}{x1}\right)\\
                      
                      
                      \end{array}
                      \end{array}
                      
                      Derivation
                      1. Split input into 4 regimes
                      2. if x1 < -1.8500000000000001

                        1. Initial program 30.7%

                          \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                        2. Taylor expanded in x1 around -inf

                          \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + \left(-1 \cdot \frac{1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1} + 4 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}}{x1}\right)} \]
                        3. Applied rewrites94.7%

                          \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + \mathsf{fma}\left(-1, \frac{1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}, 4 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}}{x1}\right)} \]

                        if -1.8500000000000001 < x1 < 2.8999999999999998e-16

                        1. Initial program 99.3%

                          \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                        2. Taylor expanded in x1 around 0

                          \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
                        3. Step-by-step derivation
                          1. lower-fma.f64N/A

                            \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
                        4. Applied rewrites87.2%

                          \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
                        5. Taylor expanded in x2 around 0

                          \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right) + x2 \cdot \left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right) \]
                        6. Step-by-step derivation
                          1. lower-fma.f64N/A

                            \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                          2. lower--.f64N/A

                            \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                          3. lower-*.f64N/A

                            \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                          4. lower-*.f64N/A

                            \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                          5. lower-fma.f64N/A

                            \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                          6. lower-*.f64N/A

                            \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                          7. lower-*.f64N/A

                            \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                          8. lower--.f64N/A

                            \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                          9. lower-*.f6499.5

                            \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                        7. Applied rewrites99.5%

                          \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]

                        if 2.8999999999999998e-16 < x1 < 5.39999999999999968e45

                        1. Initial program 98.8%

                          \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                        2. Taylor expanded in x2 around 0

                          \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \color{blue}{3 \cdot \frac{{x1}^{2} \cdot \left(3 \cdot {x1}^{2} - x1\right)}{1 + {x1}^{2}}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                        3. Step-by-step derivation
                          1. lower-*.f64N/A

                            \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \color{blue}{\frac{{x1}^{2} \cdot \left(3 \cdot {x1}^{2} - x1\right)}{1 + {x1}^{2}}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                          2. lower-/.f64N/A

                            \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{{x1}^{2} \cdot \left(3 \cdot {x1}^{2} - x1\right)}{\color{blue}{1 + {x1}^{2}}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                          3. lower-*.f64N/A

                            \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{{x1}^{2} \cdot \left(3 \cdot {x1}^{2} - x1\right)}{\color{blue}{1} + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                          4. pow2N/A

                            \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot {x1}^{2} - x1\right)}{1 + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                          5. lift-*.f64N/A

                            \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot {x1}^{2} - x1\right)}{1 + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                          6. lower--.f64N/A

                            \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot {x1}^{2} - x1\right)}{1 + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                          7. lower-*.f64N/A

                            \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot {x1}^{2} - x1\right)}{1 + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                          8. pow2N/A

                            \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                          9. lift-*.f64N/A

                            \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                          10. lower-+.f64N/A

                            \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + \color{blue}{{x1}^{2}}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                          11. pow2N/A

                            \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + x1 \cdot \color{blue}{x1}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                          12. lift-*.f6498.5

                            \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + x1 \cdot \color{blue}{x1}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                        4. Applied rewrites98.5%

                          \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \color{blue}{3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + x1 \cdot x1}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                        5. Taylor expanded in x1 around inf

                          \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \color{blue}{6}\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + x1 \cdot x1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                        6. Step-by-step derivation
                          1. Applied rewrites83.3%

                            \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \color{blue}{6}\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + x1 \cdot x1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                          2. Taylor expanded in x1 around 0

                            \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot \left(x1 \cdot x1 + 1\right) + \color{blue}{6 \cdot \left({x1}^{2} \cdot x2\right)}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                          3. Step-by-step derivation
                            1. lower-*.f64N/A

                              \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot \left(x1 \cdot x1 + 1\right) + 6 \cdot \color{blue}{\left({x1}^{2} \cdot x2\right)}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                            2. lower-*.f64N/A

                              \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot \left(x1 \cdot x1 + 1\right) + 6 \cdot \left({x1}^{2} \cdot \color{blue}{x2}\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                            3. pow2N/A

                              \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot \left(x1 \cdot x1 + 1\right) + 6 \cdot \left(\left(x1 \cdot x1\right) \cdot x2\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                            4. lift-*.f6478.9

                              \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot \left(x1 \cdot x1 + 1\right) + 6 \cdot \left(\left(x1 \cdot x1\right) \cdot x2\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                          4. Applied rewrites78.9%

                            \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot \left(x1 \cdot x1 + 1\right) + \color{blue}{6 \cdot \left(\left(x1 \cdot x1\right) \cdot x2\right)}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                          5. Taylor expanded in x1 around inf

                            \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot \left(x1 \cdot x1 + 1\right) + 6 \cdot \left(\left(x1 \cdot x1\right) \cdot x2\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + \color{blue}{9}\right) \]
                          6. Step-by-step derivation
                            1. Applied rewrites73.1%

                              \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot \left(x1 \cdot x1 + 1\right) + 6 \cdot \left(\left(x1 \cdot x1\right) \cdot x2\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + \color{blue}{9}\right) \]

                            if 5.39999999999999968e45 < x1

                            1. Initial program 41.6%

                              \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                            2. Taylor expanded in x1 around -inf

                              \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot \left(2 \cdot x2 - 3\right)}{x1}}{x1}\right)} \]
                            3. Step-by-step derivation
                              1. lower-*.f64N/A

                                \[\leadsto {x1}^{4} \cdot \color{blue}{\left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot \left(2 \cdot x2 - 3\right)}{x1}}{x1}\right)} \]
                              2. lower-pow.f64N/A

                                \[\leadsto {x1}^{4} \cdot \left(\color{blue}{6} + -1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot \left(2 \cdot x2 - 3\right)}{x1}}{x1}\right) \]
                              3. lower-+.f64N/A

                                \[\leadsto {x1}^{4} \cdot \left(6 + \color{blue}{-1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot \left(2 \cdot x2 - 3\right)}{x1}}{x1}}\right) \]
                            4. Applied rewrites98.0%

                              \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot \left(2 \cdot x2 - 3\right)}{x1}}{x1}\right)} \]
                          7. Recombined 4 regimes into one program.
                          8. Add Preprocessing

                          Alternative 13: 96.6% accurate, 1.6× speedup?

                          \[\begin{array}{l} \\ \begin{array}{l} t_0 := 2 \cdot x2 - 3\\ t_1 := x1 \cdot x1 + 1\\ t_2 := \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{t\_1}\\ \mathbf{if}\;x1 \leq -1.85:\\ \;\;\;\;x1 \cdot \mathsf{fma}\left(-1, 1 + -2 \cdot \left(1 + 3 \cdot t\_0\right), x1 \cdot \left(9 + \mathsf{fma}\left(4, t\_0, x1 \cdot \left(6 \cdot x1 - 3\right)\right)\right)\right)\\ \mathbf{elif}\;x1 \leq 2.9 \cdot 10^{-16}:\\ \;\;\;\;\mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right)\\ \mathbf{elif}\;x1 \leq 5.4 \cdot 10^{+45}:\\ \;\;\;\;x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot t\_2\right) \cdot \left(t\_2 - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot t\_1 + 6 \cdot \left(\left(x1 \cdot x1\right) \cdot x2\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 9\right)\\ \mathbf{else}:\\ \;\;\;\;{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot t\_0}{x1}}{x1}\right)\\ \end{array} \end{array} \]
                          (FPCore (x1 x2)
                           :precision binary64
                           (let* ((t_0 (- (* 2.0 x2) 3.0))
                                  (t_1 (+ (* x1 x1) 1.0))
                                  (t_2 (/ (- (+ (* (* 3.0 x1) x1) (* 2.0 x2)) x1) t_1)))
                             (if (<= x1 -1.85)
                               (*
                                x1
                                (fma
                                 -1.0
                                 (+ 1.0 (* -2.0 (+ 1.0 (* 3.0 t_0))))
                                 (* x1 (+ 9.0 (fma 4.0 t_0 (* x1 (- (* 6.0 x1) 3.0)))))))
                               (if (<= x1 2.9e-16)
                                 (fma
                                  -6.0
                                  x2
                                  (fma
                                   x1
                                   (- (* 9.0 x1) 1.0)
                                   (* x2 (fma 8.0 (* x1 x2) (* x1 (- (* 12.0 x1) 12.0))))))
                                 (if (<= x1 5.4e+45)
                                   (+
                                    x1
                                    (+
                                     (+
                                      (+
                                       (+
                                        (* (+ (* (* (* 2.0 x1) t_2) (- t_2 3.0)) (* (* x1 x1) 6.0)) t_1)
                                        (* 6.0 (* (* x1 x1) x2)))
                                       (* (* x1 x1) x1))
                                      x1)
                                     9.0))
                                   (*
                                    (pow x1 4.0)
                                    (+
                                     6.0
                                     (* -1.0 (/ (+ 3.0 (* -1.0 (/ (+ 9.0 (* 4.0 t_0)) x1))) x1)))))))))
                          double code(double x1, double x2) {
                          	double t_0 = (2.0 * x2) - 3.0;
                          	double t_1 = (x1 * x1) + 1.0;
                          	double t_2 = ((((3.0 * x1) * x1) + (2.0 * x2)) - x1) / t_1;
                          	double tmp;
                          	if (x1 <= -1.85) {
                          		tmp = x1 * fma(-1.0, (1.0 + (-2.0 * (1.0 + (3.0 * t_0)))), (x1 * (9.0 + fma(4.0, t_0, (x1 * ((6.0 * x1) - 3.0))))));
                          	} else if (x1 <= 2.9e-16) {
                          		tmp = fma(-6.0, x2, fma(x1, ((9.0 * x1) - 1.0), (x2 * fma(8.0, (x1 * x2), (x1 * ((12.0 * x1) - 12.0))))));
                          	} else if (x1 <= 5.4e+45) {
                          		tmp = x1 + (((((((((2.0 * x1) * t_2) * (t_2 - 3.0)) + ((x1 * x1) * 6.0)) * t_1) + (6.0 * ((x1 * x1) * x2))) + ((x1 * x1) * x1)) + x1) + 9.0);
                          	} else {
                          		tmp = pow(x1, 4.0) * (6.0 + (-1.0 * ((3.0 + (-1.0 * ((9.0 + (4.0 * t_0)) / x1))) / x1)));
                          	}
                          	return tmp;
                          }
                          
                          function code(x1, x2)
                          	t_0 = Float64(Float64(2.0 * x2) - 3.0)
                          	t_1 = Float64(Float64(x1 * x1) + 1.0)
                          	t_2 = Float64(Float64(Float64(Float64(Float64(3.0 * x1) * x1) + Float64(2.0 * x2)) - x1) / t_1)
                          	tmp = 0.0
                          	if (x1 <= -1.85)
                          		tmp = Float64(x1 * fma(-1.0, Float64(1.0 + Float64(-2.0 * Float64(1.0 + Float64(3.0 * t_0)))), Float64(x1 * Float64(9.0 + fma(4.0, t_0, Float64(x1 * Float64(Float64(6.0 * x1) - 3.0)))))));
                          	elseif (x1 <= 2.9e-16)
                          		tmp = fma(-6.0, x2, fma(x1, Float64(Float64(9.0 * x1) - 1.0), Float64(x2 * fma(8.0, Float64(x1 * x2), Float64(x1 * Float64(Float64(12.0 * x1) - 12.0))))));
                          	elseif (x1 <= 5.4e+45)
                          		tmp = Float64(x1 + Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(2.0 * x1) * t_2) * Float64(t_2 - 3.0)) + Float64(Float64(x1 * x1) * 6.0)) * t_1) + Float64(6.0 * Float64(Float64(x1 * x1) * x2))) + Float64(Float64(x1 * x1) * x1)) + x1) + 9.0));
                          	else
                          		tmp = Float64((x1 ^ 4.0) * Float64(6.0 + Float64(-1.0 * Float64(Float64(3.0 + Float64(-1.0 * Float64(Float64(9.0 + Float64(4.0 * t_0)) / x1))) / x1))));
                          	end
                          	return tmp
                          end
                          
                          code[x1_, x2_] := Block[{t$95$0 = N[(N[(2.0 * x2), $MachinePrecision] - 3.0), $MachinePrecision]}, Block[{t$95$1 = N[(N[(x1 * x1), $MachinePrecision] + 1.0), $MachinePrecision]}, Block[{t$95$2 = N[(N[(N[(N[(N[(3.0 * x1), $MachinePrecision] * x1), $MachinePrecision] + N[(2.0 * x2), $MachinePrecision]), $MachinePrecision] - x1), $MachinePrecision] / t$95$1), $MachinePrecision]}, If[LessEqual[x1, -1.85], N[(x1 * N[(-1.0 * N[(1.0 + N[(-2.0 * N[(1.0 + N[(3.0 * t$95$0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(x1 * N[(9.0 + N[(4.0 * t$95$0 + N[(x1 * N[(N[(6.0 * x1), $MachinePrecision] - 3.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[x1, 2.9e-16], N[(-6.0 * x2 + N[(x1 * N[(N[(9.0 * x1), $MachinePrecision] - 1.0), $MachinePrecision] + N[(x2 * N[(8.0 * N[(x1 * x2), $MachinePrecision] + N[(x1 * N[(N[(12.0 * x1), $MachinePrecision] - 12.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[x1, 5.4e+45], N[(x1 + N[(N[(N[(N[(N[(N[(N[(N[(N[(2.0 * x1), $MachinePrecision] * t$95$2), $MachinePrecision] * N[(t$95$2 - 3.0), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * 6.0), $MachinePrecision]), $MachinePrecision] * t$95$1), $MachinePrecision] + N[(6.0 * N[(N[(x1 * x1), $MachinePrecision] * x2), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * x1), $MachinePrecision]), $MachinePrecision] + x1), $MachinePrecision] + 9.0), $MachinePrecision]), $MachinePrecision], N[(N[Power[x1, 4.0], $MachinePrecision] * N[(6.0 + N[(-1.0 * N[(N[(3.0 + N[(-1.0 * N[(N[(9.0 + N[(4.0 * t$95$0), $MachinePrecision]), $MachinePrecision] / x1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / x1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]]]]]
                          
                          \begin{array}{l}
                          
                          \\
                          \begin{array}{l}
                          t_0 := 2 \cdot x2 - 3\\
                          t_1 := x1 \cdot x1 + 1\\
                          t_2 := \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{t\_1}\\
                          \mathbf{if}\;x1 \leq -1.85:\\
                          \;\;\;\;x1 \cdot \mathsf{fma}\left(-1, 1 + -2 \cdot \left(1 + 3 \cdot t\_0\right), x1 \cdot \left(9 + \mathsf{fma}\left(4, t\_0, x1 \cdot \left(6 \cdot x1 - 3\right)\right)\right)\right)\\
                          
                          \mathbf{elif}\;x1 \leq 2.9 \cdot 10^{-16}:\\
                          \;\;\;\;\mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right)\\
                          
                          \mathbf{elif}\;x1 \leq 5.4 \cdot 10^{+45}:\\
                          \;\;\;\;x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot t\_2\right) \cdot \left(t\_2 - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot t\_1 + 6 \cdot \left(\left(x1 \cdot x1\right) \cdot x2\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 9\right)\\
                          
                          \mathbf{else}:\\
                          \;\;\;\;{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot t\_0}{x1}}{x1}\right)\\
                          
                          
                          \end{array}
                          \end{array}
                          
                          Derivation
                          1. Split input into 4 regimes
                          2. if x1 < -1.8500000000000001

                            1. Initial program 30.7%

                              \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                            2. Taylor expanded in x1 around -inf

                              \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + \left(-1 \cdot \frac{1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1} + 4 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}}{x1}\right)} \]
                            3. Applied rewrites94.7%

                              \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + \mathsf{fma}\left(-1, \frac{1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}, 4 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}}{x1}\right)} \]
                            4. Taylor expanded in x1 around 0

                              \[\leadsto x1 \cdot \color{blue}{\left(-1 \cdot \left(1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + x1 \cdot \left(9 + \left(4 \cdot \left(2 \cdot x2 - 3\right) + x1 \cdot \left(6 \cdot x1 - 3\right)\right)\right)\right)} \]
                            5. Step-by-step derivation
                              1. lower-*.f64N/A

                                \[\leadsto x1 \cdot \left(-1 \cdot \left(1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + \color{blue}{x1 \cdot \left(9 + \left(4 \cdot \left(2 \cdot x2 - 3\right) + x1 \cdot \left(6 \cdot x1 - 3\right)\right)\right)}\right) \]
                              2. lower-fma.f64N/A

                                \[\leadsto x1 \cdot \mathsf{fma}\left(-1, 1 + \color{blue}{-2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}, x1 \cdot \left(9 + \left(4 \cdot \left(2 \cdot x2 - 3\right) + x1 \cdot \left(6 \cdot x1 - 3\right)\right)\right)\right) \]
                            6. Applied rewrites94.6%

                              \[\leadsto x1 \cdot \color{blue}{\mathsf{fma}\left(-1, 1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right), x1 \cdot \left(9 + \mathsf{fma}\left(4, 2 \cdot x2 - 3, x1 \cdot \left(6 \cdot x1 - 3\right)\right)\right)\right)} \]

                            if -1.8500000000000001 < x1 < 2.8999999999999998e-16

                            1. Initial program 99.3%

                              \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                            2. Taylor expanded in x1 around 0

                              \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
                            3. Step-by-step derivation
                              1. lower-fma.f64N/A

                                \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
                            4. Applied rewrites87.2%

                              \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
                            5. Taylor expanded in x2 around 0

                              \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right) + x2 \cdot \left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right) \]
                            6. Step-by-step derivation
                              1. lower-fma.f64N/A

                                \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                              2. lower--.f64N/A

                                \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                              3. lower-*.f64N/A

                                \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                              4. lower-*.f64N/A

                                \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                              5. lower-fma.f64N/A

                                \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                              6. lower-*.f64N/A

                                \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                              7. lower-*.f64N/A

                                \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                              8. lower--.f64N/A

                                \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                              9. lower-*.f6499.5

                                \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                            7. Applied rewrites99.5%

                              \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]

                            if 2.8999999999999998e-16 < x1 < 5.39999999999999968e45

                            1. Initial program 98.8%

                              \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                            2. Taylor expanded in x2 around 0

                              \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \color{blue}{3 \cdot \frac{{x1}^{2} \cdot \left(3 \cdot {x1}^{2} - x1\right)}{1 + {x1}^{2}}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                            3. Step-by-step derivation
                              1. lower-*.f64N/A

                                \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \color{blue}{\frac{{x1}^{2} \cdot \left(3 \cdot {x1}^{2} - x1\right)}{1 + {x1}^{2}}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                              2. lower-/.f64N/A

                                \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{{x1}^{2} \cdot \left(3 \cdot {x1}^{2} - x1\right)}{\color{blue}{1 + {x1}^{2}}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                              3. lower-*.f64N/A

                                \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{{x1}^{2} \cdot \left(3 \cdot {x1}^{2} - x1\right)}{\color{blue}{1} + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                              4. pow2N/A

                                \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot {x1}^{2} - x1\right)}{1 + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                              5. lift-*.f64N/A

                                \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot {x1}^{2} - x1\right)}{1 + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                              6. lower--.f64N/A

                                \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot {x1}^{2} - x1\right)}{1 + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                              7. lower-*.f64N/A

                                \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot {x1}^{2} - x1\right)}{1 + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                              8. pow2N/A

                                \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                              9. lift-*.f64N/A

                                \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + {x1}^{2}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                              10. lower-+.f64N/A

                                \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + \color{blue}{{x1}^{2}}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                              11. pow2N/A

                                \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + x1 \cdot \color{blue}{x1}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                              12. lift-*.f6498.5

                                \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + x1 \cdot \color{blue}{x1}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                            4. Applied rewrites98.5%

                              \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \color{blue}{3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + x1 \cdot x1}}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                            5. Taylor expanded in x1 around inf

                              \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \color{blue}{6}\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + x1 \cdot x1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                            6. Step-by-step derivation
                              1. Applied rewrites83.3%

                                \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \color{blue}{6}\right) \cdot \left(x1 \cdot x1 + 1\right) + 3 \cdot \frac{\left(x1 \cdot x1\right) \cdot \left(3 \cdot \left(x1 \cdot x1\right) - x1\right)}{1 + x1 \cdot x1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                              2. Taylor expanded in x1 around 0

                                \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot \left(x1 \cdot x1 + 1\right) + \color{blue}{6 \cdot \left({x1}^{2} \cdot x2\right)}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                              3. Step-by-step derivation
                                1. lower-*.f64N/A

                                  \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot \left(x1 \cdot x1 + 1\right) + 6 \cdot \color{blue}{\left({x1}^{2} \cdot x2\right)}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                2. lower-*.f64N/A

                                  \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot \left(x1 \cdot x1 + 1\right) + 6 \cdot \left({x1}^{2} \cdot \color{blue}{x2}\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                3. pow2N/A

                                  \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot \left(x1 \cdot x1 + 1\right) + 6 \cdot \left(\left(x1 \cdot x1\right) \cdot x2\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                4. lift-*.f6478.9

                                  \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot \left(x1 \cdot x1 + 1\right) + 6 \cdot \left(\left(x1 \cdot x1\right) \cdot x2\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                              4. Applied rewrites78.9%

                                \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot \left(x1 \cdot x1 + 1\right) + \color{blue}{6 \cdot \left(\left(x1 \cdot x1\right) \cdot x2\right)}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                              5. Taylor expanded in x1 around inf

                                \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot \left(x1 \cdot x1 + 1\right) + 6 \cdot \left(\left(x1 \cdot x1\right) \cdot x2\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + \color{blue}{9}\right) \]
                              6. Step-by-step derivation
                                1. Applied rewrites73.1%

                                  \[\leadsto x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot 6\right) \cdot \left(x1 \cdot x1 + 1\right) + 6 \cdot \left(\left(x1 \cdot x1\right) \cdot x2\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + \color{blue}{9}\right) \]

                                if 5.39999999999999968e45 < x1

                                1. Initial program 41.6%

                                  \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                2. Taylor expanded in x1 around -inf

                                  \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot \left(2 \cdot x2 - 3\right)}{x1}}{x1}\right)} \]
                                3. Step-by-step derivation
                                  1. lower-*.f64N/A

                                    \[\leadsto {x1}^{4} \cdot \color{blue}{\left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot \left(2 \cdot x2 - 3\right)}{x1}}{x1}\right)} \]
                                  2. lower-pow.f64N/A

                                    \[\leadsto {x1}^{4} \cdot \left(\color{blue}{6} + -1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot \left(2 \cdot x2 - 3\right)}{x1}}{x1}\right) \]
                                  3. lower-+.f64N/A

                                    \[\leadsto {x1}^{4} \cdot \left(6 + \color{blue}{-1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot \left(2 \cdot x2 - 3\right)}{x1}}{x1}}\right) \]
                                4. Applied rewrites98.0%

                                  \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot \left(2 \cdot x2 - 3\right)}{x1}}{x1}\right)} \]
                              7. Recombined 4 regimes into one program.
                              8. Add Preprocessing

                              Alternative 14: 96.2% accurate, 1.7× speedup?

                              \[\begin{array}{l} \\ \begin{array}{l} t_0 := 2 \cdot x2 - 3\\ \mathbf{if}\;x1 \leq -1.85:\\ \;\;\;\;x1 \cdot \mathsf{fma}\left(-1, 1 + -2 \cdot \left(1 + 3 \cdot t\_0\right), x1 \cdot \left(9 + \mathsf{fma}\left(4, t\_0, x1 \cdot \left(6 \cdot x1 - 3\right)\right)\right)\right)\\ \mathbf{elif}\;x1 \leq 950000:\\ \;\;\;\;\mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right)\\ \mathbf{else}:\\ \;\;\;\;{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot t\_0}{x1}}{x1}\right)\\ \end{array} \end{array} \]
                              (FPCore (x1 x2)
                               :precision binary64
                               (let* ((t_0 (- (* 2.0 x2) 3.0)))
                                 (if (<= x1 -1.85)
                                   (*
                                    x1
                                    (fma
                                     -1.0
                                     (+ 1.0 (* -2.0 (+ 1.0 (* 3.0 t_0))))
                                     (* x1 (+ 9.0 (fma 4.0 t_0 (* x1 (- (* 6.0 x1) 3.0)))))))
                                   (if (<= x1 950000.0)
                                     (fma
                                      -6.0
                                      x2
                                      (fma
                                       x1
                                       (- (* 9.0 x1) 1.0)
                                       (* x2 (fma 8.0 (* x1 x2) (* x1 (- (* 12.0 x1) 12.0))))))
                                     (*
                                      (pow x1 4.0)
                                      (+
                                       6.0
                                       (* -1.0 (/ (+ 3.0 (* -1.0 (/ (+ 9.0 (* 4.0 t_0)) x1))) x1))))))))
                              double code(double x1, double x2) {
                              	double t_0 = (2.0 * x2) - 3.0;
                              	double tmp;
                              	if (x1 <= -1.85) {
                              		tmp = x1 * fma(-1.0, (1.0 + (-2.0 * (1.0 + (3.0 * t_0)))), (x1 * (9.0 + fma(4.0, t_0, (x1 * ((6.0 * x1) - 3.0))))));
                              	} else if (x1 <= 950000.0) {
                              		tmp = fma(-6.0, x2, fma(x1, ((9.0 * x1) - 1.0), (x2 * fma(8.0, (x1 * x2), (x1 * ((12.0 * x1) - 12.0))))));
                              	} else {
                              		tmp = pow(x1, 4.0) * (6.0 + (-1.0 * ((3.0 + (-1.0 * ((9.0 + (4.0 * t_0)) / x1))) / x1)));
                              	}
                              	return tmp;
                              }
                              
                              function code(x1, x2)
                              	t_0 = Float64(Float64(2.0 * x2) - 3.0)
                              	tmp = 0.0
                              	if (x1 <= -1.85)
                              		tmp = Float64(x1 * fma(-1.0, Float64(1.0 + Float64(-2.0 * Float64(1.0 + Float64(3.0 * t_0)))), Float64(x1 * Float64(9.0 + fma(4.0, t_0, Float64(x1 * Float64(Float64(6.0 * x1) - 3.0)))))));
                              	elseif (x1 <= 950000.0)
                              		tmp = fma(-6.0, x2, fma(x1, Float64(Float64(9.0 * x1) - 1.0), Float64(x2 * fma(8.0, Float64(x1 * x2), Float64(x1 * Float64(Float64(12.0 * x1) - 12.0))))));
                              	else
                              		tmp = Float64((x1 ^ 4.0) * Float64(6.0 + Float64(-1.0 * Float64(Float64(3.0 + Float64(-1.0 * Float64(Float64(9.0 + Float64(4.0 * t_0)) / x1))) / x1))));
                              	end
                              	return tmp
                              end
                              
                              code[x1_, x2_] := Block[{t$95$0 = N[(N[(2.0 * x2), $MachinePrecision] - 3.0), $MachinePrecision]}, If[LessEqual[x1, -1.85], N[(x1 * N[(-1.0 * N[(1.0 + N[(-2.0 * N[(1.0 + N[(3.0 * t$95$0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(x1 * N[(9.0 + N[(4.0 * t$95$0 + N[(x1 * N[(N[(6.0 * x1), $MachinePrecision] - 3.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[x1, 950000.0], N[(-6.0 * x2 + N[(x1 * N[(N[(9.0 * x1), $MachinePrecision] - 1.0), $MachinePrecision] + N[(x2 * N[(8.0 * N[(x1 * x2), $MachinePrecision] + N[(x1 * N[(N[(12.0 * x1), $MachinePrecision] - 12.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[Power[x1, 4.0], $MachinePrecision] * N[(6.0 + N[(-1.0 * N[(N[(3.0 + N[(-1.0 * N[(N[(9.0 + N[(4.0 * t$95$0), $MachinePrecision]), $MachinePrecision] / x1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / x1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]]
                              
                              \begin{array}{l}
                              
                              \\
                              \begin{array}{l}
                              t_0 := 2 \cdot x2 - 3\\
                              \mathbf{if}\;x1 \leq -1.85:\\
                              \;\;\;\;x1 \cdot \mathsf{fma}\left(-1, 1 + -2 \cdot \left(1 + 3 \cdot t\_0\right), x1 \cdot \left(9 + \mathsf{fma}\left(4, t\_0, x1 \cdot \left(6 \cdot x1 - 3\right)\right)\right)\right)\\
                              
                              \mathbf{elif}\;x1 \leq 950000:\\
                              \;\;\;\;\mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right)\\
                              
                              \mathbf{else}:\\
                              \;\;\;\;{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot t\_0}{x1}}{x1}\right)\\
                              
                              
                              \end{array}
                              \end{array}
                              
                              Derivation
                              1. Split input into 3 regimes
                              2. if x1 < -1.8500000000000001

                                1. Initial program 30.7%

                                  \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                2. Taylor expanded in x1 around -inf

                                  \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + \left(-1 \cdot \frac{1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1} + 4 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}}{x1}\right)} \]
                                3. Applied rewrites94.7%

                                  \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + \mathsf{fma}\left(-1, \frac{1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}, 4 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}}{x1}\right)} \]
                                4. Taylor expanded in x1 around 0

                                  \[\leadsto x1 \cdot \color{blue}{\left(-1 \cdot \left(1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + x1 \cdot \left(9 + \left(4 \cdot \left(2 \cdot x2 - 3\right) + x1 \cdot \left(6 \cdot x1 - 3\right)\right)\right)\right)} \]
                                5. Step-by-step derivation
                                  1. lower-*.f64N/A

                                    \[\leadsto x1 \cdot \left(-1 \cdot \left(1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + \color{blue}{x1 \cdot \left(9 + \left(4 \cdot \left(2 \cdot x2 - 3\right) + x1 \cdot \left(6 \cdot x1 - 3\right)\right)\right)}\right) \]
                                  2. lower-fma.f64N/A

                                    \[\leadsto x1 \cdot \mathsf{fma}\left(-1, 1 + \color{blue}{-2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}, x1 \cdot \left(9 + \left(4 \cdot \left(2 \cdot x2 - 3\right) + x1 \cdot \left(6 \cdot x1 - 3\right)\right)\right)\right) \]
                                6. Applied rewrites94.6%

                                  \[\leadsto x1 \cdot \color{blue}{\mathsf{fma}\left(-1, 1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right), x1 \cdot \left(9 + \mathsf{fma}\left(4, 2 \cdot x2 - 3, x1 \cdot \left(6 \cdot x1 - 3\right)\right)\right)\right)} \]

                                if -1.8500000000000001 < x1 < 9.5e5

                                1. Initial program 99.3%

                                  \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                2. Taylor expanded in x1 around 0

                                  \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
                                3. Step-by-step derivation
                                  1. lower-fma.f64N/A

                                    \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
                                4. Applied rewrites86.3%

                                  \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
                                5. Taylor expanded in x2 around 0

                                  \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right) + x2 \cdot \left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right) \]
                                6. Step-by-step derivation
                                  1. lower-fma.f64N/A

                                    \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                  2. lower--.f64N/A

                                    \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                  3. lower-*.f64N/A

                                    \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                  4. lower-*.f64N/A

                                    \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                  5. lower-fma.f64N/A

                                    \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                  6. lower-*.f64N/A

                                    \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                  7. lower-*.f64N/A

                                    \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                  8. lower--.f64N/A

                                    \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                  9. lower-*.f6498.3

                                    \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                7. Applied rewrites98.3%

                                  \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]

                                if 9.5e5 < x1

                                1. Initial program 49.7%

                                  \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                2. Taylor expanded in x1 around -inf

                                  \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot \left(2 \cdot x2 - 3\right)}{x1}}{x1}\right)} \]
                                3. Step-by-step derivation
                                  1. lower-*.f64N/A

                                    \[\leadsto {x1}^{4} \cdot \color{blue}{\left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot \left(2 \cdot x2 - 3\right)}{x1}}{x1}\right)} \]
                                  2. lower-pow.f64N/A

                                    \[\leadsto {x1}^{4} \cdot \left(\color{blue}{6} + -1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot \left(2 \cdot x2 - 3\right)}{x1}}{x1}\right) \]
                                  3. lower-+.f64N/A

                                    \[\leadsto {x1}^{4} \cdot \left(6 + \color{blue}{-1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot \left(2 \cdot x2 - 3\right)}{x1}}{x1}}\right) \]
                                4. Applied rewrites93.4%

                                  \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + 4 \cdot \left(2 \cdot x2 - 3\right)}{x1}}{x1}\right)} \]
                              3. Recombined 3 regimes into one program.
                              4. Add Preprocessing

                              Alternative 15: 96.2% accurate, 3.6× speedup?

                              \[\begin{array}{l} \\ \begin{array}{l} t_0 := 2 \cdot x2 - 3\\ t_1 := x1 \cdot \mathsf{fma}\left(-1, 1 + -2 \cdot \left(1 + 3 \cdot t\_0\right), x1 \cdot \left(9 + \mathsf{fma}\left(4, t\_0, x1 \cdot \left(6 \cdot x1 - 3\right)\right)\right)\right)\\ \mathbf{if}\;x1 \leq -1.85:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;x1 \leq 950000:\\ \;\;\;\;\mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right)\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \end{array} \]
                              (FPCore (x1 x2)
                               :precision binary64
                               (let* ((t_0 (- (* 2.0 x2) 3.0))
                                      (t_1
                                       (*
                                        x1
                                        (fma
                                         -1.0
                                         (+ 1.0 (* -2.0 (+ 1.0 (* 3.0 t_0))))
                                         (* x1 (+ 9.0 (fma 4.0 t_0 (* x1 (- (* 6.0 x1) 3.0)))))))))
                                 (if (<= x1 -1.85)
                                   t_1
                                   (if (<= x1 950000.0)
                                     (fma
                                      -6.0
                                      x2
                                      (fma
                                       x1
                                       (- (* 9.0 x1) 1.0)
                                       (* x2 (fma 8.0 (* x1 x2) (* x1 (- (* 12.0 x1) 12.0))))))
                                     t_1))))
                              double code(double x1, double x2) {
                              	double t_0 = (2.0 * x2) - 3.0;
                              	double t_1 = x1 * fma(-1.0, (1.0 + (-2.0 * (1.0 + (3.0 * t_0)))), (x1 * (9.0 + fma(4.0, t_0, (x1 * ((6.0 * x1) - 3.0))))));
                              	double tmp;
                              	if (x1 <= -1.85) {
                              		tmp = t_1;
                              	} else if (x1 <= 950000.0) {
                              		tmp = fma(-6.0, x2, fma(x1, ((9.0 * x1) - 1.0), (x2 * fma(8.0, (x1 * x2), (x1 * ((12.0 * x1) - 12.0))))));
                              	} else {
                              		tmp = t_1;
                              	}
                              	return tmp;
                              }
                              
                              function code(x1, x2)
                              	t_0 = Float64(Float64(2.0 * x2) - 3.0)
                              	t_1 = Float64(x1 * fma(-1.0, Float64(1.0 + Float64(-2.0 * Float64(1.0 + Float64(3.0 * t_0)))), Float64(x1 * Float64(9.0 + fma(4.0, t_0, Float64(x1 * Float64(Float64(6.0 * x1) - 3.0)))))))
                              	tmp = 0.0
                              	if (x1 <= -1.85)
                              		tmp = t_1;
                              	elseif (x1 <= 950000.0)
                              		tmp = fma(-6.0, x2, fma(x1, Float64(Float64(9.0 * x1) - 1.0), Float64(x2 * fma(8.0, Float64(x1 * x2), Float64(x1 * Float64(Float64(12.0 * x1) - 12.0))))));
                              	else
                              		tmp = t_1;
                              	end
                              	return tmp
                              end
                              
                              code[x1_, x2_] := Block[{t$95$0 = N[(N[(2.0 * x2), $MachinePrecision] - 3.0), $MachinePrecision]}, Block[{t$95$1 = N[(x1 * N[(-1.0 * N[(1.0 + N[(-2.0 * N[(1.0 + N[(3.0 * t$95$0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(x1 * N[(9.0 + N[(4.0 * t$95$0 + N[(x1 * N[(N[(6.0 * x1), $MachinePrecision] - 3.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[x1, -1.85], t$95$1, If[LessEqual[x1, 950000.0], N[(-6.0 * x2 + N[(x1 * N[(N[(9.0 * x1), $MachinePrecision] - 1.0), $MachinePrecision] + N[(x2 * N[(8.0 * N[(x1 * x2), $MachinePrecision] + N[(x1 * N[(N[(12.0 * x1), $MachinePrecision] - 12.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], t$95$1]]]]
                              
                              \begin{array}{l}
                              
                              \\
                              \begin{array}{l}
                              t_0 := 2 \cdot x2 - 3\\
                              t_1 := x1 \cdot \mathsf{fma}\left(-1, 1 + -2 \cdot \left(1 + 3 \cdot t\_0\right), x1 \cdot \left(9 + \mathsf{fma}\left(4, t\_0, x1 \cdot \left(6 \cdot x1 - 3\right)\right)\right)\right)\\
                              \mathbf{if}\;x1 \leq -1.85:\\
                              \;\;\;\;t\_1\\
                              
                              \mathbf{elif}\;x1 \leq 950000:\\
                              \;\;\;\;\mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right)\\
                              
                              \mathbf{else}:\\
                              \;\;\;\;t\_1\\
                              
                              
                              \end{array}
                              \end{array}
                              
                              Derivation
                              1. Split input into 2 regimes
                              2. if x1 < -1.8500000000000001 or 9.5e5 < x1

                                1. Initial program 40.2%

                                  \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                2. Taylor expanded in x1 around -inf

                                  \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + \left(-1 \cdot \frac{1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1} + 4 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}}{x1}\right)} \]
                                3. Applied rewrites94.0%

                                  \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + \mathsf{fma}\left(-1, \frac{1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}, 4 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}}{x1}\right)} \]
                                4. Taylor expanded in x1 around 0

                                  \[\leadsto x1 \cdot \color{blue}{\left(-1 \cdot \left(1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + x1 \cdot \left(9 + \left(4 \cdot \left(2 \cdot x2 - 3\right) + x1 \cdot \left(6 \cdot x1 - 3\right)\right)\right)\right)} \]
                                5. Step-by-step derivation
                                  1. lower-*.f64N/A

                                    \[\leadsto x1 \cdot \left(-1 \cdot \left(1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + \color{blue}{x1 \cdot \left(9 + \left(4 \cdot \left(2 \cdot x2 - 3\right) + x1 \cdot \left(6 \cdot x1 - 3\right)\right)\right)}\right) \]
                                  2. lower-fma.f64N/A

                                    \[\leadsto x1 \cdot \mathsf{fma}\left(-1, 1 + \color{blue}{-2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}, x1 \cdot \left(9 + \left(4 \cdot \left(2 \cdot x2 - 3\right) + x1 \cdot \left(6 \cdot x1 - 3\right)\right)\right)\right) \]
                                6. Applied rewrites94.0%

                                  \[\leadsto x1 \cdot \color{blue}{\mathsf{fma}\left(-1, 1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right), x1 \cdot \left(9 + \mathsf{fma}\left(4, 2 \cdot x2 - 3, x1 \cdot \left(6 \cdot x1 - 3\right)\right)\right)\right)} \]

                                if -1.8500000000000001 < x1 < 9.5e5

                                1. Initial program 99.3%

                                  \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                2. Taylor expanded in x1 around 0

                                  \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
                                3. Step-by-step derivation
                                  1. lower-fma.f64N/A

                                    \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
                                4. Applied rewrites86.3%

                                  \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
                                5. Taylor expanded in x2 around 0

                                  \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right) + x2 \cdot \left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right) \]
                                6. Step-by-step derivation
                                  1. lower-fma.f64N/A

                                    \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                  2. lower--.f64N/A

                                    \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                  3. lower-*.f64N/A

                                    \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                  4. lower-*.f64N/A

                                    \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                  5. lower-fma.f64N/A

                                    \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                  6. lower-*.f64N/A

                                    \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                  7. lower-*.f64N/A

                                    \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                  8. lower--.f64N/A

                                    \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                  9. lower-*.f6498.3

                                    \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                7. Applied rewrites98.3%

                                  \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                              3. Recombined 2 regimes into one program.
                              4. Add Preprocessing

                              Alternative 16: 88.3% accurate, 4.8× speedup?

                              \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x1 \leq -2.4 \cdot 10^{+50}:\\ \;\;\;\;x2 \cdot \mathsf{fma}\left(x1, 12 + 8 \cdot x1, \frac{x1 \cdot \left(x1 \cdot \left(-3 \cdot x1 - 3\right) - 17\right)}{x2}\right)\\ \mathbf{elif}\;x1 \leq 780000:\\ \;\;\;\;\mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right)\\ \mathbf{else}:\\ \;\;\;\;x1 + \left(\left(\left(4 \cdot \left(x1 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 9\right)\\ \end{array} \end{array} \]
                              (FPCore (x1 x2)
                               :precision binary64
                               (if (<= x1 -2.4e+50)
                                 (*
                                  x2
                                  (fma
                                   x1
                                   (+ 12.0 (* 8.0 x1))
                                   (/ (* x1 (- (* x1 (- (* -3.0 x1) 3.0)) 17.0)) x2)))
                                 (if (<= x1 780000.0)
                                   (fma
                                    -6.0
                                    x2
                                    (fma
                                     x1
                                     (- (* 9.0 x1) 1.0)
                                     (* x2 (fma 8.0 (* x1 x2) (* x1 (- (* 12.0 x1) 12.0))))))
                                   (+
                                    x1
                                    (+
                                     (+ (+ (* 4.0 (* x1 (* x2 (- (* 2.0 x2) 3.0)))) (* (* x1 x1) x1)) x1)
                                     9.0)))))
                              double code(double x1, double x2) {
                              	double tmp;
                              	if (x1 <= -2.4e+50) {
                              		tmp = x2 * fma(x1, (12.0 + (8.0 * x1)), ((x1 * ((x1 * ((-3.0 * x1) - 3.0)) - 17.0)) / x2));
                              	} else if (x1 <= 780000.0) {
                              		tmp = fma(-6.0, x2, fma(x1, ((9.0 * x1) - 1.0), (x2 * fma(8.0, (x1 * x2), (x1 * ((12.0 * x1) - 12.0))))));
                              	} else {
                              		tmp = x1 + ((((4.0 * (x1 * (x2 * ((2.0 * x2) - 3.0)))) + ((x1 * x1) * x1)) + x1) + 9.0);
                              	}
                              	return tmp;
                              }
                              
                              function code(x1, x2)
                              	tmp = 0.0
                              	if (x1 <= -2.4e+50)
                              		tmp = Float64(x2 * fma(x1, Float64(12.0 + Float64(8.0 * x1)), Float64(Float64(x1 * Float64(Float64(x1 * Float64(Float64(-3.0 * x1) - 3.0)) - 17.0)) / x2)));
                              	elseif (x1 <= 780000.0)
                              		tmp = fma(-6.0, x2, fma(x1, Float64(Float64(9.0 * x1) - 1.0), Float64(x2 * fma(8.0, Float64(x1 * x2), Float64(x1 * Float64(Float64(12.0 * x1) - 12.0))))));
                              	else
                              		tmp = Float64(x1 + Float64(Float64(Float64(Float64(4.0 * Float64(x1 * Float64(x2 * Float64(Float64(2.0 * x2) - 3.0)))) + Float64(Float64(x1 * x1) * x1)) + x1) + 9.0));
                              	end
                              	return tmp
                              end
                              
                              code[x1_, x2_] := If[LessEqual[x1, -2.4e+50], N[(x2 * N[(x1 * N[(12.0 + N[(8.0 * x1), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * N[(N[(x1 * N[(N[(-3.0 * x1), $MachinePrecision] - 3.0), $MachinePrecision]), $MachinePrecision] - 17.0), $MachinePrecision]), $MachinePrecision] / x2), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[x1, 780000.0], N[(-6.0 * x2 + N[(x1 * N[(N[(9.0 * x1), $MachinePrecision] - 1.0), $MachinePrecision] + N[(x2 * N[(8.0 * N[(x1 * x2), $MachinePrecision] + N[(x1 * N[(N[(12.0 * x1), $MachinePrecision] - 12.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(x1 + N[(N[(N[(N[(4.0 * N[(x1 * N[(x2 * N[(N[(2.0 * x2), $MachinePrecision] - 3.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * x1), $MachinePrecision]), $MachinePrecision] + x1), $MachinePrecision] + 9.0), $MachinePrecision]), $MachinePrecision]]]
                              
                              \begin{array}{l}
                              
                              \\
                              \begin{array}{l}
                              \mathbf{if}\;x1 \leq -2.4 \cdot 10^{+50}:\\
                              \;\;\;\;x2 \cdot \mathsf{fma}\left(x1, 12 + 8 \cdot x1, \frac{x1 \cdot \left(x1 \cdot \left(-3 \cdot x1 - 3\right) - 17\right)}{x2}\right)\\
                              
                              \mathbf{elif}\;x1 \leq 780000:\\
                              \;\;\;\;\mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right)\\
                              
                              \mathbf{else}:\\
                              \;\;\;\;x1 + \left(\left(\left(4 \cdot \left(x1 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 9\right)\\
                              
                              
                              \end{array}
                              \end{array}
                              
                              Derivation
                              1. Split input into 3 regimes
                              2. if x1 < -2.4000000000000002e50

                                1. Initial program 20.0%

                                  \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                2. Taylor expanded in x1 around -inf

                                  \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + \left(-1 \cdot \frac{1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1} + 4 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}}{x1}\right)} \]
                                3. Applied rewrites98.5%

                                  \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + \mathsf{fma}\left(-1, \frac{1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}, 4 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}}{x1}\right)} \]
                                4. Taylor expanded in x1 around 0

                                  \[\leadsto x1 \cdot \color{blue}{\left(-1 \cdot \left(1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + x1 \cdot \left(9 + \left(-3 \cdot x1 + 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)\right)} \]
                                5. Step-by-step derivation
                                  1. lower-*.f64N/A

                                    \[\leadsto x1 \cdot \left(-1 \cdot \left(1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + \color{blue}{x1 \cdot \left(9 + \left(-3 \cdot x1 + 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)}\right) \]
                                  2. lower-fma.f64N/A

                                    \[\leadsto x1 \cdot \mathsf{fma}\left(-1, 1 + \color{blue}{-2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}, x1 \cdot \left(9 + \left(-3 \cdot x1 + 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)\right) \]
                                6. Applied rewrites79.3%

                                  \[\leadsto x1 \cdot \color{blue}{\mathsf{fma}\left(-1, 1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right), x1 \cdot \left(9 + \mathsf{fma}\left(-3, x1, 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)\right)} \]
                                7. Taylor expanded in x2 around inf

                                  \[\leadsto x2 \cdot \left(x1 \cdot \left(12 + 8 \cdot x1\right) + \color{blue}{\frac{x1 \cdot \left(x1 \cdot \left(-3 \cdot x1 - 3\right) - 17\right)}{x2}}\right) \]
                                8. Step-by-step derivation
                                  1. lower-*.f64N/A

                                    \[\leadsto x2 \cdot \left(x1 \cdot \left(12 + 8 \cdot x1\right) + \frac{x1 \cdot \left(x1 \cdot \left(-3 \cdot x1 - 3\right) - 17\right)}{\color{blue}{x2}}\right) \]
                                  2. lower-fma.f64N/A

                                    \[\leadsto x2 \cdot \mathsf{fma}\left(x1, 12 + 8 \cdot \color{blue}{x1}, \frac{x1 \cdot \left(x1 \cdot \left(-3 \cdot x1 - 3\right) - 17\right)}{x2}\right) \]
                                  3. lower-+.f64N/A

                                    \[\leadsto x2 \cdot \mathsf{fma}\left(x1, 12 + 8 \cdot x1, \frac{x1 \cdot \left(x1 \cdot \left(-3 \cdot x1 - 3\right) - 17\right)}{x2}\right) \]
                                  4. lower-*.f64N/A

                                    \[\leadsto x2 \cdot \mathsf{fma}\left(x1, 12 + 8 \cdot x1, \frac{x1 \cdot \left(x1 \cdot \left(-3 \cdot x1 - 3\right) - 17\right)}{x2}\right) \]
                                  5. lower-/.f64N/A

                                    \[\leadsto x2 \cdot \mathsf{fma}\left(x1, 12 + 8 \cdot x1, \frac{x1 \cdot \left(x1 \cdot \left(-3 \cdot x1 - 3\right) - 17\right)}{x2}\right) \]
                                  6. lower-*.f64N/A

                                    \[\leadsto x2 \cdot \mathsf{fma}\left(x1, 12 + 8 \cdot x1, \frac{x1 \cdot \left(x1 \cdot \left(-3 \cdot x1 - 3\right) - 17\right)}{x2}\right) \]
                                  7. lower--.f64N/A

                                    \[\leadsto x2 \cdot \mathsf{fma}\left(x1, 12 + 8 \cdot x1, \frac{x1 \cdot \left(x1 \cdot \left(-3 \cdot x1 - 3\right) - 17\right)}{x2}\right) \]
                                  8. lower-*.f64N/A

                                    \[\leadsto x2 \cdot \mathsf{fma}\left(x1, 12 + 8 \cdot x1, \frac{x1 \cdot \left(x1 \cdot \left(-3 \cdot x1 - 3\right) - 17\right)}{x2}\right) \]
                                  9. lower--.f64N/A

                                    \[\leadsto x2 \cdot \mathsf{fma}\left(x1, 12 + 8 \cdot x1, \frac{x1 \cdot \left(x1 \cdot \left(-3 \cdot x1 - 3\right) - 17\right)}{x2}\right) \]
                                  10. lower-*.f6488.0

                                    \[\leadsto x2 \cdot \mathsf{fma}\left(x1, 12 + 8 \cdot x1, \frac{x1 \cdot \left(x1 \cdot \left(-3 \cdot x1 - 3\right) - 17\right)}{x2}\right) \]
                                9. Applied rewrites88.0%

                                  \[\leadsto x2 \cdot \mathsf{fma}\left(x1, \color{blue}{12 + 8 \cdot x1}, \frac{x1 \cdot \left(x1 \cdot \left(-3 \cdot x1 - 3\right) - 17\right)}{x2}\right) \]

                                if -2.4000000000000002e50 < x1 < 7.8e5

                                1. Initial program 99.3%

                                  \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                2. Taylor expanded in x1 around 0

                                  \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
                                3. Step-by-step derivation
                                  1. lower-fma.f64N/A

                                    \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
                                4. Applied rewrites82.3%

                                  \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
                                5. Taylor expanded in x2 around 0

                                  \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right) + x2 \cdot \left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right) \]
                                6. Step-by-step derivation
                                  1. lower-fma.f64N/A

                                    \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                  2. lower--.f64N/A

                                    \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                  3. lower-*.f64N/A

                                    \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                  4. lower-*.f64N/A

                                    \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                  5. lower-fma.f64N/A

                                    \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                  6. lower-*.f64N/A

                                    \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                  7. lower-*.f64N/A

                                    \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                  8. lower--.f64N/A

                                    \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                  9. lower-*.f6493.7

                                    \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                7. Applied rewrites93.7%

                                  \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]

                                if 7.8e5 < x1

                                1. Initial program 49.7%

                                  \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                2. Taylor expanded in x1 around 0

                                  \[\leadsto x1 + \left(\left(\left(\color{blue}{4 \cdot \left(x1 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right)\right)} + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                3. Step-by-step derivation
                                  1. lower-*.f64N/A

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

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

                                    \[\leadsto x1 + \left(\left(\left(4 \cdot \left(x1 \cdot \left(x2 \cdot \color{blue}{\left(2 \cdot x2 - 3\right)}\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                  4. lower--.f64N/A

                                    \[\leadsto x1 + \left(\left(\left(4 \cdot \left(x1 \cdot \left(x2 \cdot \left(2 \cdot x2 - \color{blue}{3}\right)\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                  5. lift-*.f6427.4

                                    \[\leadsto x1 + \left(\left(\left(4 \cdot \left(x1 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                4. Applied rewrites27.4%

                                  \[\leadsto x1 + \left(\left(\left(\color{blue}{4 \cdot \left(x1 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right)\right)} + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                5. Taylor expanded in x1 around inf

                                  \[\leadsto x1 + \left(\left(\left(4 \cdot \left(x1 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + \color{blue}{9}\right) \]
                                6. Step-by-step derivation
                                  1. Applied rewrites76.5%

                                    \[\leadsto x1 + \left(\left(\left(4 \cdot \left(x1 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + \color{blue}{9}\right) \]
                                7. Recombined 3 regimes into one program.
                                8. Add Preprocessing

                                Alternative 17: 87.5% accurate, 4.8× speedup?

                                \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x1 \leq -7 \cdot 10^{+99}:\\ \;\;\;\;x1 \cdot \left(-3 \cdot \left(x1 \cdot x1\right)\right)\\ \mathbf{elif}\;x1 \leq 780000:\\ \;\;\;\;\mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right)\\ \mathbf{else}:\\ \;\;\;\;x1 + \left(\left(\left(4 \cdot \left(x1 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 9\right)\\ \end{array} \end{array} \]
                                (FPCore (x1 x2)
                                 :precision binary64
                                 (if (<= x1 -7e+99)
                                   (* x1 (* -3.0 (* x1 x1)))
                                   (if (<= x1 780000.0)
                                     (fma
                                      -6.0
                                      x2
                                      (fma
                                       x1
                                       (- (* 9.0 x1) 1.0)
                                       (* x2 (fma 8.0 (* x1 x2) (* x1 (- (* 12.0 x1) 12.0))))))
                                     (+
                                      x1
                                      (+
                                       (+ (+ (* 4.0 (* x1 (* x2 (- (* 2.0 x2) 3.0)))) (* (* x1 x1) x1)) x1)
                                       9.0)))))
                                double code(double x1, double x2) {
                                	double tmp;
                                	if (x1 <= -7e+99) {
                                		tmp = x1 * (-3.0 * (x1 * x1));
                                	} else if (x1 <= 780000.0) {
                                		tmp = fma(-6.0, x2, fma(x1, ((9.0 * x1) - 1.0), (x2 * fma(8.0, (x1 * x2), (x1 * ((12.0 * x1) - 12.0))))));
                                	} else {
                                		tmp = x1 + ((((4.0 * (x1 * (x2 * ((2.0 * x2) - 3.0)))) + ((x1 * x1) * x1)) + x1) + 9.0);
                                	}
                                	return tmp;
                                }
                                
                                function code(x1, x2)
                                	tmp = 0.0
                                	if (x1 <= -7e+99)
                                		tmp = Float64(x1 * Float64(-3.0 * Float64(x1 * x1)));
                                	elseif (x1 <= 780000.0)
                                		tmp = fma(-6.0, x2, fma(x1, Float64(Float64(9.0 * x1) - 1.0), Float64(x2 * fma(8.0, Float64(x1 * x2), Float64(x1 * Float64(Float64(12.0 * x1) - 12.0))))));
                                	else
                                		tmp = Float64(x1 + Float64(Float64(Float64(Float64(4.0 * Float64(x1 * Float64(x2 * Float64(Float64(2.0 * x2) - 3.0)))) + Float64(Float64(x1 * x1) * x1)) + x1) + 9.0));
                                	end
                                	return tmp
                                end
                                
                                code[x1_, x2_] := If[LessEqual[x1, -7e+99], N[(x1 * N[(-3.0 * N[(x1 * x1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[x1, 780000.0], N[(-6.0 * x2 + N[(x1 * N[(N[(9.0 * x1), $MachinePrecision] - 1.0), $MachinePrecision] + N[(x2 * N[(8.0 * N[(x1 * x2), $MachinePrecision] + N[(x1 * N[(N[(12.0 * x1), $MachinePrecision] - 12.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(x1 + N[(N[(N[(N[(4.0 * N[(x1 * N[(x2 * N[(N[(2.0 * x2), $MachinePrecision] - 3.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * x1), $MachinePrecision]), $MachinePrecision] + x1), $MachinePrecision] + 9.0), $MachinePrecision]), $MachinePrecision]]]
                                
                                \begin{array}{l}
                                
                                \\
                                \begin{array}{l}
                                \mathbf{if}\;x1 \leq -7 \cdot 10^{+99}:\\
                                \;\;\;\;x1 \cdot \left(-3 \cdot \left(x1 \cdot x1\right)\right)\\
                                
                                \mathbf{elif}\;x1 \leq 780000:\\
                                \;\;\;\;\mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right)\\
                                
                                \mathbf{else}:\\
                                \;\;\;\;x1 + \left(\left(\left(4 \cdot \left(x1 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 9\right)\\
                                
                                
                                \end{array}
                                \end{array}
                                
                                Derivation
                                1. Split input into 3 regimes
                                2. if x1 < -6.9999999999999995e99

                                  1. Initial program 2.1%

                                    \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                  2. Taylor expanded in x1 around -inf

                                    \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + \left(-1 \cdot \frac{1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1} + 4 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}}{x1}\right)} \]
                                  3. Applied rewrites99.9%

                                    \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + \mathsf{fma}\left(-1, \frac{1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}, 4 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}}{x1}\right)} \]
                                  4. Taylor expanded in x1 around 0

                                    \[\leadsto x1 \cdot \color{blue}{\left(-1 \cdot \left(1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + x1 \cdot \left(9 + \left(-3 \cdot x1 + 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)\right)} \]
                                  5. Step-by-step derivation
                                    1. lower-*.f64N/A

                                      \[\leadsto x1 \cdot \left(-1 \cdot \left(1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + \color{blue}{x1 \cdot \left(9 + \left(-3 \cdot x1 + 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)}\right) \]
                                    2. lower-fma.f64N/A

                                      \[\leadsto x1 \cdot \mathsf{fma}\left(-1, 1 + \color{blue}{-2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}, x1 \cdot \left(9 + \left(-3 \cdot x1 + 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)\right) \]
                                  6. Applied rewrites91.7%

                                    \[\leadsto x1 \cdot \color{blue}{\mathsf{fma}\left(-1, 1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right), x1 \cdot \left(9 + \mathsf{fma}\left(-3, x1, 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)\right)} \]
                                  7. Taylor expanded in x1 around inf

                                    \[\leadsto x1 \cdot \left(-3 \cdot {x1}^{\color{blue}{2}}\right) \]
                                  8. Step-by-step derivation
                                    1. lower-*.f64N/A

                                      \[\leadsto x1 \cdot \left(-3 \cdot {x1}^{2}\right) \]
                                    2. pow2N/A

                                      \[\leadsto x1 \cdot \left(-3 \cdot \left(x1 \cdot x1\right)\right) \]
                                    3. lift-*.f6498.1

                                      \[\leadsto x1 \cdot \left(-3 \cdot \left(x1 \cdot x1\right)\right) \]
                                  9. Applied rewrites98.1%

                                    \[\leadsto x1 \cdot \left(-3 \cdot \left(x1 \cdot \color{blue}{x1}\right)\right) \]

                                  if -6.9999999999999995e99 < x1 < 7.8e5

                                  1. Initial program 99.3%

                                    \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                  2. Taylor expanded in x1 around 0

                                    \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
                                  3. Step-by-step derivation
                                    1. lower-fma.f64N/A

                                      \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
                                  4. Applied rewrites78.0%

                                    \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
                                  5. Taylor expanded in x2 around 0

                                    \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right) + x2 \cdot \left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right) \]
                                  6. Step-by-step derivation
                                    1. lower-fma.f64N/A

                                      \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                    2. lower--.f64N/A

                                      \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                    3. lower-*.f64N/A

                                      \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                    4. lower-*.f64N/A

                                      \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                    5. lower-fma.f64N/A

                                      \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                    6. lower-*.f64N/A

                                      \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                    7. lower-*.f64N/A

                                      \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                    8. lower--.f64N/A

                                      \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                    9. lower-*.f6489.0

                                      \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]
                                  7. Applied rewrites89.0%

                                    \[\leadsto \mathsf{fma}\left(-6, x2, \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right)\right)\right) \]

                                  if 7.8e5 < x1

                                  1. Initial program 49.7%

                                    \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                  2. Taylor expanded in x1 around 0

                                    \[\leadsto x1 + \left(\left(\left(\color{blue}{4 \cdot \left(x1 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right)\right)} + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                  3. Step-by-step derivation
                                    1. lower-*.f64N/A

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

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

                                      \[\leadsto x1 + \left(\left(\left(4 \cdot \left(x1 \cdot \left(x2 \cdot \color{blue}{\left(2 \cdot x2 - 3\right)}\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                    4. lower--.f64N/A

                                      \[\leadsto x1 + \left(\left(\left(4 \cdot \left(x1 \cdot \left(x2 \cdot \left(2 \cdot x2 - \color{blue}{3}\right)\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                    5. lift-*.f6427.4

                                      \[\leadsto x1 + \left(\left(\left(4 \cdot \left(x1 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                  4. Applied rewrites27.4%

                                    \[\leadsto x1 + \left(\left(\left(\color{blue}{4 \cdot \left(x1 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right)\right)} + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                  5. Taylor expanded in x1 around inf

                                    \[\leadsto x1 + \left(\left(\left(4 \cdot \left(x1 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + \color{blue}{9}\right) \]
                                  6. Step-by-step derivation
                                    1. Applied rewrites76.5%

                                      \[\leadsto x1 + \left(\left(\left(4 \cdot \left(x1 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + \color{blue}{9}\right) \]
                                  7. Recombined 3 regimes into one program.
                                  8. Add Preprocessing

                                  Alternative 18: 87.4% accurate, 5.0× speedup?

                                  \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x1 \leq -7 \cdot 10^{+99}:\\ \;\;\;\;x1 \cdot \left(-3 \cdot \left(x1 \cdot x1\right)\right)\\ \mathbf{elif}\;x1 \leq 780000:\\ \;\;\;\;\mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(\mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right) - 6\right)\right)\\ \mathbf{else}:\\ \;\;\;\;x1 + \left(\left(\left(4 \cdot \left(x1 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 9\right)\\ \end{array} \end{array} \]
                                  (FPCore (x1 x2)
                                   :precision binary64
                                   (if (<= x1 -7e+99)
                                     (* x1 (* -3.0 (* x1 x1)))
                                     (if (<= x1 780000.0)
                                       (fma
                                        x1
                                        (- (* 9.0 x1) 1.0)
                                        (* x2 (- (fma 8.0 (* x1 x2) (* x1 (- (* 12.0 x1) 12.0))) 6.0)))
                                       (+
                                        x1
                                        (+
                                         (+ (+ (* 4.0 (* x1 (* x2 (- (* 2.0 x2) 3.0)))) (* (* x1 x1) x1)) x1)
                                         9.0)))))
                                  double code(double x1, double x2) {
                                  	double tmp;
                                  	if (x1 <= -7e+99) {
                                  		tmp = x1 * (-3.0 * (x1 * x1));
                                  	} else if (x1 <= 780000.0) {
                                  		tmp = fma(x1, ((9.0 * x1) - 1.0), (x2 * (fma(8.0, (x1 * x2), (x1 * ((12.0 * x1) - 12.0))) - 6.0)));
                                  	} else {
                                  		tmp = x1 + ((((4.0 * (x1 * (x2 * ((2.0 * x2) - 3.0)))) + ((x1 * x1) * x1)) + x1) + 9.0);
                                  	}
                                  	return tmp;
                                  }
                                  
                                  function code(x1, x2)
                                  	tmp = 0.0
                                  	if (x1 <= -7e+99)
                                  		tmp = Float64(x1 * Float64(-3.0 * Float64(x1 * x1)));
                                  	elseif (x1 <= 780000.0)
                                  		tmp = fma(x1, Float64(Float64(9.0 * x1) - 1.0), Float64(x2 * Float64(fma(8.0, Float64(x1 * x2), Float64(x1 * Float64(Float64(12.0 * x1) - 12.0))) - 6.0)));
                                  	else
                                  		tmp = Float64(x1 + Float64(Float64(Float64(Float64(4.0 * Float64(x1 * Float64(x2 * Float64(Float64(2.0 * x2) - 3.0)))) + Float64(Float64(x1 * x1) * x1)) + x1) + 9.0));
                                  	end
                                  	return tmp
                                  end
                                  
                                  code[x1_, x2_] := If[LessEqual[x1, -7e+99], N[(x1 * N[(-3.0 * N[(x1 * x1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[x1, 780000.0], N[(x1 * N[(N[(9.0 * x1), $MachinePrecision] - 1.0), $MachinePrecision] + N[(x2 * N[(N[(8.0 * N[(x1 * x2), $MachinePrecision] + N[(x1 * N[(N[(12.0 * x1), $MachinePrecision] - 12.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - 6.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(x1 + N[(N[(N[(N[(4.0 * N[(x1 * N[(x2 * N[(N[(2.0 * x2), $MachinePrecision] - 3.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * x1), $MachinePrecision]), $MachinePrecision] + x1), $MachinePrecision] + 9.0), $MachinePrecision]), $MachinePrecision]]]
                                  
                                  \begin{array}{l}
                                  
                                  \\
                                  \begin{array}{l}
                                  \mathbf{if}\;x1 \leq -7 \cdot 10^{+99}:\\
                                  \;\;\;\;x1 \cdot \left(-3 \cdot \left(x1 \cdot x1\right)\right)\\
                                  
                                  \mathbf{elif}\;x1 \leq 780000:\\
                                  \;\;\;\;\mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(\mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right) - 6\right)\right)\\
                                  
                                  \mathbf{else}:\\
                                  \;\;\;\;x1 + \left(\left(\left(4 \cdot \left(x1 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 9\right)\\
                                  
                                  
                                  \end{array}
                                  \end{array}
                                  
                                  Derivation
                                  1. Split input into 3 regimes
                                  2. if x1 < -6.9999999999999995e99

                                    1. Initial program 2.1%

                                      \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                    2. Taylor expanded in x1 around -inf

                                      \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + \left(-1 \cdot \frac{1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1} + 4 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}}{x1}\right)} \]
                                    3. Applied rewrites99.9%

                                      \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + \mathsf{fma}\left(-1, \frac{1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}, 4 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}}{x1}\right)} \]
                                    4. Taylor expanded in x1 around 0

                                      \[\leadsto x1 \cdot \color{blue}{\left(-1 \cdot \left(1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + x1 \cdot \left(9 + \left(-3 \cdot x1 + 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)\right)} \]
                                    5. Step-by-step derivation
                                      1. lower-*.f64N/A

                                        \[\leadsto x1 \cdot \left(-1 \cdot \left(1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + \color{blue}{x1 \cdot \left(9 + \left(-3 \cdot x1 + 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)}\right) \]
                                      2. lower-fma.f64N/A

                                        \[\leadsto x1 \cdot \mathsf{fma}\left(-1, 1 + \color{blue}{-2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}, x1 \cdot \left(9 + \left(-3 \cdot x1 + 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)\right) \]
                                    6. Applied rewrites91.7%

                                      \[\leadsto x1 \cdot \color{blue}{\mathsf{fma}\left(-1, 1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right), x1 \cdot \left(9 + \mathsf{fma}\left(-3, x1, 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)\right)} \]
                                    7. Taylor expanded in x1 around inf

                                      \[\leadsto x1 \cdot \left(-3 \cdot {x1}^{\color{blue}{2}}\right) \]
                                    8. Step-by-step derivation
                                      1. lower-*.f64N/A

                                        \[\leadsto x1 \cdot \left(-3 \cdot {x1}^{2}\right) \]
                                      2. pow2N/A

                                        \[\leadsto x1 \cdot \left(-3 \cdot \left(x1 \cdot x1\right)\right) \]
                                      3. lift-*.f6498.1

                                        \[\leadsto x1 \cdot \left(-3 \cdot \left(x1 \cdot x1\right)\right) \]
                                    9. Applied rewrites98.1%

                                      \[\leadsto x1 \cdot \left(-3 \cdot \left(x1 \cdot \color{blue}{x1}\right)\right) \]

                                    if -6.9999999999999995e99 < x1 < 7.8e5

                                    1. Initial program 99.3%

                                      \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                    2. Taylor expanded in x1 around 0

                                      \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
                                    3. Step-by-step derivation
                                      1. lower-fma.f64N/A

                                        \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
                                    4. Applied rewrites78.0%

                                      \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
                                    5. Taylor expanded in x2 around 0

                                      \[\leadsto x1 \cdot \left(9 \cdot x1 - 1\right) + \color{blue}{x2 \cdot \left(\left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right) - 6\right)} \]
                                    6. Step-by-step derivation
                                      1. lower-fma.f64N/A

                                        \[\leadsto \mathsf{fma}\left(x1, 9 \cdot x1 - \color{blue}{1}, x2 \cdot \left(\left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right) - 6\right)\right) \]
                                      2. lower--.f64N/A

                                        \[\leadsto \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(\left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right) - 6\right)\right) \]
                                      3. lower-*.f64N/A

                                        \[\leadsto \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(\left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right) - 6\right)\right) \]
                                      4. lower-*.f64N/A

                                        \[\leadsto \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(\left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right) - 6\right)\right) \]
                                      5. lower--.f64N/A

                                        \[\leadsto \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(\left(8 \cdot \left(x1 \cdot x2\right) + x1 \cdot \left(12 \cdot x1 - 12\right)\right) - 6\right)\right) \]
                                      6. lower-fma.f64N/A

                                        \[\leadsto \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(\mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right) - 6\right)\right) \]
                                      7. lower-*.f64N/A

                                        \[\leadsto \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(\mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right) - 6\right)\right) \]
                                      8. lower-*.f64N/A

                                        \[\leadsto \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(\mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right) - 6\right)\right) \]
                                      9. lower--.f64N/A

                                        \[\leadsto \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(\mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right) - 6\right)\right) \]
                                      10. lower-*.f6488.8

                                        \[\leadsto \mathsf{fma}\left(x1, 9 \cdot x1 - 1, x2 \cdot \left(\mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right) - 6\right)\right) \]
                                    7. Applied rewrites88.8%

                                      \[\leadsto \mathsf{fma}\left(x1, \color{blue}{9 \cdot x1 - 1}, x2 \cdot \left(\mathsf{fma}\left(8, x1 \cdot x2, x1 \cdot \left(12 \cdot x1 - 12\right)\right) - 6\right)\right) \]

                                    if 7.8e5 < x1

                                    1. Initial program 49.7%

                                      \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                    2. Taylor expanded in x1 around 0

                                      \[\leadsto x1 + \left(\left(\left(\color{blue}{4 \cdot \left(x1 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right)\right)} + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                    3. Step-by-step derivation
                                      1. lower-*.f64N/A

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

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

                                        \[\leadsto x1 + \left(\left(\left(4 \cdot \left(x1 \cdot \left(x2 \cdot \color{blue}{\left(2 \cdot x2 - 3\right)}\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                      4. lower--.f64N/A

                                        \[\leadsto x1 + \left(\left(\left(4 \cdot \left(x1 \cdot \left(x2 \cdot \left(2 \cdot x2 - \color{blue}{3}\right)\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                      5. lift-*.f6427.4

                                        \[\leadsto x1 + \left(\left(\left(4 \cdot \left(x1 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                    4. Applied rewrites27.4%

                                      \[\leadsto x1 + \left(\left(\left(\color{blue}{4 \cdot \left(x1 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right)\right)} + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                    5. Taylor expanded in x1 around inf

                                      \[\leadsto x1 + \left(\left(\left(4 \cdot \left(x1 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + \color{blue}{9}\right) \]
                                    6. Step-by-step derivation
                                      1. Applied rewrites76.5%

                                        \[\leadsto x1 + \left(\left(\left(4 \cdot \left(x1 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + \color{blue}{9}\right) \]
                                    7. Recombined 3 regimes into one program.
                                    8. Add Preprocessing

                                    Alternative 19: 81.1% accurate, 5.1× speedup?

                                    \[\begin{array}{l} \\ \begin{array}{l} t_0 := x2 \cdot \left(2 \cdot x2 - 3\right)\\ \mathbf{if}\;x1 \leq -4.3 \cdot 10^{+99}:\\ \;\;\;\;x1 \cdot \left(-3 \cdot \left(x1 \cdot x1\right)\right)\\ \mathbf{elif}\;x1 \leq 780000:\\ \;\;\;\;\mathsf{fma}\left(-6, x2, x1 \cdot \left(4 \cdot t\_0 - 1\right)\right)\\ \mathbf{else}:\\ \;\;\;\;x1 + \left(\left(\left(4 \cdot \left(x1 \cdot t\_0\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 9\right)\\ \end{array} \end{array} \]
                                    (FPCore (x1 x2)
                                     :precision binary64
                                     (let* ((t_0 (* x2 (- (* 2.0 x2) 3.0))))
                                       (if (<= x1 -4.3e+99)
                                         (* x1 (* -3.0 (* x1 x1)))
                                         (if (<= x1 780000.0)
                                           (fma -6.0 x2 (* x1 (- (* 4.0 t_0) 1.0)))
                                           (+ x1 (+ (+ (+ (* 4.0 (* x1 t_0)) (* (* x1 x1) x1)) x1) 9.0))))))
                                    double code(double x1, double x2) {
                                    	double t_0 = x2 * ((2.0 * x2) - 3.0);
                                    	double tmp;
                                    	if (x1 <= -4.3e+99) {
                                    		tmp = x1 * (-3.0 * (x1 * x1));
                                    	} else if (x1 <= 780000.0) {
                                    		tmp = fma(-6.0, x2, (x1 * ((4.0 * t_0) - 1.0)));
                                    	} else {
                                    		tmp = x1 + ((((4.0 * (x1 * t_0)) + ((x1 * x1) * x1)) + x1) + 9.0);
                                    	}
                                    	return tmp;
                                    }
                                    
                                    function code(x1, x2)
                                    	t_0 = Float64(x2 * Float64(Float64(2.0 * x2) - 3.0))
                                    	tmp = 0.0
                                    	if (x1 <= -4.3e+99)
                                    		tmp = Float64(x1 * Float64(-3.0 * Float64(x1 * x1)));
                                    	elseif (x1 <= 780000.0)
                                    		tmp = fma(-6.0, x2, Float64(x1 * Float64(Float64(4.0 * t_0) - 1.0)));
                                    	else
                                    		tmp = Float64(x1 + Float64(Float64(Float64(Float64(4.0 * Float64(x1 * t_0)) + Float64(Float64(x1 * x1) * x1)) + x1) + 9.0));
                                    	end
                                    	return tmp
                                    end
                                    
                                    code[x1_, x2_] := Block[{t$95$0 = N[(x2 * N[(N[(2.0 * x2), $MachinePrecision] - 3.0), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[x1, -4.3e+99], N[(x1 * N[(-3.0 * N[(x1 * x1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[x1, 780000.0], N[(-6.0 * x2 + N[(x1 * N[(N[(4.0 * t$95$0), $MachinePrecision] - 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(x1 + N[(N[(N[(N[(4.0 * N[(x1 * t$95$0), $MachinePrecision]), $MachinePrecision] + N[(N[(x1 * x1), $MachinePrecision] * x1), $MachinePrecision]), $MachinePrecision] + x1), $MachinePrecision] + 9.0), $MachinePrecision]), $MachinePrecision]]]]
                                    
                                    \begin{array}{l}
                                    
                                    \\
                                    \begin{array}{l}
                                    t_0 := x2 \cdot \left(2 \cdot x2 - 3\right)\\
                                    \mathbf{if}\;x1 \leq -4.3 \cdot 10^{+99}:\\
                                    \;\;\;\;x1 \cdot \left(-3 \cdot \left(x1 \cdot x1\right)\right)\\
                                    
                                    \mathbf{elif}\;x1 \leq 780000:\\
                                    \;\;\;\;\mathsf{fma}\left(-6, x2, x1 \cdot \left(4 \cdot t\_0 - 1\right)\right)\\
                                    
                                    \mathbf{else}:\\
                                    \;\;\;\;x1 + \left(\left(\left(4 \cdot \left(x1 \cdot t\_0\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 9\right)\\
                                    
                                    
                                    \end{array}
                                    \end{array}
                                    
                                    Derivation
                                    1. Split input into 3 regimes
                                    2. if x1 < -4.3000000000000001e99

                                      1. Initial program 2.1%

                                        \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                      2. Taylor expanded in x1 around -inf

                                        \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + \left(-1 \cdot \frac{1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1} + 4 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}}{x1}\right)} \]
                                      3. Applied rewrites99.9%

                                        \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + \mathsf{fma}\left(-1, \frac{1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}, 4 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}}{x1}\right)} \]
                                      4. Taylor expanded in x1 around 0

                                        \[\leadsto x1 \cdot \color{blue}{\left(-1 \cdot \left(1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + x1 \cdot \left(9 + \left(-3 \cdot x1 + 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)\right)} \]
                                      5. Step-by-step derivation
                                        1. lower-*.f64N/A

                                          \[\leadsto x1 \cdot \left(-1 \cdot \left(1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + \color{blue}{x1 \cdot \left(9 + \left(-3 \cdot x1 + 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)}\right) \]
                                        2. lower-fma.f64N/A

                                          \[\leadsto x1 \cdot \mathsf{fma}\left(-1, 1 + \color{blue}{-2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}, x1 \cdot \left(9 + \left(-3 \cdot x1 + 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)\right) \]
                                      6. Applied rewrites91.6%

                                        \[\leadsto x1 \cdot \color{blue}{\mathsf{fma}\left(-1, 1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right), x1 \cdot \left(9 + \mathsf{fma}\left(-3, x1, 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)\right)} \]
                                      7. Taylor expanded in x1 around inf

                                        \[\leadsto x1 \cdot \left(-3 \cdot {x1}^{\color{blue}{2}}\right) \]
                                      8. Step-by-step derivation
                                        1. lower-*.f64N/A

                                          \[\leadsto x1 \cdot \left(-3 \cdot {x1}^{2}\right) \]
                                        2. pow2N/A

                                          \[\leadsto x1 \cdot \left(-3 \cdot \left(x1 \cdot x1\right)\right) \]
                                        3. lift-*.f6498.1

                                          \[\leadsto x1 \cdot \left(-3 \cdot \left(x1 \cdot x1\right)\right) \]
                                      9. Applied rewrites98.1%

                                        \[\leadsto x1 \cdot \left(-3 \cdot \left(x1 \cdot \color{blue}{x1}\right)\right) \]

                                      if -4.3000000000000001e99 < x1 < 7.8e5

                                      1. Initial program 99.3%

                                        \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                      2. Taylor expanded in x1 around 0

                                        \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) - 1\right)} \]
                                      3. Step-by-step derivation
                                        1. lower-fma.f64N/A

                                          \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) - 1\right)\right) \]
                                        2. lower-*.f64N/A

                                          \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) - 1\right)\right) \]
                                        3. lower--.f64N/A

                                          \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) - 1\right)\right) \]
                                      4. Applied rewrites78.0%

                                        \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) - 1\right)\right)} \]

                                      if 7.8e5 < x1

                                      1. Initial program 49.7%

                                        \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                      2. Taylor expanded in x1 around 0

                                        \[\leadsto x1 + \left(\left(\left(\color{blue}{4 \cdot \left(x1 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right)\right)} + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                      3. Step-by-step derivation
                                        1. lower-*.f64N/A

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

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

                                          \[\leadsto x1 + \left(\left(\left(4 \cdot \left(x1 \cdot \left(x2 \cdot \color{blue}{\left(2 \cdot x2 - 3\right)}\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                        4. lower--.f64N/A

                                          \[\leadsto x1 + \left(\left(\left(4 \cdot \left(x1 \cdot \left(x2 \cdot \left(2 \cdot x2 - \color{blue}{3}\right)\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                        5. lift-*.f6427.4

                                          \[\leadsto x1 + \left(\left(\left(4 \cdot \left(x1 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                      4. Applied rewrites27.4%

                                        \[\leadsto x1 + \left(\left(\left(\color{blue}{4 \cdot \left(x1 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right)\right)} + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                      5. Taylor expanded in x1 around inf

                                        \[\leadsto x1 + \left(\left(\left(4 \cdot \left(x1 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + \color{blue}{9}\right) \]
                                      6. Step-by-step derivation
                                        1. Applied rewrites76.5%

                                          \[\leadsto x1 + \left(\left(\left(4 \cdot \left(x1 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + \color{blue}{9}\right) \]
                                      7. Recombined 3 regimes into one program.
                                      8. Add Preprocessing

                                      Alternative 20: 79.6% accurate, 5.3× speedup?

                                      \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x1 \leq -4.3 \cdot 10^{+99}:\\ \;\;\;\;x1 \cdot \left(-3 \cdot \left(x1 \cdot x1\right)\right)\\ \mathbf{elif}\;x1 \leq 1.25 \cdot 10^{+30}:\\ \;\;\;\;\mathsf{fma}\left(-6, x2, x1 \cdot \left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) - 1\right)\right)\\ \mathbf{elif}\;x1 \leq 2 \cdot 10^{+153}:\\ \;\;\;\;x2 \cdot \mathsf{fma}\left(9, \frac{x1 \cdot x1}{x2}, 12 \cdot \left(x1 \cdot x1\right)\right)\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right)\right)\\ \end{array} \end{array} \]
                                      (FPCore (x1 x2)
                                       :precision binary64
                                       (if (<= x1 -4.3e+99)
                                         (* x1 (* -3.0 (* x1 x1)))
                                         (if (<= x1 1.25e+30)
                                           (fma -6.0 x2 (* x1 (- (* 4.0 (* x2 (- (* 2.0 x2) 3.0))) 1.0)))
                                           (if (<= x1 2e+153)
                                             (* x2 (fma 9.0 (/ (* x1 x1) x2) (* 12.0 (* x1 x1))))
                                             (fma -6.0 x2 (* x1 (- (* 9.0 x1) 1.0)))))))
                                      double code(double x1, double x2) {
                                      	double tmp;
                                      	if (x1 <= -4.3e+99) {
                                      		tmp = x1 * (-3.0 * (x1 * x1));
                                      	} else if (x1 <= 1.25e+30) {
                                      		tmp = fma(-6.0, x2, (x1 * ((4.0 * (x2 * ((2.0 * x2) - 3.0))) - 1.0)));
                                      	} else if (x1 <= 2e+153) {
                                      		tmp = x2 * fma(9.0, ((x1 * x1) / x2), (12.0 * (x1 * x1)));
                                      	} else {
                                      		tmp = fma(-6.0, x2, (x1 * ((9.0 * x1) - 1.0)));
                                      	}
                                      	return tmp;
                                      }
                                      
                                      function code(x1, x2)
                                      	tmp = 0.0
                                      	if (x1 <= -4.3e+99)
                                      		tmp = Float64(x1 * Float64(-3.0 * Float64(x1 * x1)));
                                      	elseif (x1 <= 1.25e+30)
                                      		tmp = fma(-6.0, x2, Float64(x1 * Float64(Float64(4.0 * Float64(x2 * Float64(Float64(2.0 * x2) - 3.0))) - 1.0)));
                                      	elseif (x1 <= 2e+153)
                                      		tmp = Float64(x2 * fma(9.0, Float64(Float64(x1 * x1) / x2), Float64(12.0 * Float64(x1 * x1))));
                                      	else
                                      		tmp = fma(-6.0, x2, Float64(x1 * Float64(Float64(9.0 * x1) - 1.0)));
                                      	end
                                      	return tmp
                                      end
                                      
                                      code[x1_, x2_] := If[LessEqual[x1, -4.3e+99], N[(x1 * N[(-3.0 * N[(x1 * x1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[x1, 1.25e+30], N[(-6.0 * x2 + N[(x1 * N[(N[(4.0 * N[(x2 * N[(N[(2.0 * x2), $MachinePrecision] - 3.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[x1, 2e+153], N[(x2 * N[(9.0 * N[(N[(x1 * x1), $MachinePrecision] / x2), $MachinePrecision] + N[(12.0 * N[(x1 * x1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(-6.0 * x2 + N[(x1 * N[(N[(9.0 * x1), $MachinePrecision] - 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]]
                                      
                                      \begin{array}{l}
                                      
                                      \\
                                      \begin{array}{l}
                                      \mathbf{if}\;x1 \leq -4.3 \cdot 10^{+99}:\\
                                      \;\;\;\;x1 \cdot \left(-3 \cdot \left(x1 \cdot x1\right)\right)\\
                                      
                                      \mathbf{elif}\;x1 \leq 1.25 \cdot 10^{+30}:\\
                                      \;\;\;\;\mathsf{fma}\left(-6, x2, x1 \cdot \left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) - 1\right)\right)\\
                                      
                                      \mathbf{elif}\;x1 \leq 2 \cdot 10^{+153}:\\
                                      \;\;\;\;x2 \cdot \mathsf{fma}\left(9, \frac{x1 \cdot x1}{x2}, 12 \cdot \left(x1 \cdot x1\right)\right)\\
                                      
                                      \mathbf{else}:\\
                                      \;\;\;\;\mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right)\right)\\
                                      
                                      
                                      \end{array}
                                      \end{array}
                                      
                                      Derivation
                                      1. Split input into 4 regimes
                                      2. if x1 < -4.3000000000000001e99

                                        1. Initial program 2.1%

                                          \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                        2. Taylor expanded in x1 around -inf

                                          \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + \left(-1 \cdot \frac{1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1} + 4 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}}{x1}\right)} \]
                                        3. Applied rewrites99.9%

                                          \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + \mathsf{fma}\left(-1, \frac{1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}, 4 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}}{x1}\right)} \]
                                        4. Taylor expanded in x1 around 0

                                          \[\leadsto x1 \cdot \color{blue}{\left(-1 \cdot \left(1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + x1 \cdot \left(9 + \left(-3 \cdot x1 + 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)\right)} \]
                                        5. Step-by-step derivation
                                          1. lower-*.f64N/A

                                            \[\leadsto x1 \cdot \left(-1 \cdot \left(1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + \color{blue}{x1 \cdot \left(9 + \left(-3 \cdot x1 + 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)}\right) \]
                                          2. lower-fma.f64N/A

                                            \[\leadsto x1 \cdot \mathsf{fma}\left(-1, 1 + \color{blue}{-2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}, x1 \cdot \left(9 + \left(-3 \cdot x1 + 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)\right) \]
                                        6. Applied rewrites91.6%

                                          \[\leadsto x1 \cdot \color{blue}{\mathsf{fma}\left(-1, 1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right), x1 \cdot \left(9 + \mathsf{fma}\left(-3, x1, 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)\right)} \]
                                        7. Taylor expanded in x1 around inf

                                          \[\leadsto x1 \cdot \left(-3 \cdot {x1}^{\color{blue}{2}}\right) \]
                                        8. Step-by-step derivation
                                          1. lower-*.f64N/A

                                            \[\leadsto x1 \cdot \left(-3 \cdot {x1}^{2}\right) \]
                                          2. pow2N/A

                                            \[\leadsto x1 \cdot \left(-3 \cdot \left(x1 \cdot x1\right)\right) \]
                                          3. lift-*.f6498.1

                                            \[\leadsto x1 \cdot \left(-3 \cdot \left(x1 \cdot x1\right)\right) \]
                                        9. Applied rewrites98.1%

                                          \[\leadsto x1 \cdot \left(-3 \cdot \left(x1 \cdot \color{blue}{x1}\right)\right) \]

                                        if -4.3000000000000001e99 < x1 < 1.25e30

                                        1. Initial program 99.3%

                                          \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                        2. Taylor expanded in x1 around 0

                                          \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) - 1\right)} \]
                                        3. Step-by-step derivation
                                          1. lower-fma.f64N/A

                                            \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) - 1\right)\right) \]
                                          2. lower-*.f64N/A

                                            \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) - 1\right)\right) \]
                                          3. lower--.f64N/A

                                            \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) - 1\right)\right) \]
                                        4. Applied rewrites76.2%

                                          \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) - 1\right)\right)} \]

                                        if 1.25e30 < x1 < 2e153

                                        1. Initial program 97.2%

                                          \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                        2. Taylor expanded in x1 around 0

                                          \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
                                        3. Step-by-step derivation
                                          1. lower-fma.f64N/A

                                            \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
                                        4. Applied rewrites27.2%

                                          \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
                                        5. Taylor expanded in x1 around inf

                                          \[\leadsto {x1}^{2} \cdot \color{blue}{\left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)} \]
                                        6. Step-by-step derivation
                                          1. lower-*.f64N/A

                                            \[\leadsto {x1}^{2} \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - \color{blue}{6}\right) \]
                                          2. pow2N/A

                                            \[\leadsto \left(x1 \cdot x1\right) \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right) \]
                                          3. lift-*.f64N/A

                                            \[\leadsto \left(x1 \cdot x1\right) \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right) \]
                                        7. Applied rewrites23.5%

                                          \[\leadsto \left(x1 \cdot x1\right) \cdot \color{blue}{\left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)} \]
                                        8. Taylor expanded in x2 around inf

                                          \[\leadsto x2 \cdot \left(9 \cdot \frac{{x1}^{2}}{x2} + \color{blue}{12 \cdot {x1}^{2}}\right) \]
                                        9. Step-by-step derivation
                                          1. lower-*.f64N/A

                                            \[\leadsto x2 \cdot \left(9 \cdot \frac{{x1}^{2}}{x2} + 12 \cdot \color{blue}{{x1}^{2}}\right) \]
                                          2. lower-fma.f64N/A

                                            \[\leadsto x2 \cdot \mathsf{fma}\left(9, \frac{{x1}^{2}}{x2}, 12 \cdot {x1}^{2}\right) \]
                                          3. lower-/.f64N/A

                                            \[\leadsto x2 \cdot \mathsf{fma}\left(9, \frac{{x1}^{2}}{x2}, 12 \cdot {x1}^{2}\right) \]
                                          4. pow2N/A

                                            \[\leadsto x2 \cdot \mathsf{fma}\left(9, \frac{x1 \cdot x1}{x2}, 12 \cdot {x1}^{2}\right) \]
                                          5. lift-*.f64N/A

                                            \[\leadsto x2 \cdot \mathsf{fma}\left(9, \frac{x1 \cdot x1}{x2}, 12 \cdot {x1}^{2}\right) \]
                                          6. lower-*.f64N/A

                                            \[\leadsto x2 \cdot \mathsf{fma}\left(9, \frac{x1 \cdot x1}{x2}, 12 \cdot {x1}^{2}\right) \]
                                          7. pow2N/A

                                            \[\leadsto x2 \cdot \mathsf{fma}\left(9, \frac{x1 \cdot x1}{x2}, 12 \cdot \left(x1 \cdot x1\right)\right) \]
                                          8. lift-*.f6445.0

                                            \[\leadsto x2 \cdot \mathsf{fma}\left(9, \frac{x1 \cdot x1}{x2}, 12 \cdot \left(x1 \cdot x1\right)\right) \]
                                        10. Applied rewrites45.0%

                                          \[\leadsto x2 \cdot \mathsf{fma}\left(9, \color{blue}{\frac{x1 \cdot x1}{x2}}, 12 \cdot \left(x1 \cdot x1\right)\right) \]

                                        if 2e153 < x1

                                        1. Initial program 0.6%

                                          \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                        2. Taylor expanded in x1 around 0

                                          \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
                                        3. Step-by-step derivation
                                          1. lower-fma.f64N/A

                                            \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
                                        4. Applied rewrites75.0%

                                          \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
                                        5. Taylor expanded in x2 around 0

                                          \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right)\right) \]
                                        6. Step-by-step derivation
                                          1. lower-*.f6499.8

                                            \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right)\right) \]
                                        7. Applied rewrites99.8%

                                          \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right)\right) \]
                                      3. Recombined 4 regimes into one program.
                                      4. Add Preprocessing

                                      Alternative 21: 78.1% accurate, 6.6× speedup?

                                      \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x1 \leq -4.3 \cdot 10^{+99}:\\ \;\;\;\;x1 \cdot \left(-3 \cdot \left(x1 \cdot x1\right)\right)\\ \mathbf{elif}\;x1 \leq 2 \cdot 10^{+153}:\\ \;\;\;\;\mathsf{fma}\left(-6, x2, x1 \cdot \left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) - 1\right)\right)\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right)\right)\\ \end{array} \end{array} \]
                                      (FPCore (x1 x2)
                                       :precision binary64
                                       (if (<= x1 -4.3e+99)
                                         (* x1 (* -3.0 (* x1 x1)))
                                         (if (<= x1 2e+153)
                                           (fma -6.0 x2 (* x1 (- (* 4.0 (* x2 (- (* 2.0 x2) 3.0))) 1.0)))
                                           (fma -6.0 x2 (* x1 (- (* 9.0 x1) 1.0))))))
                                      double code(double x1, double x2) {
                                      	double tmp;
                                      	if (x1 <= -4.3e+99) {
                                      		tmp = x1 * (-3.0 * (x1 * x1));
                                      	} else if (x1 <= 2e+153) {
                                      		tmp = fma(-6.0, x2, (x1 * ((4.0 * (x2 * ((2.0 * x2) - 3.0))) - 1.0)));
                                      	} else {
                                      		tmp = fma(-6.0, x2, (x1 * ((9.0 * x1) - 1.0)));
                                      	}
                                      	return tmp;
                                      }
                                      
                                      function code(x1, x2)
                                      	tmp = 0.0
                                      	if (x1 <= -4.3e+99)
                                      		tmp = Float64(x1 * Float64(-3.0 * Float64(x1 * x1)));
                                      	elseif (x1 <= 2e+153)
                                      		tmp = fma(-6.0, x2, Float64(x1 * Float64(Float64(4.0 * Float64(x2 * Float64(Float64(2.0 * x2) - 3.0))) - 1.0)));
                                      	else
                                      		tmp = fma(-6.0, x2, Float64(x1 * Float64(Float64(9.0 * x1) - 1.0)));
                                      	end
                                      	return tmp
                                      end
                                      
                                      code[x1_, x2_] := If[LessEqual[x1, -4.3e+99], N[(x1 * N[(-3.0 * N[(x1 * x1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[x1, 2e+153], N[(-6.0 * x2 + N[(x1 * N[(N[(4.0 * N[(x2 * N[(N[(2.0 * x2), $MachinePrecision] - 3.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(-6.0 * x2 + N[(x1 * N[(N[(9.0 * x1), $MachinePrecision] - 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]
                                      
                                      \begin{array}{l}
                                      
                                      \\
                                      \begin{array}{l}
                                      \mathbf{if}\;x1 \leq -4.3 \cdot 10^{+99}:\\
                                      \;\;\;\;x1 \cdot \left(-3 \cdot \left(x1 \cdot x1\right)\right)\\
                                      
                                      \mathbf{elif}\;x1 \leq 2 \cdot 10^{+153}:\\
                                      \;\;\;\;\mathsf{fma}\left(-6, x2, x1 \cdot \left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) - 1\right)\right)\\
                                      
                                      \mathbf{else}:\\
                                      \;\;\;\;\mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right)\right)\\
                                      
                                      
                                      \end{array}
                                      \end{array}
                                      
                                      Derivation
                                      1. Split input into 3 regimes
                                      2. if x1 < -4.3000000000000001e99

                                        1. Initial program 2.1%

                                          \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                        2. Taylor expanded in x1 around -inf

                                          \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + \left(-1 \cdot \frac{1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1} + 4 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}}{x1}\right)} \]
                                        3. Applied rewrites99.9%

                                          \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + \mathsf{fma}\left(-1, \frac{1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}, 4 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}}{x1}\right)} \]
                                        4. Taylor expanded in x1 around 0

                                          \[\leadsto x1 \cdot \color{blue}{\left(-1 \cdot \left(1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + x1 \cdot \left(9 + \left(-3 \cdot x1 + 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)\right)} \]
                                        5. Step-by-step derivation
                                          1. lower-*.f64N/A

                                            \[\leadsto x1 \cdot \left(-1 \cdot \left(1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + \color{blue}{x1 \cdot \left(9 + \left(-3 \cdot x1 + 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)}\right) \]
                                          2. lower-fma.f64N/A

                                            \[\leadsto x1 \cdot \mathsf{fma}\left(-1, 1 + \color{blue}{-2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}, x1 \cdot \left(9 + \left(-3 \cdot x1 + 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)\right) \]
                                        6. Applied rewrites91.6%

                                          \[\leadsto x1 \cdot \color{blue}{\mathsf{fma}\left(-1, 1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right), x1 \cdot \left(9 + \mathsf{fma}\left(-3, x1, 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)\right)} \]
                                        7. Taylor expanded in x1 around inf

                                          \[\leadsto x1 \cdot \left(-3 \cdot {x1}^{\color{blue}{2}}\right) \]
                                        8. Step-by-step derivation
                                          1. lower-*.f64N/A

                                            \[\leadsto x1 \cdot \left(-3 \cdot {x1}^{2}\right) \]
                                          2. pow2N/A

                                            \[\leadsto x1 \cdot \left(-3 \cdot \left(x1 \cdot x1\right)\right) \]
                                          3. lift-*.f6498.1

                                            \[\leadsto x1 \cdot \left(-3 \cdot \left(x1 \cdot x1\right)\right) \]
                                        9. Applied rewrites98.1%

                                          \[\leadsto x1 \cdot \left(-3 \cdot \left(x1 \cdot \color{blue}{x1}\right)\right) \]

                                        if -4.3000000000000001e99 < x1 < 2e153

                                        1. Initial program 99.0%

                                          \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                        2. Taylor expanded in x1 around 0

                                          \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) - 1\right)} \]
                                        3. Step-by-step derivation
                                          1. lower-fma.f64N/A

                                            \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) - 1\right)\right) \]
                                          2. lower-*.f64N/A

                                            \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) - 1\right)\right) \]
                                          3. lower--.f64N/A

                                            \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) - 1\right)\right) \]
                                        4. Applied rewrites69.6%

                                          \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) - 1\right)\right)} \]

                                        if 2e153 < x1

                                        1. Initial program 0.6%

                                          \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                        2. Taylor expanded in x1 around 0

                                          \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
                                        3. Step-by-step derivation
                                          1. lower-fma.f64N/A

                                            \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
                                        4. Applied rewrites75.0%

                                          \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
                                        5. Taylor expanded in x2 around 0

                                          \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right)\right) \]
                                        6. Step-by-step derivation
                                          1. lower-*.f6499.8

                                            \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right)\right) \]
                                        7. Applied rewrites99.8%

                                          \[\leadsto \mathsf{fma}\left(-6, x2, x1 \cdot \left(9 \cdot x1 - 1\right)\right) \]
                                      3. Recombined 3 regimes into one program.
                                      4. Add Preprocessing

                                      Alternative 22: 59.7% accurate, 9.3× speedup?

                                      \[\begin{array}{l} \\ \begin{array}{l} t_0 := x1 \cdot \left(9 \cdot x1 - 1\right)\\ \mathbf{if}\;x1 \leq -3.1:\\ \;\;\;\;x1 \cdot \left(-3 \cdot \left(x1 \cdot x1\right)\right)\\ \mathbf{elif}\;x1 \leq -2.3 \cdot 10^{-119}:\\ \;\;\;\;t\_0\\ \mathbf{elif}\;x1 \leq 5.2 \cdot 10^{-116}:\\ \;\;\;\;-6 \cdot x2\\ \mathbf{else}:\\ \;\;\;\;t\_0\\ \end{array} \end{array} \]
                                      (FPCore (x1 x2)
                                       :precision binary64
                                       (let* ((t_0 (* x1 (- (* 9.0 x1) 1.0))))
                                         (if (<= x1 -3.1)
                                           (* x1 (* -3.0 (* x1 x1)))
                                           (if (<= x1 -2.3e-119) t_0 (if (<= x1 5.2e-116) (* -6.0 x2) t_0)))))
                                      double code(double x1, double x2) {
                                      	double t_0 = x1 * ((9.0 * x1) - 1.0);
                                      	double tmp;
                                      	if (x1 <= -3.1) {
                                      		tmp = x1 * (-3.0 * (x1 * x1));
                                      	} else if (x1 <= -2.3e-119) {
                                      		tmp = t_0;
                                      	} else if (x1 <= 5.2e-116) {
                                      		tmp = -6.0 * x2;
                                      	} 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(x1, x2)
                                      use fmin_fmax_functions
                                          real(8), intent (in) :: x1
                                          real(8), intent (in) :: x2
                                          real(8) :: t_0
                                          real(8) :: tmp
                                          t_0 = x1 * ((9.0d0 * x1) - 1.0d0)
                                          if (x1 <= (-3.1d0)) then
                                              tmp = x1 * ((-3.0d0) * (x1 * x1))
                                          else if (x1 <= (-2.3d-119)) then
                                              tmp = t_0
                                          else if (x1 <= 5.2d-116) then
                                              tmp = (-6.0d0) * x2
                                          else
                                              tmp = t_0
                                          end if
                                          code = tmp
                                      end function
                                      
                                      public static double code(double x1, double x2) {
                                      	double t_0 = x1 * ((9.0 * x1) - 1.0);
                                      	double tmp;
                                      	if (x1 <= -3.1) {
                                      		tmp = x1 * (-3.0 * (x1 * x1));
                                      	} else if (x1 <= -2.3e-119) {
                                      		tmp = t_0;
                                      	} else if (x1 <= 5.2e-116) {
                                      		tmp = -6.0 * x2;
                                      	} else {
                                      		tmp = t_0;
                                      	}
                                      	return tmp;
                                      }
                                      
                                      def code(x1, x2):
                                      	t_0 = x1 * ((9.0 * x1) - 1.0)
                                      	tmp = 0
                                      	if x1 <= -3.1:
                                      		tmp = x1 * (-3.0 * (x1 * x1))
                                      	elif x1 <= -2.3e-119:
                                      		tmp = t_0
                                      	elif x1 <= 5.2e-116:
                                      		tmp = -6.0 * x2
                                      	else:
                                      		tmp = t_0
                                      	return tmp
                                      
                                      function code(x1, x2)
                                      	t_0 = Float64(x1 * Float64(Float64(9.0 * x1) - 1.0))
                                      	tmp = 0.0
                                      	if (x1 <= -3.1)
                                      		tmp = Float64(x1 * Float64(-3.0 * Float64(x1 * x1)));
                                      	elseif (x1 <= -2.3e-119)
                                      		tmp = t_0;
                                      	elseif (x1 <= 5.2e-116)
                                      		tmp = Float64(-6.0 * x2);
                                      	else
                                      		tmp = t_0;
                                      	end
                                      	return tmp
                                      end
                                      
                                      function tmp_2 = code(x1, x2)
                                      	t_0 = x1 * ((9.0 * x1) - 1.0);
                                      	tmp = 0.0;
                                      	if (x1 <= -3.1)
                                      		tmp = x1 * (-3.0 * (x1 * x1));
                                      	elseif (x1 <= -2.3e-119)
                                      		tmp = t_0;
                                      	elseif (x1 <= 5.2e-116)
                                      		tmp = -6.0 * x2;
                                      	else
                                      		tmp = t_0;
                                      	end
                                      	tmp_2 = tmp;
                                      end
                                      
                                      code[x1_, x2_] := Block[{t$95$0 = N[(x1 * N[(N[(9.0 * x1), $MachinePrecision] - 1.0), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[x1, -3.1], N[(x1 * N[(-3.0 * N[(x1 * x1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[x1, -2.3e-119], t$95$0, If[LessEqual[x1, 5.2e-116], N[(-6.0 * x2), $MachinePrecision], t$95$0]]]]
                                      
                                      \begin{array}{l}
                                      
                                      \\
                                      \begin{array}{l}
                                      t_0 := x1 \cdot \left(9 \cdot x1 - 1\right)\\
                                      \mathbf{if}\;x1 \leq -3.1:\\
                                      \;\;\;\;x1 \cdot \left(-3 \cdot \left(x1 \cdot x1\right)\right)\\
                                      
                                      \mathbf{elif}\;x1 \leq -2.3 \cdot 10^{-119}:\\
                                      \;\;\;\;t\_0\\
                                      
                                      \mathbf{elif}\;x1 \leq 5.2 \cdot 10^{-116}:\\
                                      \;\;\;\;-6 \cdot x2\\
                                      
                                      \mathbf{else}:\\
                                      \;\;\;\;t\_0\\
                                      
                                      
                                      \end{array}
                                      \end{array}
                                      
                                      Derivation
                                      1. Split input into 3 regimes
                                      2. if x1 < -3.10000000000000009

                                        1. Initial program 30.7%

                                          \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                        2. Taylor expanded in x1 around -inf

                                          \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + \left(-1 \cdot \frac{1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1} + 4 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}}{x1}\right)} \]
                                        3. Applied rewrites94.7%

                                          \[\leadsto \color{blue}{{x1}^{4} \cdot \left(6 + -1 \cdot \frac{3 + -1 \cdot \frac{9 + \mathsf{fma}\left(-1, \frac{1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}, 4 \cdot \left(2 \cdot x2 - 3\right)\right)}{x1}}{x1}\right)} \]
                                        4. Taylor expanded in x1 around 0

                                          \[\leadsto x1 \cdot \color{blue}{\left(-1 \cdot \left(1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + x1 \cdot \left(9 + \left(-3 \cdot x1 + 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)\right)} \]
                                        5. Step-by-step derivation
                                          1. lower-*.f64N/A

                                            \[\leadsto x1 \cdot \left(-1 \cdot \left(1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)\right) + \color{blue}{x1 \cdot \left(9 + \left(-3 \cdot x1 + 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)}\right) \]
                                          2. lower-fma.f64N/A

                                            \[\leadsto x1 \cdot \mathsf{fma}\left(-1, 1 + \color{blue}{-2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right)}, x1 \cdot \left(9 + \left(-3 \cdot x1 + 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)\right) \]
                                        6. Applied rewrites70.3%

                                          \[\leadsto x1 \cdot \color{blue}{\mathsf{fma}\left(-1, 1 + -2 \cdot \left(1 + 3 \cdot \left(2 \cdot x2 - 3\right)\right), x1 \cdot \left(9 + \mathsf{fma}\left(-3, x1, 4 \cdot \left(2 \cdot x2 - 3\right)\right)\right)\right)} \]
                                        7. Taylor expanded in x1 around inf

                                          \[\leadsto x1 \cdot \left(-3 \cdot {x1}^{\color{blue}{2}}\right) \]
                                        8. Step-by-step derivation
                                          1. lower-*.f64N/A

                                            \[\leadsto x1 \cdot \left(-3 \cdot {x1}^{2}\right) \]
                                          2. pow2N/A

                                            \[\leadsto x1 \cdot \left(-3 \cdot \left(x1 \cdot x1\right)\right) \]
                                          3. lift-*.f6470.9

                                            \[\leadsto x1 \cdot \left(-3 \cdot \left(x1 \cdot x1\right)\right) \]
                                        9. Applied rewrites70.9%

                                          \[\leadsto x1 \cdot \left(-3 \cdot \left(x1 \cdot \color{blue}{x1}\right)\right) \]

                                        if -3.10000000000000009 < x1 < -2.29999999999999993e-119 or 5.2000000000000001e-116 < x1

                                        1. Initial program 71.8%

                                          \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                        2. Taylor expanded in x1 around 0

                                          \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
                                        3. Step-by-step derivation
                                          1. lower-fma.f64N/A

                                            \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
                                        4. Applied rewrites69.0%

                                          \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
                                        5. Taylor expanded in x2 around 0

                                          \[\leadsto x1 \cdot \color{blue}{\left(9 \cdot x1 - 1\right)} \]
                                        6. Step-by-step derivation
                                          1. lower-*.f64N/A

                                            \[\leadsto x1 \cdot \left(9 \cdot x1 - \color{blue}{1}\right) \]
                                          2. lower--.f64N/A

                                            \[\leadsto x1 \cdot \left(9 \cdot x1 - 1\right) \]
                                          3. lower-*.f6446.2

                                            \[\leadsto x1 \cdot \left(9 \cdot x1 - 1\right) \]
                                        7. Applied rewrites46.2%

                                          \[\leadsto x1 \cdot \color{blue}{\left(9 \cdot x1 - 1\right)} \]

                                        if -2.29999999999999993e-119 < x1 < 5.2000000000000001e-116

                                        1. Initial program 99.5%

                                          \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                        2. Taylor expanded in x1 around 0

                                          \[\leadsto \color{blue}{-6 \cdot x2} \]
                                        3. Step-by-step derivation
                                          1. lower-*.f6470.0

                                            \[\leadsto -6 \cdot \color{blue}{x2} \]
                                        4. Applied rewrites70.0%

                                          \[\leadsto \color{blue}{-6 \cdot x2} \]
                                      3. Recombined 3 regimes into one program.
                                      4. Add Preprocessing

                                      Alternative 23: 55.8% accurate, 11.4× speedup?

                                      \[\begin{array}{l} \\ \begin{array}{l} t_0 := x1 \cdot \left(9 \cdot x1 - 1\right)\\ \mathbf{if}\;x1 \leq -2.3 \cdot 10^{-119}:\\ \;\;\;\;t\_0\\ \mathbf{elif}\;x1 \leq 5.2 \cdot 10^{-116}:\\ \;\;\;\;-6 \cdot x2\\ \mathbf{else}:\\ \;\;\;\;t\_0\\ \end{array} \end{array} \]
                                      (FPCore (x1 x2)
                                       :precision binary64
                                       (let* ((t_0 (* x1 (- (* 9.0 x1) 1.0))))
                                         (if (<= x1 -2.3e-119) t_0 (if (<= x1 5.2e-116) (* -6.0 x2) t_0))))
                                      double code(double x1, double x2) {
                                      	double t_0 = x1 * ((9.0 * x1) - 1.0);
                                      	double tmp;
                                      	if (x1 <= -2.3e-119) {
                                      		tmp = t_0;
                                      	} else if (x1 <= 5.2e-116) {
                                      		tmp = -6.0 * x2;
                                      	} 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(x1, x2)
                                      use fmin_fmax_functions
                                          real(8), intent (in) :: x1
                                          real(8), intent (in) :: x2
                                          real(8) :: t_0
                                          real(8) :: tmp
                                          t_0 = x1 * ((9.0d0 * x1) - 1.0d0)
                                          if (x1 <= (-2.3d-119)) then
                                              tmp = t_0
                                          else if (x1 <= 5.2d-116) then
                                              tmp = (-6.0d0) * x2
                                          else
                                              tmp = t_0
                                          end if
                                          code = tmp
                                      end function
                                      
                                      public static double code(double x1, double x2) {
                                      	double t_0 = x1 * ((9.0 * x1) - 1.0);
                                      	double tmp;
                                      	if (x1 <= -2.3e-119) {
                                      		tmp = t_0;
                                      	} else if (x1 <= 5.2e-116) {
                                      		tmp = -6.0 * x2;
                                      	} else {
                                      		tmp = t_0;
                                      	}
                                      	return tmp;
                                      }
                                      
                                      def code(x1, x2):
                                      	t_0 = x1 * ((9.0 * x1) - 1.0)
                                      	tmp = 0
                                      	if x1 <= -2.3e-119:
                                      		tmp = t_0
                                      	elif x1 <= 5.2e-116:
                                      		tmp = -6.0 * x2
                                      	else:
                                      		tmp = t_0
                                      	return tmp
                                      
                                      function code(x1, x2)
                                      	t_0 = Float64(x1 * Float64(Float64(9.0 * x1) - 1.0))
                                      	tmp = 0.0
                                      	if (x1 <= -2.3e-119)
                                      		tmp = t_0;
                                      	elseif (x1 <= 5.2e-116)
                                      		tmp = Float64(-6.0 * x2);
                                      	else
                                      		tmp = t_0;
                                      	end
                                      	return tmp
                                      end
                                      
                                      function tmp_2 = code(x1, x2)
                                      	t_0 = x1 * ((9.0 * x1) - 1.0);
                                      	tmp = 0.0;
                                      	if (x1 <= -2.3e-119)
                                      		tmp = t_0;
                                      	elseif (x1 <= 5.2e-116)
                                      		tmp = -6.0 * x2;
                                      	else
                                      		tmp = t_0;
                                      	end
                                      	tmp_2 = tmp;
                                      end
                                      
                                      code[x1_, x2_] := Block[{t$95$0 = N[(x1 * N[(N[(9.0 * x1), $MachinePrecision] - 1.0), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[x1, -2.3e-119], t$95$0, If[LessEqual[x1, 5.2e-116], N[(-6.0 * x2), $MachinePrecision], t$95$0]]]
                                      
                                      \begin{array}{l}
                                      
                                      \\
                                      \begin{array}{l}
                                      t_0 := x1 \cdot \left(9 \cdot x1 - 1\right)\\
                                      \mathbf{if}\;x1 \leq -2.3 \cdot 10^{-119}:\\
                                      \;\;\;\;t\_0\\
                                      
                                      \mathbf{elif}\;x1 \leq 5.2 \cdot 10^{-116}:\\
                                      \;\;\;\;-6 \cdot x2\\
                                      
                                      \mathbf{else}:\\
                                      \;\;\;\;t\_0\\
                                      
                                      
                                      \end{array}
                                      \end{array}
                                      
                                      Derivation
                                      1. Split input into 2 regimes
                                      2. if x1 < -2.29999999999999993e-119 or 5.2000000000000001e-116 < x1

                                        1. Initial program 57.3%

                                          \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                        2. Taylor expanded in x1 around 0

                                          \[\leadsto \color{blue}{-6 \cdot x2 + x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)} \]
                                        3. Step-by-step derivation
                                          1. lower-fma.f64N/A

                                            \[\leadsto \mathsf{fma}\left(-6, \color{blue}{x2}, x1 \cdot \left(\left(4 \cdot \left(x2 \cdot \left(2 \cdot x2 - 3\right)\right) + x1 \cdot \left(\left(2 \cdot \left(-2 \cdot x2 + -1 \cdot \left(2 \cdot x2 - 3\right)\right) + \left(3 \cdot \left(3 - -2 \cdot x2\right) + \left(6 \cdot x2 + 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right) \]
                                        4. Applied rewrites58.6%

                                          \[\leadsto \color{blue}{\mathsf{fma}\left(-6, x2, x1 \cdot \left(\mathsf{fma}\left(4, x2 \cdot \left(2 \cdot x2 - 3\right), x1 \cdot \left(\mathsf{fma}\left(2, \mathsf{fma}\left(-2, x2, -1 \cdot \left(2 \cdot x2 - 3\right)\right), \mathsf{fma}\left(3, 3 - -2 \cdot x2, \mathsf{fma}\left(6, x2, 8 \cdot x2\right)\right)\right) - 6\right)\right) - 1\right)\right)} \]
                                        5. Taylor expanded in x2 around 0

                                          \[\leadsto x1 \cdot \color{blue}{\left(9 \cdot x1 - 1\right)} \]
                                        6. Step-by-step derivation
                                          1. lower-*.f64N/A

                                            \[\leadsto x1 \cdot \left(9 \cdot x1 - \color{blue}{1}\right) \]
                                          2. lower--.f64N/A

                                            \[\leadsto x1 \cdot \left(9 \cdot x1 - 1\right) \]
                                          3. lower-*.f6449.3

                                            \[\leadsto x1 \cdot \left(9 \cdot x1 - 1\right) \]
                                        7. Applied rewrites49.3%

                                          \[\leadsto x1 \cdot \color{blue}{\left(9 \cdot x1 - 1\right)} \]

                                        if -2.29999999999999993e-119 < x1 < 5.2000000000000001e-116

                                        1. Initial program 99.5%

                                          \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                        2. Taylor expanded in x1 around 0

                                          \[\leadsto \color{blue}{-6 \cdot x2} \]
                                        3. Step-by-step derivation
                                          1. lower-*.f6470.0

                                            \[\leadsto -6 \cdot \color{blue}{x2} \]
                                        4. Applied rewrites70.0%

                                          \[\leadsto \color{blue}{-6 \cdot x2} \]
                                      3. Recombined 2 regimes into one program.
                                      4. Add Preprocessing

                                      Alternative 24: 27.4% accurate, 33.1× speedup?

                                      \[\begin{array}{l} \\ x1 + -6 \cdot x2 \end{array} \]
                                      (FPCore (x1 x2) :precision binary64 (+ x1 (* -6.0 x2)))
                                      double code(double x1, double x2) {
                                      	return x1 + (-6.0 * x2);
                                      }
                                      
                                      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(x1, x2)
                                      use fmin_fmax_functions
                                          real(8), intent (in) :: x1
                                          real(8), intent (in) :: x2
                                          code = x1 + ((-6.0d0) * x2)
                                      end function
                                      
                                      public static double code(double x1, double x2) {
                                      	return x1 + (-6.0 * x2);
                                      }
                                      
                                      def code(x1, x2):
                                      	return x1 + (-6.0 * x2)
                                      
                                      function code(x1, x2)
                                      	return Float64(x1 + Float64(-6.0 * x2))
                                      end
                                      
                                      function tmp = code(x1, x2)
                                      	tmp = x1 + (-6.0 * x2);
                                      end
                                      
                                      code[x1_, x2_] := N[(x1 + N[(-6.0 * x2), $MachinePrecision]), $MachinePrecision]
                                      
                                      \begin{array}{l}
                                      
                                      \\
                                      x1 + -6 \cdot x2
                                      \end{array}
                                      
                                      Derivation
                                      1. Initial program 70.6%

                                        \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                      2. Taylor expanded in x1 around 0

                                        \[\leadsto x1 + \color{blue}{-6 \cdot x2} \]
                                      3. Step-by-step derivation
                                        1. lower-*.f6427.4

                                          \[\leadsto x1 + -6 \cdot \color{blue}{x2} \]
                                      4. Applied rewrites27.4%

                                        \[\leadsto x1 + \color{blue}{-6 \cdot x2} \]
                                      5. Add Preprocessing

                                      Alternative 25: 27.3% accurate, 49.7× speedup?

                                      \[\begin{array}{l} \\ -6 \cdot x2 \end{array} \]
                                      (FPCore (x1 x2) :precision binary64 (* -6.0 x2))
                                      double code(double x1, double x2) {
                                      	return -6.0 * x2;
                                      }
                                      
                                      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(x1, x2)
                                      use fmin_fmax_functions
                                          real(8), intent (in) :: x1
                                          real(8), intent (in) :: x2
                                          code = (-6.0d0) * x2
                                      end function
                                      
                                      public static double code(double x1, double x2) {
                                      	return -6.0 * x2;
                                      }
                                      
                                      def code(x1, x2):
                                      	return -6.0 * x2
                                      
                                      function code(x1, x2)
                                      	return Float64(-6.0 * x2)
                                      end
                                      
                                      function tmp = code(x1, x2)
                                      	tmp = -6.0 * x2;
                                      end
                                      
                                      code[x1_, x2_] := N[(-6.0 * x2), $MachinePrecision]
                                      
                                      \begin{array}{l}
                                      
                                      \\
                                      -6 \cdot x2
                                      \end{array}
                                      
                                      Derivation
                                      1. Initial program 70.6%

                                        \[x1 + \left(\left(\left(\left(\left(\left(\left(2 \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \cdot \left(\frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 3\right) + \left(x1 \cdot x1\right) \cdot \left(4 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1} - 6\right)\right) \cdot \left(x1 \cdot x1 + 1\right) + \left(\left(3 \cdot x1\right) \cdot x1\right) \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 + 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) + \left(x1 \cdot x1\right) \cdot x1\right) + x1\right) + 3 \cdot \frac{\left(\left(3 \cdot x1\right) \cdot x1 - 2 \cdot x2\right) - x1}{x1 \cdot x1 + 1}\right) \]
                                      2. Taylor expanded in x1 around 0

                                        \[\leadsto \color{blue}{-6 \cdot x2} \]
                                      3. Step-by-step derivation
                                        1. lower-*.f6427.3

                                          \[\leadsto -6 \cdot \color{blue}{x2} \]
                                      4. Applied rewrites27.3%

                                        \[\leadsto \color{blue}{-6 \cdot x2} \]
                                      5. Add Preprocessing

                                      Reproduce

                                      ?
                                      herbie shell --seed 2025095 
                                      (FPCore (x1 x2)
                                        :name "Rosa's FloatVsDoubleBenchmark"
                                        :precision binary64
                                        (+ x1 (+ (+ (+ (+ (* (+ (* (* (* 2.0 x1) (/ (- (+ (* (* 3.0 x1) x1) (* 2.0 x2)) x1) (+ (* x1 x1) 1.0))) (- (/ (- (+ (* (* 3.0 x1) x1) (* 2.0 x2)) x1) (+ (* x1 x1) 1.0)) 3.0)) (* (* x1 x1) (- (* 4.0 (/ (- (+ (* (* 3.0 x1) x1) (* 2.0 x2)) x1) (+ (* x1 x1) 1.0))) 6.0))) (+ (* x1 x1) 1.0)) (* (* (* 3.0 x1) x1) (/ (- (+ (* (* 3.0 x1) x1) (* 2.0 x2)) x1) (+ (* x1 x1) 1.0)))) (* (* x1 x1) x1)) x1) (* 3.0 (/ (- (- (* (* 3.0 x1) x1) (* 2.0 x2)) x1) (+ (* x1 x1) 1.0))))))