Data.Number.Erf:$dmerfcx from erf-2.0.0.0

Percentage Accurate: 100.0% → 100.0%
Time: 20.4s
Alternatives: 14
Speedup: 1.0×

Specification

?
\[\begin{array}{l} \\ x \cdot e^{y \cdot y} \end{array} \]
(FPCore (x y) :precision binary64 (* x (exp (* y y))))
double code(double x, double y) {
	return x * exp((y * y));
}
real(8) function code(x, y)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    code = x * exp((y * y))
end function
public static double code(double x, double y) {
	return x * Math.exp((y * y));
}
def code(x, y):
	return x * math.exp((y * y))
function code(x, y)
	return Float64(x * exp(Float64(y * y)))
end
function tmp = code(x, y)
	tmp = x * exp((y * y));
end
code[x_, y_] := N[(x * N[Exp[N[(y * y), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
x \cdot e^{y \cdot y}
\end{array}

Sampling outcomes in binary64 precision:

Local Percentage Accuracy vs ?

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

Accuracy vs Speed?

Herbie found 14 alternatives:

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

Initial Program: 100.0% accurate, 1.0× speedup?

\[\begin{array}{l} \\ x \cdot e^{y \cdot y} \end{array} \]
(FPCore (x y) :precision binary64 (* x (exp (* y y))))
double code(double x, double y) {
	return x * exp((y * y));
}
real(8) function code(x, y)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    code = x * exp((y * y))
end function
public static double code(double x, double y) {
	return x * Math.exp((y * y));
}
def code(x, y):
	return x * math.exp((y * y))
function code(x, y)
	return Float64(x * exp(Float64(y * y)))
end
function tmp = code(x, y)
	tmp = x * exp((y * y));
end
code[x_, y_] := N[(x * N[Exp[N[(y * y), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
x \cdot e^{y \cdot y}
\end{array}

Alternative 1: 100.0% accurate, 0.5× speedup?

\[\begin{array}{l} \\ x \cdot {\left(e^{y}\right)}^{y} \end{array} \]
(FPCore (x y) :precision binary64 (* x (pow (exp y) y)))
double code(double x, double y) {
	return x * pow(exp(y), y);
}
real(8) function code(x, y)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    code = x * (exp(y) ** y)
end function
public static double code(double x, double y) {
	return x * Math.pow(Math.exp(y), y);
}
def code(x, y):
	return x * math.pow(math.exp(y), y)
function code(x, y)
	return Float64(x * (exp(y) ^ y))
end
function tmp = code(x, y)
	tmp = x * (exp(y) ^ y);
end
code[x_, y_] := N[(x * N[Power[N[Exp[y], $MachinePrecision], y], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
x \cdot {\left(e^{y}\right)}^{y}
\end{array}
Derivation
  1. Initial program 100.0%

    \[x \cdot e^{y \cdot y} \]
  2. Add Preprocessing
  3. Taylor expanded in y around inf

    \[\leadsto x \cdot \color{blue}{e^{{y}^{2}}} \]
  4. Step-by-step derivation
    1. unpow2N/A

      \[\leadsto x \cdot e^{\color{blue}{y \cdot y}} \]
    2. exp-prodN/A

      \[\leadsto x \cdot \color{blue}{{\left(e^{y}\right)}^{y}} \]
    3. lower-pow.f64N/A

      \[\leadsto x \cdot \color{blue}{{\left(e^{y}\right)}^{y}} \]
    4. lower-exp.f64100.0

      \[\leadsto x \cdot {\color{blue}{\left(e^{y}\right)}}^{y} \]
  5. Applied rewrites100.0%

    \[\leadsto x \cdot \color{blue}{{\left(e^{y}\right)}^{y}} \]
  6. Add Preprocessing

Alternative 2: 68.7% accurate, 0.8× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;e^{y \cdot y} \leq 4:\\ \;\;\;\;\mathsf{fma}\left(y \cdot x, y, x\right)\\ \mathbf{else}:\\ \;\;\;\;x \cdot \mathsf{fma}\left(\mathsf{fma}\left(0.16666666666666666, y, 0.5\right) \cdot y, y, y\right)\\ \end{array} \end{array} \]
(FPCore (x y)
 :precision binary64
 (if (<= (exp (* y y)) 4.0)
   (fma (* y x) y x)
   (* x (fma (* (fma 0.16666666666666666 y 0.5) y) y y))))
double code(double x, double y) {
	double tmp;
	if (exp((y * y)) <= 4.0) {
		tmp = fma((y * x), y, x);
	} else {
		tmp = x * fma((fma(0.16666666666666666, y, 0.5) * y), y, y);
	}
	return tmp;
}
function code(x, y)
	tmp = 0.0
	if (exp(Float64(y * y)) <= 4.0)
		tmp = fma(Float64(y * x), y, x);
	else
		tmp = Float64(x * fma(Float64(fma(0.16666666666666666, y, 0.5) * y), y, y));
	end
	return tmp
end
code[x_, y_] := If[LessEqual[N[Exp[N[(y * y), $MachinePrecision]], $MachinePrecision], 4.0], N[(N[(y * x), $MachinePrecision] * y + x), $MachinePrecision], N[(x * N[(N[(N[(0.16666666666666666 * y + 0.5), $MachinePrecision] * y), $MachinePrecision] * y + y), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;e^{y \cdot y} \leq 4:\\
\;\;\;\;\mathsf{fma}\left(y \cdot x, y, x\right)\\

\mathbf{else}:\\
\;\;\;\;x \cdot \mathsf{fma}\left(\mathsf{fma}\left(0.16666666666666666, y, 0.5\right) \cdot y, y, y\right)\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (exp.f64 (*.f64 y y)) < 4

    1. Initial program 100.0%

      \[x \cdot e^{y \cdot y} \]
    2. Add Preprocessing
    3. Taylor expanded in y around 0

      \[\leadsto \color{blue}{x + x \cdot {y}^{2}} \]
    4. Step-by-step derivation
      1. +-commutativeN/A

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

        \[\leadsto \color{blue}{{y}^{2} \cdot x} + x \]
      3. lower-fma.f64N/A

        \[\leadsto \color{blue}{\mathsf{fma}\left({y}^{2}, x, x\right)} \]
      4. unpow2N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{y \cdot y}, x, x\right) \]
      5. lower-*.f6499.4

        \[\leadsto \mathsf{fma}\left(\color{blue}{y \cdot y}, x, x\right) \]
    5. Applied rewrites99.4%

      \[\leadsto \color{blue}{\mathsf{fma}\left(y \cdot y, x, x\right)} \]
    6. Step-by-step derivation
      1. Applied rewrites99.4%

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

      if 4 < (exp.f64 (*.f64 y y))

      1. Initial program 100.0%

        \[x \cdot e^{y \cdot y} \]
      2. Add Preprocessing
      3. Step-by-step derivation
        1. lift-*.f64N/A

          \[\leadsto x \cdot e^{\color{blue}{y \cdot y}} \]
        2. *-rgt-identityN/A

          \[\leadsto x \cdot e^{y \cdot \color{blue}{\left(y \cdot 1\right)}} \]
        3. metadata-evalN/A

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

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

          \[\leadsto x \cdot e^{y \cdot \left(y \cdot \left(\frac{1}{2} + \color{blue}{\frac{1}{2}}\right)\right)} \]
        6. distribute-lft-outN/A

          \[\leadsto x \cdot e^{y \cdot \color{blue}{\left(y \cdot \frac{1}{2} + y \cdot \frac{1}{2}\right)}} \]
        7. div-invN/A

          \[\leadsto x \cdot e^{y \cdot \left(\color{blue}{\frac{y}{2}} + y \cdot \frac{1}{2}\right)} \]
        8. div-invN/A

          \[\leadsto x \cdot e^{y \cdot \left(\frac{y}{2} + \color{blue}{\frac{y}{2}}\right)} \]
        9. flip-+N/A

          \[\leadsto x \cdot e^{y \cdot \color{blue}{\frac{\frac{y}{2} \cdot \frac{y}{2} - \frac{y}{2} \cdot \frac{y}{2}}{\frac{y}{2} - \frac{y}{2}}}} \]
        10. +-inversesN/A

          \[\leadsto x \cdot e^{y \cdot \frac{\color{blue}{0}}{\frac{y}{2} - \frac{y}{2}}} \]
        11. +-inversesN/A

          \[\leadsto x \cdot e^{y \cdot \frac{0}{\color{blue}{0}}} \]
        12. associate-*r/N/A

          \[\leadsto x \cdot e^{\color{blue}{\frac{y \cdot 0}{0}}} \]
        13. *-rgt-identityN/A

          \[\leadsto x \cdot e^{\frac{\color{blue}{\left(y \cdot 1\right)} \cdot 0}{0}} \]
        14. metadata-evalN/A

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

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

          \[\leadsto x \cdot e^{\frac{\left(y \cdot \left(\frac{1}{2} + \color{blue}{\frac{1}{2}}\right)\right) \cdot 0}{0}} \]
        17. distribute-lft-outN/A

          \[\leadsto x \cdot e^{\frac{\color{blue}{\left(y \cdot \frac{1}{2} + y \cdot \frac{1}{2}\right)} \cdot 0}{0}} \]
        18. div-invN/A

          \[\leadsto x \cdot e^{\frac{\left(\color{blue}{\frac{y}{2}} + y \cdot \frac{1}{2}\right) \cdot 0}{0}} \]
        19. div-invN/A

          \[\leadsto x \cdot e^{\frac{\left(\frac{y}{2} + \color{blue}{\frac{y}{2}}\right) \cdot 0}{0}} \]
        20. +-inversesN/A

          \[\leadsto x \cdot e^{\frac{\left(\frac{y}{2} + \frac{y}{2}\right) \cdot \color{blue}{\left(\frac{y}{2} - \frac{y}{2}\right)}}{0}} \]
        21. difference-of-squaresN/A

          \[\leadsto x \cdot e^{\frac{\color{blue}{\frac{y}{2} \cdot \frac{y}{2} - \frac{y}{2} \cdot \frac{y}{2}}}{0}} \]
        22. +-inversesN/A

          \[\leadsto x \cdot e^{\frac{\frac{y}{2} \cdot \frac{y}{2} - \frac{y}{2} \cdot \frac{y}{2}}{\color{blue}{\frac{y}{2} - \frac{y}{2}}}} \]
        23. flip-+N/A

          \[\leadsto x \cdot e^{\color{blue}{\frac{y}{2} + \frac{y}{2}}} \]
        24. count-2N/A

          \[\leadsto x \cdot e^{\color{blue}{2 \cdot \frac{y}{2}}} \]
      4. Applied rewrites54.7%

        \[\leadsto x \cdot e^{\color{blue}{y}} \]
      5. Taylor expanded in y around 0

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

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

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

          \[\leadsto x \cdot \color{blue}{\mathsf{fma}\left(1 + y \cdot \left(\frac{1}{2} + \frac{1}{6} \cdot y\right), y, 1\right)} \]
        4. +-commutativeN/A

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

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

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

          \[\leadsto x \cdot \mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{\frac{1}{6} \cdot y + \frac{1}{2}}, y, 1\right), y, 1\right) \]
        8. lower-fma.f6435.4

          \[\leadsto x \cdot \mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(0.16666666666666666, y, 0.5\right)}, y, 1\right), y, 1\right) \]
      7. Applied rewrites35.4%

        \[\leadsto x \cdot \color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(0.16666666666666666, y, 0.5\right), y, 1\right), y, 1\right)} \]
      8. Taylor expanded in y around inf

        \[\leadsto x \cdot \left({y}^{3} \cdot \color{blue}{\left(\frac{1}{6} + \left(\frac{1}{2} \cdot \frac{1}{y} + \frac{1}{{y}^{2}}\right)\right)}\right) \]
      9. Step-by-step derivation
        1. Applied rewrites35.4%

          \[\leadsto x \cdot \mathsf{fma}\left(\mathsf{fma}\left(0.16666666666666666, y, 0.5\right) \cdot y, \color{blue}{y}, y\right) \]
      10. Recombined 2 regimes into one program.
      11. Add Preprocessing

      Alternative 3: 68.7% accurate, 0.8× speedup?

      \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;e^{y \cdot y} \leq 200000:\\ \;\;\;\;\mathsf{fma}\left(y \cdot x, y, x\right)\\ \mathbf{else}:\\ \;\;\;\;x \cdot \left(\left(\mathsf{fma}\left(0.16666666666666666, y, 0.5\right) \cdot y\right) \cdot y\right)\\ \end{array} \end{array} \]
      (FPCore (x y)
       :precision binary64
       (if (<= (exp (* y y)) 200000.0)
         (fma (* y x) y x)
         (* x (* (* (fma 0.16666666666666666 y 0.5) y) y))))
      double code(double x, double y) {
      	double tmp;
      	if (exp((y * y)) <= 200000.0) {
      		tmp = fma((y * x), y, x);
      	} else {
      		tmp = x * ((fma(0.16666666666666666, y, 0.5) * y) * y);
      	}
      	return tmp;
      }
      
      function code(x, y)
      	tmp = 0.0
      	if (exp(Float64(y * y)) <= 200000.0)
      		tmp = fma(Float64(y * x), y, x);
      	else
      		tmp = Float64(x * Float64(Float64(fma(0.16666666666666666, y, 0.5) * y) * y));
      	end
      	return tmp
      end
      
      code[x_, y_] := If[LessEqual[N[Exp[N[(y * y), $MachinePrecision]], $MachinePrecision], 200000.0], N[(N[(y * x), $MachinePrecision] * y + x), $MachinePrecision], N[(x * N[(N[(N[(0.16666666666666666 * y + 0.5), $MachinePrecision] * y), $MachinePrecision] * y), $MachinePrecision]), $MachinePrecision]]
      
      \begin{array}{l}
      
      \\
      \begin{array}{l}
      \mathbf{if}\;e^{y \cdot y} \leq 200000:\\
      \;\;\;\;\mathsf{fma}\left(y \cdot x, y, x\right)\\
      
      \mathbf{else}:\\
      \;\;\;\;x \cdot \left(\left(\mathsf{fma}\left(0.16666666666666666, y, 0.5\right) \cdot y\right) \cdot y\right)\\
      
      
      \end{array}
      \end{array}
      
      Derivation
      1. Split input into 2 regimes
      2. if (exp.f64 (*.f64 y y)) < 2e5

        1. Initial program 100.0%

          \[x \cdot e^{y \cdot y} \]
        2. Add Preprocessing
        3. Taylor expanded in y around 0

          \[\leadsto \color{blue}{x + x \cdot {y}^{2}} \]
        4. Step-by-step derivation
          1. +-commutativeN/A

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

            \[\leadsto \color{blue}{{y}^{2} \cdot x} + x \]
          3. lower-fma.f64N/A

            \[\leadsto \color{blue}{\mathsf{fma}\left({y}^{2}, x, x\right)} \]
          4. unpow2N/A

            \[\leadsto \mathsf{fma}\left(\color{blue}{y \cdot y}, x, x\right) \]
          5. lower-*.f6498.8

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

          \[\leadsto \color{blue}{\mathsf{fma}\left(y \cdot y, x, x\right)} \]
        6. Step-by-step derivation
          1. Applied rewrites98.8%

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

          if 2e5 < (exp.f64 (*.f64 y y))

          1. Initial program 100.0%

            \[x \cdot e^{y \cdot y} \]
          2. Add Preprocessing
          3. Step-by-step derivation
            1. lift-*.f64N/A

              \[\leadsto x \cdot e^{\color{blue}{y \cdot y}} \]
            2. *-rgt-identityN/A

              \[\leadsto x \cdot e^{y \cdot \color{blue}{\left(y \cdot 1\right)}} \]
            3. metadata-evalN/A

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

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

              \[\leadsto x \cdot e^{y \cdot \left(y \cdot \left(\frac{1}{2} + \color{blue}{\frac{1}{2}}\right)\right)} \]
            6. distribute-lft-outN/A

              \[\leadsto x \cdot e^{y \cdot \color{blue}{\left(y \cdot \frac{1}{2} + y \cdot \frac{1}{2}\right)}} \]
            7. div-invN/A

              \[\leadsto x \cdot e^{y \cdot \left(\color{blue}{\frac{y}{2}} + y \cdot \frac{1}{2}\right)} \]
            8. div-invN/A

              \[\leadsto x \cdot e^{y \cdot \left(\frac{y}{2} + \color{blue}{\frac{y}{2}}\right)} \]
            9. flip-+N/A

              \[\leadsto x \cdot e^{y \cdot \color{blue}{\frac{\frac{y}{2} \cdot \frac{y}{2} - \frac{y}{2} \cdot \frac{y}{2}}{\frac{y}{2} - \frac{y}{2}}}} \]
            10. +-inversesN/A

              \[\leadsto x \cdot e^{y \cdot \frac{\color{blue}{0}}{\frac{y}{2} - \frac{y}{2}}} \]
            11. +-inversesN/A

              \[\leadsto x \cdot e^{y \cdot \frac{0}{\color{blue}{0}}} \]
            12. associate-*r/N/A

              \[\leadsto x \cdot e^{\color{blue}{\frac{y \cdot 0}{0}}} \]
            13. *-rgt-identityN/A

              \[\leadsto x \cdot e^{\frac{\color{blue}{\left(y \cdot 1\right)} \cdot 0}{0}} \]
            14. metadata-evalN/A

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

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

              \[\leadsto x \cdot e^{\frac{\left(y \cdot \left(\frac{1}{2} + \color{blue}{\frac{1}{2}}\right)\right) \cdot 0}{0}} \]
            17. distribute-lft-outN/A

              \[\leadsto x \cdot e^{\frac{\color{blue}{\left(y \cdot \frac{1}{2} + y \cdot \frac{1}{2}\right)} \cdot 0}{0}} \]
            18. div-invN/A

              \[\leadsto x \cdot e^{\frac{\left(\color{blue}{\frac{y}{2}} + y \cdot \frac{1}{2}\right) \cdot 0}{0}} \]
            19. div-invN/A

              \[\leadsto x \cdot e^{\frac{\left(\frac{y}{2} + \color{blue}{\frac{y}{2}}\right) \cdot 0}{0}} \]
            20. +-inversesN/A

              \[\leadsto x \cdot e^{\frac{\left(\frac{y}{2} + \frac{y}{2}\right) \cdot \color{blue}{\left(\frac{y}{2} - \frac{y}{2}\right)}}{0}} \]
            21. difference-of-squaresN/A

              \[\leadsto x \cdot e^{\frac{\color{blue}{\frac{y}{2} \cdot \frac{y}{2} - \frac{y}{2} \cdot \frac{y}{2}}}{0}} \]
            22. +-inversesN/A

              \[\leadsto x \cdot e^{\frac{\frac{y}{2} \cdot \frac{y}{2} - \frac{y}{2} \cdot \frac{y}{2}}{\color{blue}{\frac{y}{2} - \frac{y}{2}}}} \]
            23. flip-+N/A

              \[\leadsto x \cdot e^{\color{blue}{\frac{y}{2} + \frac{y}{2}}} \]
            24. count-2N/A

              \[\leadsto x \cdot e^{\color{blue}{2 \cdot \frac{y}{2}}} \]
          4. Applied rewrites55.0%

            \[\leadsto x \cdot e^{\color{blue}{y}} \]
          5. Taylor expanded in y around 0

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

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

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

              \[\leadsto x \cdot \color{blue}{\mathsf{fma}\left(1 + y \cdot \left(\frac{1}{2} + \frac{1}{6} \cdot y\right), y, 1\right)} \]
            4. +-commutativeN/A

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

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

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

              \[\leadsto x \cdot \mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{\frac{1}{6} \cdot y + \frac{1}{2}}, y, 1\right), y, 1\right) \]
            8. lower-fma.f6435.5

              \[\leadsto x \cdot \mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(0.16666666666666666, y, 0.5\right)}, y, 1\right), y, 1\right) \]
          7. Applied rewrites35.5%

            \[\leadsto x \cdot \color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(0.16666666666666666, y, 0.5\right), y, 1\right), y, 1\right)} \]
          8. Taylor expanded in y around inf

            \[\leadsto x \cdot \left({y}^{3} \cdot \color{blue}{\left(\frac{1}{6} + \frac{1}{2} \cdot \frac{1}{y}\right)}\right) \]
          9. Step-by-step derivation
            1. Applied rewrites35.5%

              \[\leadsto x \cdot \left(\left(\mathsf{fma}\left(0.16666666666666666, y, 0.5\right) \cdot y\right) \cdot \color{blue}{y}\right) \]
          10. Recombined 2 regimes into one program.
          11. Add Preprocessing

          Alternative 4: 100.0% accurate, 1.0× speedup?

          \[\begin{array}{l} \\ x \cdot e^{y \cdot y} \end{array} \]
          (FPCore (x y) :precision binary64 (* x (exp (* y y))))
          double code(double x, double y) {
          	return x * exp((y * y));
          }
          
          real(8) function code(x, y)
              real(8), intent (in) :: x
              real(8), intent (in) :: y
              code = x * exp((y * y))
          end function
          
          public static double code(double x, double y) {
          	return x * Math.exp((y * y));
          }
          
          def code(x, y):
          	return x * math.exp((y * y))
          
          function code(x, y)
          	return Float64(x * exp(Float64(y * y)))
          end
          
          function tmp = code(x, y)
          	tmp = x * exp((y * y));
          end
          
          code[x_, y_] := N[(x * N[Exp[N[(y * y), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
          
          \begin{array}{l}
          
          \\
          x \cdot e^{y \cdot y}
          \end{array}
          
          Derivation
          1. Initial program 100.0%

            \[x \cdot e^{y \cdot y} \]
          2. Add Preprocessing
          3. Add Preprocessing

          Alternative 5: 74.9% accurate, 1.0× speedup?

          \[\begin{array}{l} \\ x \cdot {\left(y - -1\right)}^{y} \end{array} \]
          (FPCore (x y) :precision binary64 (* x (pow (- y -1.0) y)))
          double code(double x, double y) {
          	return x * pow((y - -1.0), y);
          }
          
          real(8) function code(x, y)
              real(8), intent (in) :: x
              real(8), intent (in) :: y
              code = x * ((y - (-1.0d0)) ** y)
          end function
          
          public static double code(double x, double y) {
          	return x * Math.pow((y - -1.0), y);
          }
          
          def code(x, y):
          	return x * math.pow((y - -1.0), y)
          
          function code(x, y)
          	return Float64(x * (Float64(y - -1.0) ^ y))
          end
          
          function tmp = code(x, y)
          	tmp = x * ((y - -1.0) ^ y);
          end
          
          code[x_, y_] := N[(x * N[Power[N[(y - -1.0), $MachinePrecision], y], $MachinePrecision]), $MachinePrecision]
          
          \begin{array}{l}
          
          \\
          x \cdot {\left(y - -1\right)}^{y}
          \end{array}
          
          Derivation
          1. Initial program 100.0%

            \[x \cdot e^{y \cdot y} \]
          2. Add Preprocessing
          3. Taylor expanded in y around inf

            \[\leadsto x \cdot \color{blue}{e^{{y}^{2}}} \]
          4. Step-by-step derivation
            1. unpow2N/A

              \[\leadsto x \cdot e^{\color{blue}{y \cdot y}} \]
            2. exp-prodN/A

              \[\leadsto x \cdot \color{blue}{{\left(e^{y}\right)}^{y}} \]
            3. lower-pow.f64N/A

              \[\leadsto x \cdot \color{blue}{{\left(e^{y}\right)}^{y}} \]
            4. lower-exp.f64100.0

              \[\leadsto x \cdot {\color{blue}{\left(e^{y}\right)}}^{y} \]
          5. Applied rewrites100.0%

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

            \[\leadsto x \cdot {\left(1 + y\right)}^{y} \]
          7. Step-by-step derivation
            1. Applied rewrites78.9%

              \[\leadsto x \cdot {\left(y - -1\right)}^{y} \]
            2. Add Preprocessing

            Alternative 6: 74.3% accurate, 1.0× speedup?

            \[\begin{array}{l} \\ x \cdot e^{y} \end{array} \]
            (FPCore (x y) :precision binary64 (* x (exp y)))
            double code(double x, double y) {
            	return x * exp(y);
            }
            
            real(8) function code(x, y)
                real(8), intent (in) :: x
                real(8), intent (in) :: y
                code = x * exp(y)
            end function
            
            public static double code(double x, double y) {
            	return x * Math.exp(y);
            }
            
            def code(x, y):
            	return x * math.exp(y)
            
            function code(x, y)
            	return Float64(x * exp(y))
            end
            
            function tmp = code(x, y)
            	tmp = x * exp(y);
            end
            
            code[x_, y_] := N[(x * N[Exp[y], $MachinePrecision]), $MachinePrecision]
            
            \begin{array}{l}
            
            \\
            x \cdot e^{y}
            \end{array}
            
            Derivation
            1. Initial program 100.0%

              \[x \cdot e^{y \cdot y} \]
            2. Add Preprocessing
            3. Step-by-step derivation
              1. lift-*.f64N/A

                \[\leadsto x \cdot e^{\color{blue}{y \cdot y}} \]
              2. *-rgt-identityN/A

                \[\leadsto x \cdot e^{y \cdot \color{blue}{\left(y \cdot 1\right)}} \]
              3. metadata-evalN/A

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

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

                \[\leadsto x \cdot e^{y \cdot \left(y \cdot \left(\frac{1}{2} + \color{blue}{\frac{1}{2}}\right)\right)} \]
              6. distribute-lft-outN/A

                \[\leadsto x \cdot e^{y \cdot \color{blue}{\left(y \cdot \frac{1}{2} + y \cdot \frac{1}{2}\right)}} \]
              7. div-invN/A

                \[\leadsto x \cdot e^{y \cdot \left(\color{blue}{\frac{y}{2}} + y \cdot \frac{1}{2}\right)} \]
              8. div-invN/A

                \[\leadsto x \cdot e^{y \cdot \left(\frac{y}{2} + \color{blue}{\frac{y}{2}}\right)} \]
              9. flip-+N/A

                \[\leadsto x \cdot e^{y \cdot \color{blue}{\frac{\frac{y}{2} \cdot \frac{y}{2} - \frac{y}{2} \cdot \frac{y}{2}}{\frac{y}{2} - \frac{y}{2}}}} \]
              10. +-inversesN/A

                \[\leadsto x \cdot e^{y \cdot \frac{\color{blue}{0}}{\frac{y}{2} - \frac{y}{2}}} \]
              11. +-inversesN/A

                \[\leadsto x \cdot e^{y \cdot \frac{0}{\color{blue}{0}}} \]
              12. associate-*r/N/A

                \[\leadsto x \cdot e^{\color{blue}{\frac{y \cdot 0}{0}}} \]
              13. *-rgt-identityN/A

                \[\leadsto x \cdot e^{\frac{\color{blue}{\left(y \cdot 1\right)} \cdot 0}{0}} \]
              14. metadata-evalN/A

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

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

                \[\leadsto x \cdot e^{\frac{\left(y \cdot \left(\frac{1}{2} + \color{blue}{\frac{1}{2}}\right)\right) \cdot 0}{0}} \]
              17. distribute-lft-outN/A

                \[\leadsto x \cdot e^{\frac{\color{blue}{\left(y \cdot \frac{1}{2} + y \cdot \frac{1}{2}\right)} \cdot 0}{0}} \]
              18. div-invN/A

                \[\leadsto x \cdot e^{\frac{\left(\color{blue}{\frac{y}{2}} + y \cdot \frac{1}{2}\right) \cdot 0}{0}} \]
              19. div-invN/A

                \[\leadsto x \cdot e^{\frac{\left(\frac{y}{2} + \color{blue}{\frac{y}{2}}\right) \cdot 0}{0}} \]
              20. +-inversesN/A

                \[\leadsto x \cdot e^{\frac{\left(\frac{y}{2} + \frac{y}{2}\right) \cdot \color{blue}{\left(\frac{y}{2} - \frac{y}{2}\right)}}{0}} \]
              21. difference-of-squaresN/A

                \[\leadsto x \cdot e^{\frac{\color{blue}{\frac{y}{2} \cdot \frac{y}{2} - \frac{y}{2} \cdot \frac{y}{2}}}{0}} \]
              22. +-inversesN/A

                \[\leadsto x \cdot e^{\frac{\frac{y}{2} \cdot \frac{y}{2} - \frac{y}{2} \cdot \frac{y}{2}}{\color{blue}{\frac{y}{2} - \frac{y}{2}}}} \]
              23. flip-+N/A

                \[\leadsto x \cdot e^{\color{blue}{\frac{y}{2} + \frac{y}{2}}} \]
              24. count-2N/A

                \[\leadsto x \cdot e^{\color{blue}{2 \cdot \frac{y}{2}}} \]
            4. Applied rewrites78.2%

              \[\leadsto x \cdot e^{\color{blue}{y}} \]
            5. Add Preprocessing

            Alternative 7: 87.8% accurate, 4.0× speedup?

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

              \[x \cdot e^{y \cdot y} \]
            2. Add Preprocessing
            3. Taylor expanded in y around 0

              \[\leadsto \color{blue}{x + x \cdot {y}^{2}} \]
            4. Step-by-step derivation
              1. +-commutativeN/A

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

                \[\leadsto \color{blue}{{y}^{2} \cdot x} + x \]
              3. lower-fma.f64N/A

                \[\leadsto \color{blue}{\mathsf{fma}\left({y}^{2}, x, x\right)} \]
              4. unpow2N/A

                \[\leadsto \mathsf{fma}\left(\color{blue}{y \cdot y}, x, x\right) \]
              5. lower-*.f6481.0

                \[\leadsto \mathsf{fma}\left(\color{blue}{y \cdot y}, x, x\right) \]
            5. Applied rewrites81.0%

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

              \[\leadsto x \cdot \color{blue}{{y}^{2}} \]
            7. Step-by-step derivation
              1. Applied rewrites29.8%

                \[\leadsto \left(y \cdot y\right) \cdot \color{blue}{x} \]
              2. Step-by-step derivation
                1. Applied rewrites25.5%

                  \[\leadsto \left(y \cdot x\right) \cdot y \]
                2. Taylor expanded in y around 0

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

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

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

                    \[\leadsto \color{blue}{\mathsf{fma}\left(x + \frac{1}{2} \cdot \left(x \cdot {y}^{2}\right), {y}^{2}, x\right)} \]
                  4. +-commutativeN/A

                    \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{1}{2} \cdot \left(x \cdot {y}^{2}\right) + x}, {y}^{2}, x\right) \]
                  5. unpow2N/A

                    \[\leadsto \mathsf{fma}\left(\frac{1}{2} \cdot \left(x \cdot \color{blue}{\left(y \cdot y\right)}\right) + x, {y}^{2}, x\right) \]
                  6. associate-*r*N/A

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

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

                    \[\leadsto \mathsf{fma}\left(\color{blue}{y \cdot \left(\frac{1}{2} \cdot \left(x \cdot y\right)\right)} + x, {y}^{2}, x\right) \]
                  9. associate-*r*N/A

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

                    \[\leadsto \mathsf{fma}\left(\color{blue}{\left(\frac{1}{2} \cdot y\right)} \cdot \left(x \cdot y\right) + x, {y}^{2}, x\right) \]
                  11. lower-fma.f64N/A

                    \[\leadsto \mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(\frac{1}{2} \cdot y, x \cdot y, x\right)}, {y}^{2}, x\right) \]
                  12. lower-*.f64N/A

                    \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{\frac{1}{2} \cdot y}, x \cdot y, x\right), {y}^{2}, x\right) \]
                  13. *-commutativeN/A

                    \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(\frac{1}{2} \cdot y, \color{blue}{y \cdot x}, x\right), {y}^{2}, x\right) \]
                  14. lower-*.f64N/A

                    \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(\frac{1}{2} \cdot y, \color{blue}{y \cdot x}, x\right), {y}^{2}, x\right) \]
                  15. unpow2N/A

                    \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(\frac{1}{2} \cdot y, y \cdot x, x\right), \color{blue}{y \cdot y}, x\right) \]
                  16. lower-*.f6486.0

                    \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(0.5 \cdot y, y \cdot x, x\right), \color{blue}{y \cdot y}, x\right) \]
                4. Applied rewrites86.0%

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

                Alternative 8: 67.9% accurate, 4.6× speedup?

                \[\begin{array}{l} \\ x \cdot \mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(0.16666666666666666, y, 0.5\right), y, 1\right), y, 1\right) \end{array} \]
                (FPCore (x y)
                 :precision binary64
                 (* x (fma (fma (fma 0.16666666666666666 y 0.5) y 1.0) y 1.0)))
                double code(double x, double y) {
                	return x * fma(fma(fma(0.16666666666666666, y, 0.5), y, 1.0), y, 1.0);
                }
                
                function code(x, y)
                	return Float64(x * fma(fma(fma(0.16666666666666666, y, 0.5), y, 1.0), y, 1.0))
                end
                
                code[x_, y_] := N[(x * N[(N[(N[(0.16666666666666666 * y + 0.5), $MachinePrecision] * y + 1.0), $MachinePrecision] * y + 1.0), $MachinePrecision]), $MachinePrecision]
                
                \begin{array}{l}
                
                \\
                x \cdot \mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(0.16666666666666666, y, 0.5\right), y, 1\right), y, 1\right)
                \end{array}
                
                Derivation
                1. Initial program 100.0%

                  \[x \cdot e^{y \cdot y} \]
                2. Add Preprocessing
                3. Step-by-step derivation
                  1. lift-*.f64N/A

                    \[\leadsto x \cdot e^{\color{blue}{y \cdot y}} \]
                  2. *-rgt-identityN/A

                    \[\leadsto x \cdot e^{y \cdot \color{blue}{\left(y \cdot 1\right)}} \]
                  3. metadata-evalN/A

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

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

                    \[\leadsto x \cdot e^{y \cdot \left(y \cdot \left(\frac{1}{2} + \color{blue}{\frac{1}{2}}\right)\right)} \]
                  6. distribute-lft-outN/A

                    \[\leadsto x \cdot e^{y \cdot \color{blue}{\left(y \cdot \frac{1}{2} + y \cdot \frac{1}{2}\right)}} \]
                  7. div-invN/A

                    \[\leadsto x \cdot e^{y \cdot \left(\color{blue}{\frac{y}{2}} + y \cdot \frac{1}{2}\right)} \]
                  8. div-invN/A

                    \[\leadsto x \cdot e^{y \cdot \left(\frac{y}{2} + \color{blue}{\frac{y}{2}}\right)} \]
                  9. flip-+N/A

                    \[\leadsto x \cdot e^{y \cdot \color{blue}{\frac{\frac{y}{2} \cdot \frac{y}{2} - \frac{y}{2} \cdot \frac{y}{2}}{\frac{y}{2} - \frac{y}{2}}}} \]
                  10. +-inversesN/A

                    \[\leadsto x \cdot e^{y \cdot \frac{\color{blue}{0}}{\frac{y}{2} - \frac{y}{2}}} \]
                  11. +-inversesN/A

                    \[\leadsto x \cdot e^{y \cdot \frac{0}{\color{blue}{0}}} \]
                  12. associate-*r/N/A

                    \[\leadsto x \cdot e^{\color{blue}{\frac{y \cdot 0}{0}}} \]
                  13. *-rgt-identityN/A

                    \[\leadsto x \cdot e^{\frac{\color{blue}{\left(y \cdot 1\right)} \cdot 0}{0}} \]
                  14. metadata-evalN/A

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

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

                    \[\leadsto x \cdot e^{\frac{\left(y \cdot \left(\frac{1}{2} + \color{blue}{\frac{1}{2}}\right)\right) \cdot 0}{0}} \]
                  17. distribute-lft-outN/A

                    \[\leadsto x \cdot e^{\frac{\color{blue}{\left(y \cdot \frac{1}{2} + y \cdot \frac{1}{2}\right)} \cdot 0}{0}} \]
                  18. div-invN/A

                    \[\leadsto x \cdot e^{\frac{\left(\color{blue}{\frac{y}{2}} + y \cdot \frac{1}{2}\right) \cdot 0}{0}} \]
                  19. div-invN/A

                    \[\leadsto x \cdot e^{\frac{\left(\frac{y}{2} + \color{blue}{\frac{y}{2}}\right) \cdot 0}{0}} \]
                  20. +-inversesN/A

                    \[\leadsto x \cdot e^{\frac{\left(\frac{y}{2} + \frac{y}{2}\right) \cdot \color{blue}{\left(\frac{y}{2} - \frac{y}{2}\right)}}{0}} \]
                  21. difference-of-squaresN/A

                    \[\leadsto x \cdot e^{\frac{\color{blue}{\frac{y}{2} \cdot \frac{y}{2} - \frac{y}{2} \cdot \frac{y}{2}}}{0}} \]
                  22. +-inversesN/A

                    \[\leadsto x \cdot e^{\frac{\frac{y}{2} \cdot \frac{y}{2} - \frac{y}{2} \cdot \frac{y}{2}}{\color{blue}{\frac{y}{2} - \frac{y}{2}}}} \]
                  23. flip-+N/A

                    \[\leadsto x \cdot e^{\color{blue}{\frac{y}{2} + \frac{y}{2}}} \]
                  24. count-2N/A

                    \[\leadsto x \cdot e^{\color{blue}{2 \cdot \frac{y}{2}}} \]
                4. Applied rewrites78.2%

                  \[\leadsto x \cdot e^{\color{blue}{y}} \]
                5. Taylor expanded in y around 0

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

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

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

                    \[\leadsto x \cdot \color{blue}{\mathsf{fma}\left(1 + y \cdot \left(\frac{1}{2} + \frac{1}{6} \cdot y\right), y, 1\right)} \]
                  4. +-commutativeN/A

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

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

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

                    \[\leadsto x \cdot \mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{\frac{1}{6} \cdot y + \frac{1}{2}}, y, 1\right), y, 1\right) \]
                  8. lower-fma.f6469.4

                    \[\leadsto x \cdot \mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(0.16666666666666666, y, 0.5\right)}, y, 1\right), y, 1\right) \]
                7. Applied rewrites69.4%

                  \[\leadsto x \cdot \color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(0.16666666666666666, y, 0.5\right), y, 1\right), y, 1\right)} \]
                8. Add Preprocessing

                Alternative 9: 82.1% accurate, 4.8× speedup?

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

                  1. Initial program 100.0%

                    \[x \cdot e^{y \cdot y} \]
                  2. Add Preprocessing
                  3. Taylor expanded in y around 0

                    \[\leadsto \color{blue}{x + x \cdot {y}^{2}} \]
                  4. Step-by-step derivation
                    1. +-commutativeN/A

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

                      \[\leadsto \color{blue}{{y}^{2} \cdot x} + x \]
                    3. lower-fma.f64N/A

                      \[\leadsto \color{blue}{\mathsf{fma}\left({y}^{2}, x, x\right)} \]
                    4. unpow2N/A

                      \[\leadsto \mathsf{fma}\left(\color{blue}{y \cdot y}, x, x\right) \]
                    5. lower-*.f6496.8

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

                    \[\leadsto \color{blue}{\mathsf{fma}\left(y \cdot y, x, x\right)} \]
                  6. Step-by-step derivation
                    1. Applied rewrites96.8%

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

                    if 1e17 < (*.f64 y y)

                    1. Initial program 100.0%

                      \[x \cdot e^{y \cdot y} \]
                    2. Add Preprocessing
                    3. Taylor expanded in y around 0

                      \[\leadsto \color{blue}{x + x \cdot {y}^{2}} \]
                    4. Step-by-step derivation
                      1. +-commutativeN/A

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

                        \[\leadsto \color{blue}{{y}^{2} \cdot x} + x \]
                      3. lower-fma.f64N/A

                        \[\leadsto \color{blue}{\mathsf{fma}\left({y}^{2}, x, x\right)} \]
                      4. unpow2N/A

                        \[\leadsto \mathsf{fma}\left(\color{blue}{y \cdot y}, x, x\right) \]
                      5. lower-*.f6461.0

                        \[\leadsto \mathsf{fma}\left(\color{blue}{y \cdot y}, x, x\right) \]
                    5. Applied rewrites61.0%

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

                      \[\leadsto x \cdot \color{blue}{{y}^{2}} \]
                    7. Step-by-step derivation
                      1. Applied rewrites61.0%

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

                    Alternative 10: 81.8% accurate, 5.0× speedup?

                    \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;y \cdot y \leq 1:\\ \;\;\;\;x \cdot 1\\ \mathbf{else}:\\ \;\;\;\;\left(y \cdot y\right) \cdot x\\ \end{array} \end{array} \]
                    (FPCore (x y)
                     :precision binary64
                     (if (<= (* y y) 1.0) (* x 1.0) (* (* y y) x)))
                    double code(double x, double y) {
                    	double tmp;
                    	if ((y * y) <= 1.0) {
                    		tmp = x * 1.0;
                    	} else {
                    		tmp = (y * y) * x;
                    	}
                    	return tmp;
                    }
                    
                    real(8) function code(x, y)
                        real(8), intent (in) :: x
                        real(8), intent (in) :: y
                        real(8) :: tmp
                        if ((y * y) <= 1.0d0) then
                            tmp = x * 1.0d0
                        else
                            tmp = (y * y) * x
                        end if
                        code = tmp
                    end function
                    
                    public static double code(double x, double y) {
                    	double tmp;
                    	if ((y * y) <= 1.0) {
                    		tmp = x * 1.0;
                    	} else {
                    		tmp = (y * y) * x;
                    	}
                    	return tmp;
                    }
                    
                    def code(x, y):
                    	tmp = 0
                    	if (y * y) <= 1.0:
                    		tmp = x * 1.0
                    	else:
                    		tmp = (y * y) * x
                    	return tmp
                    
                    function code(x, y)
                    	tmp = 0.0
                    	if (Float64(y * y) <= 1.0)
                    		tmp = Float64(x * 1.0);
                    	else
                    		tmp = Float64(Float64(y * y) * x);
                    	end
                    	return tmp
                    end
                    
                    function tmp_2 = code(x, y)
                    	tmp = 0.0;
                    	if ((y * y) <= 1.0)
                    		tmp = x * 1.0;
                    	else
                    		tmp = (y * y) * x;
                    	end
                    	tmp_2 = tmp;
                    end
                    
                    code[x_, y_] := If[LessEqual[N[(y * y), $MachinePrecision], 1.0], N[(x * 1.0), $MachinePrecision], N[(N[(y * y), $MachinePrecision] * x), $MachinePrecision]]
                    
                    \begin{array}{l}
                    
                    \\
                    \begin{array}{l}
                    \mathbf{if}\;y \cdot y \leq 1:\\
                    \;\;\;\;x \cdot 1\\
                    
                    \mathbf{else}:\\
                    \;\;\;\;\left(y \cdot y\right) \cdot x\\
                    
                    
                    \end{array}
                    \end{array}
                    
                    Derivation
                    1. Split input into 2 regimes
                    2. if (*.f64 y y) < 1

                      1. Initial program 100.0%

                        \[x \cdot e^{y \cdot y} \]
                      2. Add Preprocessing
                      3. Taylor expanded in y around 0

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

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

                        if 1 < (*.f64 y y)

                        1. Initial program 100.0%

                          \[x \cdot e^{y \cdot y} \]
                        2. Add Preprocessing
                        3. Taylor expanded in y around 0

                          \[\leadsto \color{blue}{x + x \cdot {y}^{2}} \]
                        4. Step-by-step derivation
                          1. +-commutativeN/A

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

                            \[\leadsto \color{blue}{{y}^{2} \cdot x} + x \]
                          3. lower-fma.f64N/A

                            \[\leadsto \color{blue}{\mathsf{fma}\left({y}^{2}, x, x\right)} \]
                          4. unpow2N/A

                            \[\leadsto \mathsf{fma}\left(\color{blue}{y \cdot y}, x, x\right) \]
                          5. lower-*.f6459.1

                            \[\leadsto \mathsf{fma}\left(\color{blue}{y \cdot y}, x, x\right) \]
                        5. Applied rewrites59.1%

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

                          \[\leadsto x \cdot \color{blue}{{y}^{2}} \]
                        7. Step-by-step derivation
                          1. Applied rewrites59.1%

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

                        Alternative 11: 76.2% accurate, 5.0× speedup?

                        \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;y \cdot y \leq 1:\\ \;\;\;\;x \cdot 1\\ \mathbf{else}:\\ \;\;\;\;\left(y \cdot x\right) \cdot y\\ \end{array} \end{array} \]
                        (FPCore (x y)
                         :precision binary64
                         (if (<= (* y y) 1.0) (* x 1.0) (* (* y x) y)))
                        double code(double x, double y) {
                        	double tmp;
                        	if ((y * y) <= 1.0) {
                        		tmp = x * 1.0;
                        	} else {
                        		tmp = (y * x) * y;
                        	}
                        	return tmp;
                        }
                        
                        real(8) function code(x, y)
                            real(8), intent (in) :: x
                            real(8), intent (in) :: y
                            real(8) :: tmp
                            if ((y * y) <= 1.0d0) then
                                tmp = x * 1.0d0
                            else
                                tmp = (y * x) * y
                            end if
                            code = tmp
                        end function
                        
                        public static double code(double x, double y) {
                        	double tmp;
                        	if ((y * y) <= 1.0) {
                        		tmp = x * 1.0;
                        	} else {
                        		tmp = (y * x) * y;
                        	}
                        	return tmp;
                        }
                        
                        def code(x, y):
                        	tmp = 0
                        	if (y * y) <= 1.0:
                        		tmp = x * 1.0
                        	else:
                        		tmp = (y * x) * y
                        	return tmp
                        
                        function code(x, y)
                        	tmp = 0.0
                        	if (Float64(y * y) <= 1.0)
                        		tmp = Float64(x * 1.0);
                        	else
                        		tmp = Float64(Float64(y * x) * y);
                        	end
                        	return tmp
                        end
                        
                        function tmp_2 = code(x, y)
                        	tmp = 0.0;
                        	if ((y * y) <= 1.0)
                        		tmp = x * 1.0;
                        	else
                        		tmp = (y * x) * y;
                        	end
                        	tmp_2 = tmp;
                        end
                        
                        code[x_, y_] := If[LessEqual[N[(y * y), $MachinePrecision], 1.0], N[(x * 1.0), $MachinePrecision], N[(N[(y * x), $MachinePrecision] * y), $MachinePrecision]]
                        
                        \begin{array}{l}
                        
                        \\
                        \begin{array}{l}
                        \mathbf{if}\;y \cdot y \leq 1:\\
                        \;\;\;\;x \cdot 1\\
                        
                        \mathbf{else}:\\
                        \;\;\;\;\left(y \cdot x\right) \cdot y\\
                        
                        
                        \end{array}
                        \end{array}
                        
                        Derivation
                        1. Split input into 2 regimes
                        2. if (*.f64 y y) < 1

                          1. Initial program 100.0%

                            \[x \cdot e^{y \cdot y} \]
                          2. Add Preprocessing
                          3. Taylor expanded in y around 0

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

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

                            if 1 < (*.f64 y y)

                            1. Initial program 100.0%

                              \[x \cdot e^{y \cdot y} \]
                            2. Add Preprocessing
                            3. Taylor expanded in y around 0

                              \[\leadsto \color{blue}{x + x \cdot {y}^{2}} \]
                            4. Step-by-step derivation
                              1. +-commutativeN/A

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

                                \[\leadsto \color{blue}{{y}^{2} \cdot x} + x \]
                              3. lower-fma.f64N/A

                                \[\leadsto \color{blue}{\mathsf{fma}\left({y}^{2}, x, x\right)} \]
                              4. unpow2N/A

                                \[\leadsto \mathsf{fma}\left(\color{blue}{y \cdot y}, x, x\right) \]
                              5. lower-*.f6459.1

                                \[\leadsto \mathsf{fma}\left(\color{blue}{y \cdot y}, x, x\right) \]
                            5. Applied rewrites59.1%

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

                              \[\leadsto x \cdot \color{blue}{{y}^{2}} \]
                            7. Step-by-step derivation
                              1. Applied rewrites59.1%

                                \[\leadsto \left(y \cdot y\right) \cdot \color{blue}{x} \]
                              2. Step-by-step derivation
                                1. Applied rewrites49.6%

                                  \[\leadsto \left(y \cdot x\right) \cdot y \]
                              3. Recombined 2 regimes into one program.
                              4. Add Preprocessing

                              Alternative 12: 82.1% accurate, 9.3× speedup?

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

                                \[x \cdot e^{y \cdot y} \]
                              2. Add Preprocessing
                              3. Taylor expanded in y around 0

                                \[\leadsto \color{blue}{x + x \cdot {y}^{2}} \]
                              4. Step-by-step derivation
                                1. +-commutativeN/A

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

                                  \[\leadsto \color{blue}{{y}^{2} \cdot x} + x \]
                                3. lower-fma.f64N/A

                                  \[\leadsto \color{blue}{\mathsf{fma}\left({y}^{2}, x, x\right)} \]
                                4. unpow2N/A

                                  \[\leadsto \mathsf{fma}\left(\color{blue}{y \cdot y}, x, x\right) \]
                                5. lower-*.f6481.0

                                  \[\leadsto \mathsf{fma}\left(\color{blue}{y \cdot y}, x, x\right) \]
                              5. Applied rewrites81.0%

                                \[\leadsto \color{blue}{\mathsf{fma}\left(y \cdot y, x, x\right)} \]
                              6. Add Preprocessing

                              Alternative 13: 56.6% accurate, 15.9× speedup?

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

                                \[x \cdot e^{y \cdot y} \]
                              2. Add Preprocessing
                              3. Step-by-step derivation
                                1. lift-*.f64N/A

                                  \[\leadsto x \cdot e^{\color{blue}{y \cdot y}} \]
                                2. *-rgt-identityN/A

                                  \[\leadsto x \cdot e^{y \cdot \color{blue}{\left(y \cdot 1\right)}} \]
                                3. metadata-evalN/A

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

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

                                  \[\leadsto x \cdot e^{y \cdot \left(y \cdot \left(\frac{1}{2} + \color{blue}{\frac{1}{2}}\right)\right)} \]
                                6. distribute-lft-outN/A

                                  \[\leadsto x \cdot e^{y \cdot \color{blue}{\left(y \cdot \frac{1}{2} + y \cdot \frac{1}{2}\right)}} \]
                                7. div-invN/A

                                  \[\leadsto x \cdot e^{y \cdot \left(\color{blue}{\frac{y}{2}} + y \cdot \frac{1}{2}\right)} \]
                                8. div-invN/A

                                  \[\leadsto x \cdot e^{y \cdot \left(\frac{y}{2} + \color{blue}{\frac{y}{2}}\right)} \]
                                9. flip-+N/A

                                  \[\leadsto x \cdot e^{y \cdot \color{blue}{\frac{\frac{y}{2} \cdot \frac{y}{2} - \frac{y}{2} \cdot \frac{y}{2}}{\frac{y}{2} - \frac{y}{2}}}} \]
                                10. +-inversesN/A

                                  \[\leadsto x \cdot e^{y \cdot \frac{\color{blue}{0}}{\frac{y}{2} - \frac{y}{2}}} \]
                                11. +-inversesN/A

                                  \[\leadsto x \cdot e^{y \cdot \frac{0}{\color{blue}{0}}} \]
                                12. associate-*r/N/A

                                  \[\leadsto x \cdot e^{\color{blue}{\frac{y \cdot 0}{0}}} \]
                                13. *-rgt-identityN/A

                                  \[\leadsto x \cdot e^{\frac{\color{blue}{\left(y \cdot 1\right)} \cdot 0}{0}} \]
                                14. metadata-evalN/A

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

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

                                  \[\leadsto x \cdot e^{\frac{\left(y \cdot \left(\frac{1}{2} + \color{blue}{\frac{1}{2}}\right)\right) \cdot 0}{0}} \]
                                17. distribute-lft-outN/A

                                  \[\leadsto x \cdot e^{\frac{\color{blue}{\left(y \cdot \frac{1}{2} + y \cdot \frac{1}{2}\right)} \cdot 0}{0}} \]
                                18. div-invN/A

                                  \[\leadsto x \cdot e^{\frac{\left(\color{blue}{\frac{y}{2}} + y \cdot \frac{1}{2}\right) \cdot 0}{0}} \]
                                19. div-invN/A

                                  \[\leadsto x \cdot e^{\frac{\left(\frac{y}{2} + \color{blue}{\frac{y}{2}}\right) \cdot 0}{0}} \]
                                20. +-inversesN/A

                                  \[\leadsto x \cdot e^{\frac{\left(\frac{y}{2} + \frac{y}{2}\right) \cdot \color{blue}{\left(\frac{y}{2} - \frac{y}{2}\right)}}{0}} \]
                                21. difference-of-squaresN/A

                                  \[\leadsto x \cdot e^{\frac{\color{blue}{\frac{y}{2} \cdot \frac{y}{2} - \frac{y}{2} \cdot \frac{y}{2}}}{0}} \]
                                22. +-inversesN/A

                                  \[\leadsto x \cdot e^{\frac{\frac{y}{2} \cdot \frac{y}{2} - \frac{y}{2} \cdot \frac{y}{2}}{\color{blue}{\frac{y}{2} - \frac{y}{2}}}} \]
                                23. flip-+N/A

                                  \[\leadsto x \cdot e^{\color{blue}{\frac{y}{2} + \frac{y}{2}}} \]
                                24. count-2N/A

                                  \[\leadsto x \cdot e^{\color{blue}{2 \cdot \frac{y}{2}}} \]
                              4. Applied rewrites78.2%

                                \[\leadsto x \cdot e^{\color{blue}{y}} \]
                              5. Taylor expanded in y around 0

                                \[\leadsto \color{blue}{x + x \cdot y} \]
                              6. Step-by-step derivation
                                1. +-commutativeN/A

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

                                  \[\leadsto \color{blue}{y \cdot x} + x \]
                                3. lower-fma.f6459.7

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

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

                              Alternative 14: 52.1% accurate, 18.5× speedup?

                              \[\begin{array}{l} \\ x \cdot 1 \end{array} \]
                              (FPCore (x y) :precision binary64 (* x 1.0))
                              double code(double x, double y) {
                              	return x * 1.0;
                              }
                              
                              real(8) function code(x, y)
                                  real(8), intent (in) :: x
                                  real(8), intent (in) :: y
                                  code = x * 1.0d0
                              end function
                              
                              public static double code(double x, double y) {
                              	return x * 1.0;
                              }
                              
                              def code(x, y):
                              	return x * 1.0
                              
                              function code(x, y)
                              	return Float64(x * 1.0)
                              end
                              
                              function tmp = code(x, y)
                              	tmp = x * 1.0;
                              end
                              
                              code[x_, y_] := N[(x * 1.0), $MachinePrecision]
                              
                              \begin{array}{l}
                              
                              \\
                              x \cdot 1
                              \end{array}
                              
                              Derivation
                              1. Initial program 100.0%

                                \[x \cdot e^{y \cdot y} \]
                              2. Add Preprocessing
                              3. Taylor expanded in y around 0

                                \[\leadsto x \cdot \color{blue}{1} \]
                              4. Step-by-step derivation
                                1. Applied rewrites55.5%

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

                                Developer Target 1: 100.0% accurate, 0.5× speedup?

                                \[\begin{array}{l} \\ x \cdot {\left(e^{y}\right)}^{y} \end{array} \]
                                (FPCore (x y) :precision binary64 (* x (pow (exp y) y)))
                                double code(double x, double y) {
                                	return x * pow(exp(y), y);
                                }
                                
                                real(8) function code(x, y)
                                    real(8), intent (in) :: x
                                    real(8), intent (in) :: y
                                    code = x * (exp(y) ** y)
                                end function
                                
                                public static double code(double x, double y) {
                                	return x * Math.pow(Math.exp(y), y);
                                }
                                
                                def code(x, y):
                                	return x * math.pow(math.exp(y), y)
                                
                                function code(x, y)
                                	return Float64(x * (exp(y) ^ y))
                                end
                                
                                function tmp = code(x, y)
                                	tmp = x * (exp(y) ^ y);
                                end
                                
                                code[x_, y_] := N[(x * N[Power[N[Exp[y], $MachinePrecision], y], $MachinePrecision]), $MachinePrecision]
                                
                                \begin{array}{l}
                                
                                \\
                                x \cdot {\left(e^{y}\right)}^{y}
                                \end{array}
                                

                                Reproduce

                                ?
                                herbie shell --seed 2024318 
                                (FPCore (x y)
                                  :name "Data.Number.Erf:$dmerfcx from erf-2.0.0.0"
                                  :precision binary64
                                
                                  :alt
                                  (! :herbie-platform default (* x (pow (exp y) y)))
                                
                                  (* x (exp (* y y))))