ab-angle->ABCF A

Percentage Accurate: 79.9% → 79.9%
Time: 5.2s
Alternatives: 8
Speedup: 3.1×

Specification

?
\[\begin{array}{l} \\ \begin{array}{l} t_0 := \frac{angle}{180} \cdot \pi\\ {\left(a \cdot \sin t\_0\right)}^{2} + {\left(b \cdot \cos t\_0\right)}^{2} \end{array} \end{array} \]
(FPCore (a b angle)
 :precision binary64
 (let* ((t_0 (* (/ angle 180.0) PI)))
   (+ (pow (* a (sin t_0)) 2.0) (pow (* b (cos t_0)) 2.0))))
double code(double a, double b, double angle) {
	double t_0 = (angle / 180.0) * ((double) M_PI);
	return pow((a * sin(t_0)), 2.0) + pow((b * cos(t_0)), 2.0);
}
public static double code(double a, double b, double angle) {
	double t_0 = (angle / 180.0) * Math.PI;
	return Math.pow((a * Math.sin(t_0)), 2.0) + Math.pow((b * Math.cos(t_0)), 2.0);
}
def code(a, b, angle):
	t_0 = (angle / 180.0) * math.pi
	return math.pow((a * math.sin(t_0)), 2.0) + math.pow((b * math.cos(t_0)), 2.0)
function code(a, b, angle)
	t_0 = Float64(Float64(angle / 180.0) * pi)
	return Float64((Float64(a * sin(t_0)) ^ 2.0) + (Float64(b * cos(t_0)) ^ 2.0))
end
function tmp = code(a, b, angle)
	t_0 = (angle / 180.0) * pi;
	tmp = ((a * sin(t_0)) ^ 2.0) + ((b * cos(t_0)) ^ 2.0);
end
code[a_, b_, angle_] := Block[{t$95$0 = N[(N[(angle / 180.0), $MachinePrecision] * Pi), $MachinePrecision]}, N[(N[Power[N[(a * N[Sin[t$95$0], $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision] + N[Power[N[(b * N[Cos[t$95$0], $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := \frac{angle}{180} \cdot \pi\\
{\left(a \cdot \sin t\_0\right)}^{2} + {\left(b \cdot \cos t\_0\right)}^{2}
\end{array}
\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 8 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: 79.9% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_0 := \frac{angle}{180} \cdot \pi\\ {\left(a \cdot \sin t\_0\right)}^{2} + {\left(b \cdot \cos t\_0\right)}^{2} \end{array} \end{array} \]
(FPCore (a b angle)
 :precision binary64
 (let* ((t_0 (* (/ angle 180.0) PI)))
   (+ (pow (* a (sin t_0)) 2.0) (pow (* b (cos t_0)) 2.0))))
double code(double a, double b, double angle) {
	double t_0 = (angle / 180.0) * ((double) M_PI);
	return pow((a * sin(t_0)), 2.0) + pow((b * cos(t_0)), 2.0);
}
public static double code(double a, double b, double angle) {
	double t_0 = (angle / 180.0) * Math.PI;
	return Math.pow((a * Math.sin(t_0)), 2.0) + Math.pow((b * Math.cos(t_0)), 2.0);
}
def code(a, b, angle):
	t_0 = (angle / 180.0) * math.pi
	return math.pow((a * math.sin(t_0)), 2.0) + math.pow((b * math.cos(t_0)), 2.0)
function code(a, b, angle)
	t_0 = Float64(Float64(angle / 180.0) * pi)
	return Float64((Float64(a * sin(t_0)) ^ 2.0) + (Float64(b * cos(t_0)) ^ 2.0))
end
function tmp = code(a, b, angle)
	t_0 = (angle / 180.0) * pi;
	tmp = ((a * sin(t_0)) ^ 2.0) + ((b * cos(t_0)) ^ 2.0);
end
code[a_, b_, angle_] := Block[{t$95$0 = N[(N[(angle / 180.0), $MachinePrecision] * Pi), $MachinePrecision]}, N[(N[Power[N[(a * N[Sin[t$95$0], $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision] + N[Power[N[(b * N[Cos[t$95$0], $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := \frac{angle}{180} \cdot \pi\\
{\left(a \cdot \sin t\_0\right)}^{2} + {\left(b \cdot \cos t\_0\right)}^{2}
\end{array}
\end{array}

Alternative 1: 79.9% accurate, 2.9× speedup?

\[\begin{array}{l} angle_m = \left|angle\right| \\ \begin{array}{l} \mathbf{if}\;angle\_m \leq 0.0045:\\ \;\;\;\;{\left(a \cdot \left(\left(\pi \cdot angle\_m\right) \cdot 0.005555555555555556\right)\right)}^{2} + b \cdot b\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(0.5 - 0.5 \cdot \cos \left(2 \cdot \left(\frac{angle\_m}{180} \cdot \pi\right)\right), a \cdot a, b \cdot b\right)\\ \end{array} \end{array} \]
angle_m = (fabs.f64 angle)
(FPCore (a b angle_m)
 :precision binary64
 (if (<= angle_m 0.0045)
   (+ (pow (* a (* (* PI angle_m) 0.005555555555555556)) 2.0) (* b b))
   (fma
    (- 0.5 (* 0.5 (cos (* 2.0 (* (/ angle_m 180.0) PI)))))
    (* a a)
    (* b b))))
angle_m = fabs(angle);
double code(double a, double b, double angle_m) {
	double tmp;
	if (angle_m <= 0.0045) {
		tmp = pow((a * ((((double) M_PI) * angle_m) * 0.005555555555555556)), 2.0) + (b * b);
	} else {
		tmp = fma((0.5 - (0.5 * cos((2.0 * ((angle_m / 180.0) * ((double) M_PI)))))), (a * a), (b * b));
	}
	return tmp;
}
angle_m = abs(angle)
function code(a, b, angle_m)
	tmp = 0.0
	if (angle_m <= 0.0045)
		tmp = Float64((Float64(a * Float64(Float64(pi * angle_m) * 0.005555555555555556)) ^ 2.0) + Float64(b * b));
	else
		tmp = fma(Float64(0.5 - Float64(0.5 * cos(Float64(2.0 * Float64(Float64(angle_m / 180.0) * pi))))), Float64(a * a), Float64(b * b));
	end
	return tmp
end
angle_m = N[Abs[angle], $MachinePrecision]
code[a_, b_, angle$95$m_] := If[LessEqual[angle$95$m, 0.0045], N[(N[Power[N[(a * N[(N[(Pi * angle$95$m), $MachinePrecision] * 0.005555555555555556), $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision] + N[(b * b), $MachinePrecision]), $MachinePrecision], N[(N[(0.5 - N[(0.5 * N[Cos[N[(2.0 * N[(N[(angle$95$m / 180.0), $MachinePrecision] * Pi), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(a * a), $MachinePrecision] + N[(b * b), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
angle_m = \left|angle\right|

\\
\begin{array}{l}
\mathbf{if}\;angle\_m \leq 0.0045:\\
\;\;\;\;{\left(a \cdot \left(\left(\pi \cdot angle\_m\right) \cdot 0.005555555555555556\right)\right)}^{2} + b \cdot b\\

\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(0.5 - 0.5 \cdot \cos \left(2 \cdot \left(\frac{angle\_m}{180} \cdot \pi\right)\right), a \cdot a, b \cdot b\right)\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if angle < 0.00449999999999999966

    1. Initial program 85.4%

      \[{\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + {\left(b \cdot \cos \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} \]
    2. Add Preprocessing
    3. Taylor expanded in angle around 0

      \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + \color{blue}{{b}^{2}} \]
    4. Step-by-step derivation
      1. unpow2N/A

        \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + b \cdot \color{blue}{b} \]
      2. lower-*.f6485.8

        \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + b \cdot \color{blue}{b} \]
    5. Applied rewrites85.8%

      \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + \color{blue}{b \cdot b} \]
    6. Taylor expanded in angle around 0

      \[\leadsto {\left(a \cdot \color{blue}{\left(\frac{1}{180} \cdot \left(angle \cdot \mathsf{PI}\left(\right)\right)\right)}\right)}^{2} + b \cdot b \]
    7. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto {\left(a \cdot \left(\left(angle \cdot \mathsf{PI}\left(\right)\right) \cdot \color{blue}{\frac{1}{180}}\right)\right)}^{2} + b \cdot b \]
      2. lower-*.f64N/A

        \[\leadsto {\left(a \cdot \left(\left(angle \cdot \mathsf{PI}\left(\right)\right) \cdot \color{blue}{\frac{1}{180}}\right)\right)}^{2} + b \cdot b \]
      3. *-commutativeN/A

        \[\leadsto {\left(a \cdot \left(\left(\mathsf{PI}\left(\right) \cdot angle\right) \cdot \frac{1}{180}\right)\right)}^{2} + b \cdot b \]
      4. lift-*.f64N/A

        \[\leadsto {\left(a \cdot \left(\left(\mathsf{PI}\left(\right) \cdot angle\right) \cdot \frac{1}{180}\right)\right)}^{2} + b \cdot b \]
      5. lift-PI.f6482.6

        \[\leadsto {\left(a \cdot \left(\left(\pi \cdot angle\right) \cdot 0.005555555555555556\right)\right)}^{2} + b \cdot b \]
    8. Applied rewrites82.6%

      \[\leadsto {\left(a \cdot \color{blue}{\left(\left(\pi \cdot angle\right) \cdot 0.005555555555555556\right)}\right)}^{2} + b \cdot b \]

    if 0.00449999999999999966 < angle

    1. Initial program 56.4%

      \[{\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + {\left(b \cdot \cos \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} \]
    2. Add Preprocessing
    3. Taylor expanded in angle around 0

      \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + \color{blue}{{b}^{2}} \]
    4. Step-by-step derivation
      1. unpow2N/A

        \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + b \cdot \color{blue}{b} \]
      2. lower-*.f6457.7

        \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + b \cdot \color{blue}{b} \]
    5. Applied rewrites57.7%

      \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + \color{blue}{b \cdot b} \]
    6. Step-by-step derivation
      1. lift-+.f64N/A

        \[\leadsto \color{blue}{{\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + b \cdot b} \]
    7. Applied rewrites57.7%

      \[\leadsto \color{blue}{\mathsf{fma}\left({\sin \left(\pi \cdot \frac{angle}{180}\right)}^{2}, a \cdot a, b \cdot b\right)} \]
    8. Step-by-step derivation
      1. lift-pow.f64N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{{\sin \left(\pi \cdot \frac{angle}{180}\right)}^{2}}, a \cdot a, b \cdot b\right) \]
      2. lift-sin.f64N/A

        \[\leadsto \mathsf{fma}\left({\color{blue}{\sin \left(\pi \cdot \frac{angle}{180}\right)}}^{2}, a \cdot a, b \cdot b\right) \]
      3. lift-PI.f64N/A

        \[\leadsto \mathsf{fma}\left({\sin \left(\color{blue}{\mathsf{PI}\left(\right)} \cdot \frac{angle}{180}\right)}^{2}, a \cdot a, b \cdot b\right) \]
      4. lift-*.f64N/A

        \[\leadsto \mathsf{fma}\left({\sin \color{blue}{\left(\mathsf{PI}\left(\right) \cdot \frac{angle}{180}\right)}}^{2}, a \cdot a, b \cdot b\right) \]
      5. lift-/.f64N/A

        \[\leadsto \mathsf{fma}\left({\sin \left(\mathsf{PI}\left(\right) \cdot \color{blue}{\frac{angle}{180}}\right)}^{2}, a \cdot a, b \cdot b\right) \]
      6. unpow2N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\sin \left(\mathsf{PI}\left(\right) \cdot \frac{angle}{180}\right) \cdot \sin \left(\mathsf{PI}\left(\right) \cdot \frac{angle}{180}\right)}, a \cdot a, b \cdot b\right) \]
      7. sqr-sin-aN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{1}{2} - \frac{1}{2} \cdot \cos \left(2 \cdot \left(\mathsf{PI}\left(\right) \cdot \frac{angle}{180}\right)\right)}, a \cdot a, b \cdot b\right) \]
      8. lower--.f64N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{1}{2} - \frac{1}{2} \cdot \cos \left(2 \cdot \left(\mathsf{PI}\left(\right) \cdot \frac{angle}{180}\right)\right)}, a \cdot a, b \cdot b\right) \]
      9. lower-*.f64N/A

        \[\leadsto \mathsf{fma}\left(\frac{1}{2} - \color{blue}{\frac{1}{2} \cdot \cos \left(2 \cdot \left(\mathsf{PI}\left(\right) \cdot \frac{angle}{180}\right)\right)}, a \cdot a, b \cdot b\right) \]
      10. lower-cos.f64N/A

        \[\leadsto \mathsf{fma}\left(\frac{1}{2} - \frac{1}{2} \cdot \color{blue}{\cos \left(2 \cdot \left(\mathsf{PI}\left(\right) \cdot \frac{angle}{180}\right)\right)}, a \cdot a, b \cdot b\right) \]
      11. lower-*.f64N/A

        \[\leadsto \mathsf{fma}\left(\frac{1}{2} - \frac{1}{2} \cdot \cos \color{blue}{\left(2 \cdot \left(\mathsf{PI}\left(\right) \cdot \frac{angle}{180}\right)\right)}, a \cdot a, b \cdot b\right) \]
      12. lift-/.f64N/A

        \[\leadsto \mathsf{fma}\left(\frac{1}{2} - \frac{1}{2} \cdot \cos \left(2 \cdot \left(\mathsf{PI}\left(\right) \cdot \color{blue}{\frac{angle}{180}}\right)\right), a \cdot a, b \cdot b\right) \]
      13. *-commutativeN/A

        \[\leadsto \mathsf{fma}\left(\frac{1}{2} - \frac{1}{2} \cdot \cos \left(2 \cdot \color{blue}{\left(\frac{angle}{180} \cdot \mathsf{PI}\left(\right)\right)}\right), a \cdot a, b \cdot b\right) \]
      14. lower-*.f64N/A

        \[\leadsto \mathsf{fma}\left(\frac{1}{2} - \frac{1}{2} \cdot \cos \left(2 \cdot \color{blue}{\left(\frac{angle}{180} \cdot \mathsf{PI}\left(\right)\right)}\right), a \cdot a, b \cdot b\right) \]
      15. lift-PI.f6457.7

        \[\leadsto \mathsf{fma}\left(0.5 - 0.5 \cdot \cos \left(2 \cdot \left(\frac{angle}{180} \cdot \color{blue}{\pi}\right)\right), a \cdot a, b \cdot b\right) \]
    9. Applied rewrites57.7%

      \[\leadsto \mathsf{fma}\left(\color{blue}{0.5 - 0.5 \cdot \cos \left(2 \cdot \left(\frac{angle}{180} \cdot \pi\right)\right)}, a \cdot a, b \cdot b\right) \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 2: 79.9% accurate, 1.9× speedup?

\[\begin{array}{l} angle_m = \left|angle\right| \\ {\left(a \cdot \sin \left(\frac{angle\_m}{180} \cdot \pi\right)\right)}^{2} + b \cdot b \end{array} \]
angle_m = (fabs.f64 angle)
(FPCore (a b angle_m)
 :precision binary64
 (+ (pow (* a (sin (* (/ angle_m 180.0) PI))) 2.0) (* b b)))
angle_m = fabs(angle);
double code(double a, double b, double angle_m) {
	return pow((a * sin(((angle_m / 180.0) * ((double) M_PI)))), 2.0) + (b * b);
}
angle_m = Math.abs(angle);
public static double code(double a, double b, double angle_m) {
	return Math.pow((a * Math.sin(((angle_m / 180.0) * Math.PI))), 2.0) + (b * b);
}
angle_m = math.fabs(angle)
def code(a, b, angle_m):
	return math.pow((a * math.sin(((angle_m / 180.0) * math.pi))), 2.0) + (b * b)
angle_m = abs(angle)
function code(a, b, angle_m)
	return Float64((Float64(a * sin(Float64(Float64(angle_m / 180.0) * pi))) ^ 2.0) + Float64(b * b))
end
angle_m = abs(angle);
function tmp = code(a, b, angle_m)
	tmp = ((a * sin(((angle_m / 180.0) * pi))) ^ 2.0) + (b * b);
end
angle_m = N[Abs[angle], $MachinePrecision]
code[a_, b_, angle$95$m_] := N[(N[Power[N[(a * N[Sin[N[(N[(angle$95$m / 180.0), $MachinePrecision] * Pi), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision] + N[(b * b), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
angle_m = \left|angle\right|

\\
{\left(a \cdot \sin \left(\frac{angle\_m}{180} \cdot \pi\right)\right)}^{2} + b \cdot b
\end{array}
Derivation
  1. Initial program 78.1%

    \[{\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + {\left(b \cdot \cos \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} \]
  2. Add Preprocessing
  3. Taylor expanded in angle around 0

    \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + \color{blue}{{b}^{2}} \]
  4. Step-by-step derivation
    1. unpow2N/A

      \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + b \cdot \color{blue}{b} \]
    2. lower-*.f6478.8

      \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + b \cdot \color{blue}{b} \]
  5. Applied rewrites78.8%

    \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + \color{blue}{b \cdot b} \]
  6. Add Preprocessing

Alternative 3: 79.9% accurate, 2.0× speedup?

\[\begin{array}{l} angle_m = \left|angle\right| \\ {\left(a \cdot \sin \left(\left(0.005555555555555556 \cdot angle\_m\right) \cdot \pi\right)\right)}^{2} + b \cdot b \end{array} \]
angle_m = (fabs.f64 angle)
(FPCore (a b angle_m)
 :precision binary64
 (+ (pow (* a (sin (* (* 0.005555555555555556 angle_m) PI))) 2.0) (* b b)))
angle_m = fabs(angle);
double code(double a, double b, double angle_m) {
	return pow((a * sin(((0.005555555555555556 * angle_m) * ((double) M_PI)))), 2.0) + (b * b);
}
angle_m = Math.abs(angle);
public static double code(double a, double b, double angle_m) {
	return Math.pow((a * Math.sin(((0.005555555555555556 * angle_m) * Math.PI))), 2.0) + (b * b);
}
angle_m = math.fabs(angle)
def code(a, b, angle_m):
	return math.pow((a * math.sin(((0.005555555555555556 * angle_m) * math.pi))), 2.0) + (b * b)
angle_m = abs(angle)
function code(a, b, angle_m)
	return Float64((Float64(a * sin(Float64(Float64(0.005555555555555556 * angle_m) * pi))) ^ 2.0) + Float64(b * b))
end
angle_m = abs(angle);
function tmp = code(a, b, angle_m)
	tmp = ((a * sin(((0.005555555555555556 * angle_m) * pi))) ^ 2.0) + (b * b);
end
angle_m = N[Abs[angle], $MachinePrecision]
code[a_, b_, angle$95$m_] := N[(N[Power[N[(a * N[Sin[N[(N[(0.005555555555555556 * angle$95$m), $MachinePrecision] * Pi), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision] + N[(b * b), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
angle_m = \left|angle\right|

\\
{\left(a \cdot \sin \left(\left(0.005555555555555556 \cdot angle\_m\right) \cdot \pi\right)\right)}^{2} + b \cdot b
\end{array}
Derivation
  1. Initial program 78.1%

    \[{\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + {\left(b \cdot \cos \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} \]
  2. Add Preprocessing
  3. Taylor expanded in angle around 0

    \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + \color{blue}{{b}^{2}} \]
  4. Step-by-step derivation
    1. unpow2N/A

      \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + b \cdot \color{blue}{b} \]
    2. lower-*.f6478.8

      \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + b \cdot \color{blue}{b} \]
  5. Applied rewrites78.8%

    \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + \color{blue}{b \cdot b} \]
  6. Taylor expanded in angle around 0

    \[\leadsto {\left(a \cdot \sin \left(\color{blue}{\left(\frac{1}{180} \cdot angle\right)} \cdot \pi\right)\right)}^{2} + b \cdot b \]
  7. Step-by-step derivation
    1. lower-*.f6478.8

      \[\leadsto {\left(a \cdot \sin \left(\left(0.005555555555555556 \cdot \color{blue}{angle}\right) \cdot \pi\right)\right)}^{2} + b \cdot b \]
  8. Applied rewrites78.8%

    \[\leadsto {\left(a \cdot \sin \left(\color{blue}{\left(0.005555555555555556 \cdot angle\right)} \cdot \pi\right)\right)}^{2} + b \cdot b \]
  9. Add Preprocessing

Alternative 4: 79.9% accurate, 3.1× speedup?

\[\begin{array}{l} angle_m = \left|angle\right| \\ \begin{array}{l} \mathbf{if}\;angle\_m \leq 0.0045:\\ \;\;\;\;{\left(a \cdot \left(\left(\pi \cdot angle\_m\right) \cdot 0.005555555555555556\right)\right)}^{2} + b \cdot b\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(0.5 - 0.5 \cdot \cos \left(2 \cdot \left(\left(0.005555555555555556 \cdot angle\_m\right) \cdot \pi\right)\right), a \cdot a, b \cdot b\right)\\ \end{array} \end{array} \]
angle_m = (fabs.f64 angle)
(FPCore (a b angle_m)
 :precision binary64
 (if (<= angle_m 0.0045)
   (+ (pow (* a (* (* PI angle_m) 0.005555555555555556)) 2.0) (* b b))
   (fma
    (- 0.5 (* 0.5 (cos (* 2.0 (* (* 0.005555555555555556 angle_m) PI)))))
    (* a a)
    (* b b))))
angle_m = fabs(angle);
double code(double a, double b, double angle_m) {
	double tmp;
	if (angle_m <= 0.0045) {
		tmp = pow((a * ((((double) M_PI) * angle_m) * 0.005555555555555556)), 2.0) + (b * b);
	} else {
		tmp = fma((0.5 - (0.5 * cos((2.0 * ((0.005555555555555556 * angle_m) * ((double) M_PI)))))), (a * a), (b * b));
	}
	return tmp;
}
angle_m = abs(angle)
function code(a, b, angle_m)
	tmp = 0.0
	if (angle_m <= 0.0045)
		tmp = Float64((Float64(a * Float64(Float64(pi * angle_m) * 0.005555555555555556)) ^ 2.0) + Float64(b * b));
	else
		tmp = fma(Float64(0.5 - Float64(0.5 * cos(Float64(2.0 * Float64(Float64(0.005555555555555556 * angle_m) * pi))))), Float64(a * a), Float64(b * b));
	end
	return tmp
end
angle_m = N[Abs[angle], $MachinePrecision]
code[a_, b_, angle$95$m_] := If[LessEqual[angle$95$m, 0.0045], N[(N[Power[N[(a * N[(N[(Pi * angle$95$m), $MachinePrecision] * 0.005555555555555556), $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision] + N[(b * b), $MachinePrecision]), $MachinePrecision], N[(N[(0.5 - N[(0.5 * N[Cos[N[(2.0 * N[(N[(0.005555555555555556 * angle$95$m), $MachinePrecision] * Pi), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(a * a), $MachinePrecision] + N[(b * b), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
angle_m = \left|angle\right|

\\
\begin{array}{l}
\mathbf{if}\;angle\_m \leq 0.0045:\\
\;\;\;\;{\left(a \cdot \left(\left(\pi \cdot angle\_m\right) \cdot 0.005555555555555556\right)\right)}^{2} + b \cdot b\\

\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(0.5 - 0.5 \cdot \cos \left(2 \cdot \left(\left(0.005555555555555556 \cdot angle\_m\right) \cdot \pi\right)\right), a \cdot a, b \cdot b\right)\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if angle < 0.00449999999999999966

    1. Initial program 85.4%

      \[{\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + {\left(b \cdot \cos \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} \]
    2. Add Preprocessing
    3. Taylor expanded in angle around 0

      \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + \color{blue}{{b}^{2}} \]
    4. Step-by-step derivation
      1. unpow2N/A

        \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + b \cdot \color{blue}{b} \]
      2. lower-*.f6485.8

        \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + b \cdot \color{blue}{b} \]
    5. Applied rewrites85.8%

      \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + \color{blue}{b \cdot b} \]
    6. Taylor expanded in angle around 0

      \[\leadsto {\left(a \cdot \color{blue}{\left(\frac{1}{180} \cdot \left(angle \cdot \mathsf{PI}\left(\right)\right)\right)}\right)}^{2} + b \cdot b \]
    7. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto {\left(a \cdot \left(\left(angle \cdot \mathsf{PI}\left(\right)\right) \cdot \color{blue}{\frac{1}{180}}\right)\right)}^{2} + b \cdot b \]
      2. lower-*.f64N/A

        \[\leadsto {\left(a \cdot \left(\left(angle \cdot \mathsf{PI}\left(\right)\right) \cdot \color{blue}{\frac{1}{180}}\right)\right)}^{2} + b \cdot b \]
      3. *-commutativeN/A

        \[\leadsto {\left(a \cdot \left(\left(\mathsf{PI}\left(\right) \cdot angle\right) \cdot \frac{1}{180}\right)\right)}^{2} + b \cdot b \]
      4. lift-*.f64N/A

        \[\leadsto {\left(a \cdot \left(\left(\mathsf{PI}\left(\right) \cdot angle\right) \cdot \frac{1}{180}\right)\right)}^{2} + b \cdot b \]
      5. lift-PI.f6482.6

        \[\leadsto {\left(a \cdot \left(\left(\pi \cdot angle\right) \cdot 0.005555555555555556\right)\right)}^{2} + b \cdot b \]
    8. Applied rewrites82.6%

      \[\leadsto {\left(a \cdot \color{blue}{\left(\left(\pi \cdot angle\right) \cdot 0.005555555555555556\right)}\right)}^{2} + b \cdot b \]

    if 0.00449999999999999966 < angle

    1. Initial program 56.4%

      \[{\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + {\left(b \cdot \cos \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} \]
    2. Add Preprocessing
    3. Taylor expanded in angle around 0

      \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + \color{blue}{{b}^{2}} \]
    4. Step-by-step derivation
      1. unpow2N/A

        \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + b \cdot \color{blue}{b} \]
      2. lower-*.f6457.7

        \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + b \cdot \color{blue}{b} \]
    5. Applied rewrites57.7%

      \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + \color{blue}{b \cdot b} \]
    6. Step-by-step derivation
      1. lift-+.f64N/A

        \[\leadsto \color{blue}{{\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + b \cdot b} \]
    7. Applied rewrites57.7%

      \[\leadsto \color{blue}{\mathsf{fma}\left({\sin \left(\pi \cdot \frac{angle}{180}\right)}^{2}, a \cdot a, b \cdot b\right)} \]
    8. Taylor expanded in angle around inf

      \[\leadsto \mathsf{fma}\left(\color{blue}{{\sin \left(\frac{1}{180} \cdot \left(angle \cdot \mathsf{PI}\left(\right)\right)\right)}^{2}}, a \cdot a, b \cdot b\right) \]
    9. Step-by-step derivation
      1. lower-pow.f64N/A

        \[\leadsto \mathsf{fma}\left({\sin \left(\frac{1}{180} \cdot \left(angle \cdot \mathsf{PI}\left(\right)\right)\right)}^{\color{blue}{2}}, a \cdot a, b \cdot b\right) \]
      2. lower-sin.f64N/A

        \[\leadsto \mathsf{fma}\left({\sin \left(\frac{1}{180} \cdot \left(angle \cdot \mathsf{PI}\left(\right)\right)\right)}^{2}, a \cdot a, b \cdot b\right) \]
      3. *-commutativeN/A

        \[\leadsto \mathsf{fma}\left({\sin \left(\frac{1}{180} \cdot \left(\mathsf{PI}\left(\right) \cdot angle\right)\right)}^{2}, a \cdot a, b \cdot b\right) \]
      4. lift-*.f64N/A

        \[\leadsto \mathsf{fma}\left({\sin \left(\frac{1}{180} \cdot \left(\mathsf{PI}\left(\right) \cdot angle\right)\right)}^{2}, a \cdot a, b \cdot b\right) \]
      5. lift-PI.f64N/A

        \[\leadsto \mathsf{fma}\left({\sin \left(\frac{1}{180} \cdot \left(\pi \cdot angle\right)\right)}^{2}, a \cdot a, b \cdot b\right) \]
      6. *-commutativeN/A

        \[\leadsto \mathsf{fma}\left({\sin \left(\left(\pi \cdot angle\right) \cdot \frac{1}{180}\right)}^{2}, a \cdot a, b \cdot b\right) \]
      7. lift-*.f6458.0

        \[\leadsto \mathsf{fma}\left({\sin \left(\left(\pi \cdot angle\right) \cdot 0.005555555555555556\right)}^{2}, a \cdot a, b \cdot b\right) \]
    10. Applied rewrites58.0%

      \[\leadsto \mathsf{fma}\left(\color{blue}{{\sin \left(\left(\pi \cdot angle\right) \cdot 0.005555555555555556\right)}^{2}}, a \cdot a, b \cdot b\right) \]
    11. Step-by-step derivation
      1. lift-pow.f64N/A

        \[\leadsto \mathsf{fma}\left({\sin \left(\left(\pi \cdot angle\right) \cdot \frac{1}{180}\right)}^{\color{blue}{2}}, a \cdot a, b \cdot b\right) \]
      2. lift-sin.f64N/A

        \[\leadsto \mathsf{fma}\left({\sin \left(\left(\pi \cdot angle\right) \cdot \frac{1}{180}\right)}^{2}, a \cdot a, b \cdot b\right) \]
      3. lift-*.f64N/A

        \[\leadsto \mathsf{fma}\left({\sin \left(\left(\pi \cdot angle\right) \cdot \frac{1}{180}\right)}^{2}, a \cdot a, b \cdot b\right) \]
      4. lift-PI.f64N/A

        \[\leadsto \mathsf{fma}\left({\sin \left(\left(\mathsf{PI}\left(\right) \cdot angle\right) \cdot \frac{1}{180}\right)}^{2}, a \cdot a, b \cdot b\right) \]
      5. lift-*.f64N/A

        \[\leadsto \mathsf{fma}\left({\sin \left(\left(\mathsf{PI}\left(\right) \cdot angle\right) \cdot \frac{1}{180}\right)}^{2}, a \cdot a, b \cdot b\right) \]
      6. *-commutativeN/A

        \[\leadsto \mathsf{fma}\left({\sin \left(\left(angle \cdot \mathsf{PI}\left(\right)\right) \cdot \frac{1}{180}\right)}^{2}, a \cdot a, b \cdot b\right) \]
      7. *-commutativeN/A

        \[\leadsto \mathsf{fma}\left({\sin \left(\frac{1}{180} \cdot \left(angle \cdot \mathsf{PI}\left(\right)\right)\right)}^{2}, a \cdot a, b \cdot b\right) \]
      8. unpow2N/A

        \[\leadsto \mathsf{fma}\left(\sin \left(\frac{1}{180} \cdot \left(angle \cdot \mathsf{PI}\left(\right)\right)\right) \cdot \color{blue}{\sin \left(\frac{1}{180} \cdot \left(angle \cdot \mathsf{PI}\left(\right)\right)\right)}, a \cdot a, b \cdot b\right) \]
      9. sqr-sin-aN/A

        \[\leadsto \mathsf{fma}\left(\frac{1}{2} - \color{blue}{\frac{1}{2} \cdot \cos \left(2 \cdot \left(\frac{1}{180} \cdot \left(angle \cdot \mathsf{PI}\left(\right)\right)\right)\right)}, a \cdot a, b \cdot b\right) \]
      10. lower--.f64N/A

        \[\leadsto \mathsf{fma}\left(\frac{1}{2} - \color{blue}{\frac{1}{2} \cdot \cos \left(2 \cdot \left(\frac{1}{180} \cdot \left(angle \cdot \mathsf{PI}\left(\right)\right)\right)\right)}, a \cdot a, b \cdot b\right) \]
      11. lower-*.f64N/A

        \[\leadsto \mathsf{fma}\left(\frac{1}{2} - \frac{1}{2} \cdot \color{blue}{\cos \left(2 \cdot \left(\frac{1}{180} \cdot \left(angle \cdot \mathsf{PI}\left(\right)\right)\right)\right)}, a \cdot a, b \cdot b\right) \]
      12. lower-cos.f64N/A

        \[\leadsto \mathsf{fma}\left(\frac{1}{2} - \frac{1}{2} \cdot \cos \left(2 \cdot \left(\frac{1}{180} \cdot \left(angle \cdot \mathsf{PI}\left(\right)\right)\right)\right), a \cdot a, b \cdot b\right) \]
      13. lower-*.f64N/A

        \[\leadsto \mathsf{fma}\left(\frac{1}{2} - \frac{1}{2} \cdot \cos \left(2 \cdot \left(\frac{1}{180} \cdot \left(angle \cdot \mathsf{PI}\left(\right)\right)\right)\right), a \cdot a, b \cdot b\right) \]
      14. associate-*r*N/A

        \[\leadsto \mathsf{fma}\left(\frac{1}{2} - \frac{1}{2} \cdot \cos \left(2 \cdot \left(\left(\frac{1}{180} \cdot angle\right) \cdot \mathsf{PI}\left(\right)\right)\right), a \cdot a, b \cdot b\right) \]
      15. lift-*.f64N/A

        \[\leadsto \mathsf{fma}\left(\frac{1}{2} - \frac{1}{2} \cdot \cos \left(2 \cdot \left(\left(\frac{1}{180} \cdot angle\right) \cdot \mathsf{PI}\left(\right)\right)\right), a \cdot a, b \cdot b\right) \]
      16. lift-*.f64N/A

        \[\leadsto \mathsf{fma}\left(\frac{1}{2} - \frac{1}{2} \cdot \cos \left(2 \cdot \left(\left(\frac{1}{180} \cdot angle\right) \cdot \mathsf{PI}\left(\right)\right)\right), a \cdot a, b \cdot b\right) \]
      17. lift-PI.f6457.9

        \[\leadsto \mathsf{fma}\left(0.5 - 0.5 \cdot \cos \left(2 \cdot \left(\left(0.005555555555555556 \cdot angle\right) \cdot \pi\right)\right), a \cdot a, b \cdot b\right) \]
    12. Applied rewrites57.9%

      \[\leadsto \mathsf{fma}\left(0.5 - \color{blue}{0.5 \cdot \cos \left(2 \cdot \left(\left(0.005555555555555556 \cdot angle\right) \cdot \pi\right)\right)}, a \cdot a, b \cdot b\right) \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 5: 66.9% accurate, 3.4× speedup?

\[\begin{array}{l} angle_m = \left|angle\right| \\ \begin{array}{l} \mathbf{if}\;a \leq 1.05 \cdot 10^{-8}:\\ \;\;\;\;b \cdot b\\ \mathbf{else}:\\ \;\;\;\;{\left(a \cdot \left(\left(\pi \cdot angle\_m\right) \cdot 0.005555555555555556\right)\right)}^{2} + b \cdot b\\ \end{array} \end{array} \]
angle_m = (fabs.f64 angle)
(FPCore (a b angle_m)
 :precision binary64
 (if (<= a 1.05e-8)
   (* b b)
   (+ (pow (* a (* (* PI angle_m) 0.005555555555555556)) 2.0) (* b b))))
angle_m = fabs(angle);
double code(double a, double b, double angle_m) {
	double tmp;
	if (a <= 1.05e-8) {
		tmp = b * b;
	} else {
		tmp = pow((a * ((((double) M_PI) * angle_m) * 0.005555555555555556)), 2.0) + (b * b);
	}
	return tmp;
}
angle_m = Math.abs(angle);
public static double code(double a, double b, double angle_m) {
	double tmp;
	if (a <= 1.05e-8) {
		tmp = b * b;
	} else {
		tmp = Math.pow((a * ((Math.PI * angle_m) * 0.005555555555555556)), 2.0) + (b * b);
	}
	return tmp;
}
angle_m = math.fabs(angle)
def code(a, b, angle_m):
	tmp = 0
	if a <= 1.05e-8:
		tmp = b * b
	else:
		tmp = math.pow((a * ((math.pi * angle_m) * 0.005555555555555556)), 2.0) + (b * b)
	return tmp
angle_m = abs(angle)
function code(a, b, angle_m)
	tmp = 0.0
	if (a <= 1.05e-8)
		tmp = Float64(b * b);
	else
		tmp = Float64((Float64(a * Float64(Float64(pi * angle_m) * 0.005555555555555556)) ^ 2.0) + Float64(b * b));
	end
	return tmp
end
angle_m = abs(angle);
function tmp_2 = code(a, b, angle_m)
	tmp = 0.0;
	if (a <= 1.05e-8)
		tmp = b * b;
	else
		tmp = ((a * ((pi * angle_m) * 0.005555555555555556)) ^ 2.0) + (b * b);
	end
	tmp_2 = tmp;
end
angle_m = N[Abs[angle], $MachinePrecision]
code[a_, b_, angle$95$m_] := If[LessEqual[a, 1.05e-8], N[(b * b), $MachinePrecision], N[(N[Power[N[(a * N[(N[(Pi * angle$95$m), $MachinePrecision] * 0.005555555555555556), $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision] + N[(b * b), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
angle_m = \left|angle\right|

\\
\begin{array}{l}
\mathbf{if}\;a \leq 1.05 \cdot 10^{-8}:\\
\;\;\;\;b \cdot b\\

\mathbf{else}:\\
\;\;\;\;{\left(a \cdot \left(\left(\pi \cdot angle\_m\right) \cdot 0.005555555555555556\right)\right)}^{2} + b \cdot b\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if a < 1.04999999999999997e-8

    1. Initial program 77.1%

      \[{\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + {\left(b \cdot \cos \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} \]
    2. Add Preprocessing
    3. Taylor expanded in angle around 0

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

        \[\leadsto b \cdot \color{blue}{b} \]
      2. lower-*.f6460.5

        \[\leadsto b \cdot \color{blue}{b} \]
    5. Applied rewrites60.5%

      \[\leadsto \color{blue}{b \cdot b} \]

    if 1.04999999999999997e-8 < a

    1. Initial program 80.7%

      \[{\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + {\left(b \cdot \cos \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} \]
    2. Add Preprocessing
    3. Taylor expanded in angle around 0

      \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + \color{blue}{{b}^{2}} \]
    4. Step-by-step derivation
      1. unpow2N/A

        \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + b \cdot \color{blue}{b} \]
      2. lower-*.f6480.8

        \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + b \cdot \color{blue}{b} \]
    5. Applied rewrites80.8%

      \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + \color{blue}{b \cdot b} \]
    6. Taylor expanded in angle around 0

      \[\leadsto {\left(a \cdot \color{blue}{\left(\frac{1}{180} \cdot \left(angle \cdot \mathsf{PI}\left(\right)\right)\right)}\right)}^{2} + b \cdot b \]
    7. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto {\left(a \cdot \left(\left(angle \cdot \mathsf{PI}\left(\right)\right) \cdot \color{blue}{\frac{1}{180}}\right)\right)}^{2} + b \cdot b \]
      2. lower-*.f64N/A

        \[\leadsto {\left(a \cdot \left(\left(angle \cdot \mathsf{PI}\left(\right)\right) \cdot \color{blue}{\frac{1}{180}}\right)\right)}^{2} + b \cdot b \]
      3. *-commutativeN/A

        \[\leadsto {\left(a \cdot \left(\left(\mathsf{PI}\left(\right) \cdot angle\right) \cdot \frac{1}{180}\right)\right)}^{2} + b \cdot b \]
      4. lift-*.f64N/A

        \[\leadsto {\left(a \cdot \left(\left(\mathsf{PI}\left(\right) \cdot angle\right) \cdot \frac{1}{180}\right)\right)}^{2} + b \cdot b \]
      5. lift-PI.f6478.1

        \[\leadsto {\left(a \cdot \left(\left(\pi \cdot angle\right) \cdot 0.005555555555555556\right)\right)}^{2} + b \cdot b \]
    8. Applied rewrites78.1%

      \[\leadsto {\left(a \cdot \color{blue}{\left(\left(\pi \cdot angle\right) \cdot 0.005555555555555556\right)}\right)}^{2} + b \cdot b \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 6: 66.9% accurate, 9.3× speedup?

\[\begin{array}{l} angle_m = \left|angle\right| \\ \begin{array}{l} \mathbf{if}\;a \leq 1.05 \cdot 10^{-8}:\\ \;\;\;\;b \cdot b\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(\left(\left(\pi \cdot angle\_m\right) \cdot a\right) \cdot 0.005555555555555556, \left(\left(a \cdot angle\_m\right) \cdot \pi\right) \cdot 0.005555555555555556, b \cdot b\right)\\ \end{array} \end{array} \]
angle_m = (fabs.f64 angle)
(FPCore (a b angle_m)
 :precision binary64
 (if (<= a 1.05e-8)
   (* b b)
   (fma
    (* (* (* PI angle_m) a) 0.005555555555555556)
    (* (* (* a angle_m) PI) 0.005555555555555556)
    (* b b))))
angle_m = fabs(angle);
double code(double a, double b, double angle_m) {
	double tmp;
	if (a <= 1.05e-8) {
		tmp = b * b;
	} else {
		tmp = fma((((((double) M_PI) * angle_m) * a) * 0.005555555555555556), (((a * angle_m) * ((double) M_PI)) * 0.005555555555555556), (b * b));
	}
	return tmp;
}
angle_m = abs(angle)
function code(a, b, angle_m)
	tmp = 0.0
	if (a <= 1.05e-8)
		tmp = Float64(b * b);
	else
		tmp = fma(Float64(Float64(Float64(pi * angle_m) * a) * 0.005555555555555556), Float64(Float64(Float64(a * angle_m) * pi) * 0.005555555555555556), Float64(b * b));
	end
	return tmp
end
angle_m = N[Abs[angle], $MachinePrecision]
code[a_, b_, angle$95$m_] := If[LessEqual[a, 1.05e-8], N[(b * b), $MachinePrecision], N[(N[(N[(N[(Pi * angle$95$m), $MachinePrecision] * a), $MachinePrecision] * 0.005555555555555556), $MachinePrecision] * N[(N[(N[(a * angle$95$m), $MachinePrecision] * Pi), $MachinePrecision] * 0.005555555555555556), $MachinePrecision] + N[(b * b), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
angle_m = \left|angle\right|

\\
\begin{array}{l}
\mathbf{if}\;a \leq 1.05 \cdot 10^{-8}:\\
\;\;\;\;b \cdot b\\

\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(\left(\left(\pi \cdot angle\_m\right) \cdot a\right) \cdot 0.005555555555555556, \left(\left(a \cdot angle\_m\right) \cdot \pi\right) \cdot 0.005555555555555556, b \cdot b\right)\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if a < 1.04999999999999997e-8

    1. Initial program 77.1%

      \[{\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + {\left(b \cdot \cos \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} \]
    2. Add Preprocessing
    3. Taylor expanded in angle around 0

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

        \[\leadsto b \cdot \color{blue}{b} \]
      2. lower-*.f6460.5

        \[\leadsto b \cdot \color{blue}{b} \]
    5. Applied rewrites60.5%

      \[\leadsto \color{blue}{b \cdot b} \]

    if 1.04999999999999997e-8 < a

    1. Initial program 80.7%

      \[{\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + {\left(b \cdot \cos \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} \]
    2. Add Preprocessing
    3. Taylor expanded in angle around 0

      \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + \color{blue}{{b}^{2}} \]
    4. Step-by-step derivation
      1. unpow2N/A

        \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + b \cdot \color{blue}{b} \]
      2. lower-*.f6480.8

        \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + b \cdot \color{blue}{b} \]
    5. Applied rewrites80.8%

      \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + \color{blue}{b \cdot b} \]
    6. Taylor expanded in angle around 0

      \[\leadsto {\color{blue}{\left(\frac{1}{180} \cdot \left(a \cdot \left(angle \cdot \mathsf{PI}\left(\right)\right)\right)\right)}}^{2} + b \cdot b \]
    7. Step-by-step derivation
      1. lift-/.f64N/A

        \[\leadsto {\left(\frac{1}{180} \cdot \left(a \cdot \left(angle \cdot \mathsf{PI}\left(\right)\right)\right)\right)}^{2} + b \cdot b \]
      2. *-commutativeN/A

        \[\leadsto {\left(\frac{1}{180} \cdot \left(a \cdot \left(angle \cdot \mathsf{PI}\left(\right)\right)\right)\right)}^{2} + b \cdot b \]
      3. lift-/.f64N/A

        \[\leadsto {\left(\frac{1}{180} \cdot \left(a \cdot \left(angle \cdot \mathsf{PI}\left(\right)\right)\right)\right)}^{2} + b \cdot b \]
      4. *-commutativeN/A

        \[\leadsto {\left(\color{blue}{\frac{1}{180}} \cdot \left(a \cdot \left(angle \cdot \mathsf{PI}\left(\right)\right)\right)\right)}^{2} + b \cdot b \]
      5. *-commutativeN/A

        \[\leadsto {\left(\left(a \cdot \left(angle \cdot \mathsf{PI}\left(\right)\right)\right) \cdot \color{blue}{\frac{1}{180}}\right)}^{2} + b \cdot b \]
      6. *-commutativeN/A

        \[\leadsto {\left(\left(\left(angle \cdot \mathsf{PI}\left(\right)\right) \cdot a\right) \cdot \frac{1}{180}\right)}^{2} + b \cdot b \]
      7. *-commutativeN/A

        \[\leadsto {\left(\left(\left(\mathsf{PI}\left(\right) \cdot angle\right) \cdot a\right) \cdot \frac{1}{180}\right)}^{2} + b \cdot b \]
      8. lower-*.f64N/A

        \[\leadsto {\left(\left(\left(\mathsf{PI}\left(\right) \cdot angle\right) \cdot a\right) \cdot \color{blue}{\frac{1}{180}}\right)}^{2} + b \cdot b \]
      9. lift-*.f64N/A

        \[\leadsto {\left(\left(\left(\mathsf{PI}\left(\right) \cdot angle\right) \cdot a\right) \cdot \frac{1}{180}\right)}^{2} + b \cdot b \]
      10. lift-PI.f64N/A

        \[\leadsto {\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot \frac{1}{180}\right)}^{2} + b \cdot b \]
      11. lift-*.f6477.9

        \[\leadsto {\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot 0.005555555555555556\right)}^{2} + b \cdot b \]
    8. Applied rewrites77.9%

      \[\leadsto {\color{blue}{\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot 0.005555555555555556\right)}}^{2} + b \cdot b \]
    9. Step-by-step derivation
      1. lift-+.f64N/A

        \[\leadsto \color{blue}{{\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot \frac{1}{180}\right)}^{2} + b \cdot b} \]
      2. lift-pow.f64N/A

        \[\leadsto \color{blue}{{\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot \frac{1}{180}\right)}^{2}} + b \cdot b \]
      3. unpow2N/A

        \[\leadsto \color{blue}{\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot \frac{1}{180}\right) \cdot \left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot \frac{1}{180}\right)} + b \cdot b \]
      4. lower-fma.f6477.9

        \[\leadsto \color{blue}{\mathsf{fma}\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot 0.005555555555555556, \left(\left(\pi \cdot angle\right) \cdot a\right) \cdot 0.005555555555555556, b \cdot b\right)} \]
    10. Applied rewrites77.9%

      \[\leadsto \color{blue}{\mathsf{fma}\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot 0.005555555555555556, \left(\left(\pi \cdot angle\right) \cdot a\right) \cdot 0.005555555555555556, b \cdot b\right)} \]
    11. Step-by-step derivation
      1. lift-*.f64N/A

        \[\leadsto \mathsf{fma}\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot \frac{1}{180}, \left(\left(\pi \cdot angle\right) \cdot a\right) \cdot \frac{1}{180}, b \cdot b\right) \]
      2. lift-PI.f64N/A

        \[\leadsto \mathsf{fma}\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot \frac{1}{180}, \left(\left(\mathsf{PI}\left(\right) \cdot angle\right) \cdot a\right) \cdot \frac{1}{180}, b \cdot b\right) \]
      3. lift-*.f64N/A

        \[\leadsto \mathsf{fma}\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot \frac{1}{180}, \left(\left(\mathsf{PI}\left(\right) \cdot angle\right) \cdot a\right) \cdot \frac{1}{180}, b \cdot b\right) \]
      4. *-commutativeN/A

        \[\leadsto \mathsf{fma}\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot \frac{1}{180}, \left(\left(angle \cdot \mathsf{PI}\left(\right)\right) \cdot a\right) \cdot \frac{1}{180}, b \cdot b\right) \]
      5. *-commutativeN/A

        \[\leadsto \mathsf{fma}\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot \frac{1}{180}, \left(a \cdot \left(angle \cdot \mathsf{PI}\left(\right)\right)\right) \cdot \frac{1}{180}, b \cdot b\right) \]
      6. associate-*r*N/A

        \[\leadsto \mathsf{fma}\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot \frac{1}{180}, \left(\left(a \cdot angle\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \frac{1}{180}, b \cdot b\right) \]
      7. lower-*.f64N/A

        \[\leadsto \mathsf{fma}\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot \frac{1}{180}, \left(\left(a \cdot angle\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \frac{1}{180}, b \cdot b\right) \]
      8. lower-*.f64N/A

        \[\leadsto \mathsf{fma}\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot \frac{1}{180}, \left(\left(a \cdot angle\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \frac{1}{180}, b \cdot b\right) \]
      9. lift-PI.f6477.9

        \[\leadsto \mathsf{fma}\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot 0.005555555555555556, \left(\left(a \cdot angle\right) \cdot \pi\right) \cdot 0.005555555555555556, b \cdot b\right) \]
    12. Applied rewrites77.9%

      \[\leadsto \mathsf{fma}\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot 0.005555555555555556, \left(\left(a \cdot angle\right) \cdot \pi\right) \cdot 0.005555555555555556, b \cdot b\right) \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 7: 66.9% accurate, 9.3× speedup?

\[\begin{array}{l} angle_m = \left|angle\right| \\ \begin{array}{l} \mathbf{if}\;a \leq 1.05 \cdot 10^{-8}:\\ \;\;\;\;b \cdot b\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(\left(\left(\pi \cdot angle\_m\right) \cdot a\right) \cdot 0.005555555555555556, \left(\pi \cdot angle\_m\right) \cdot \left(a \cdot 0.005555555555555556\right), b \cdot b\right)\\ \end{array} \end{array} \]
angle_m = (fabs.f64 angle)
(FPCore (a b angle_m)
 :precision binary64
 (if (<= a 1.05e-8)
   (* b b)
   (fma
    (* (* (* PI angle_m) a) 0.005555555555555556)
    (* (* PI angle_m) (* a 0.005555555555555556))
    (* b b))))
angle_m = fabs(angle);
double code(double a, double b, double angle_m) {
	double tmp;
	if (a <= 1.05e-8) {
		tmp = b * b;
	} else {
		tmp = fma((((((double) M_PI) * angle_m) * a) * 0.005555555555555556), ((((double) M_PI) * angle_m) * (a * 0.005555555555555556)), (b * b));
	}
	return tmp;
}
angle_m = abs(angle)
function code(a, b, angle_m)
	tmp = 0.0
	if (a <= 1.05e-8)
		tmp = Float64(b * b);
	else
		tmp = fma(Float64(Float64(Float64(pi * angle_m) * a) * 0.005555555555555556), Float64(Float64(pi * angle_m) * Float64(a * 0.005555555555555556)), Float64(b * b));
	end
	return tmp
end
angle_m = N[Abs[angle], $MachinePrecision]
code[a_, b_, angle$95$m_] := If[LessEqual[a, 1.05e-8], N[(b * b), $MachinePrecision], N[(N[(N[(N[(Pi * angle$95$m), $MachinePrecision] * a), $MachinePrecision] * 0.005555555555555556), $MachinePrecision] * N[(N[(Pi * angle$95$m), $MachinePrecision] * N[(a * 0.005555555555555556), $MachinePrecision]), $MachinePrecision] + N[(b * b), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
angle_m = \left|angle\right|

\\
\begin{array}{l}
\mathbf{if}\;a \leq 1.05 \cdot 10^{-8}:\\
\;\;\;\;b \cdot b\\

\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(\left(\left(\pi \cdot angle\_m\right) \cdot a\right) \cdot 0.005555555555555556, \left(\pi \cdot angle\_m\right) \cdot \left(a \cdot 0.005555555555555556\right), b \cdot b\right)\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if a < 1.04999999999999997e-8

    1. Initial program 77.1%

      \[{\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + {\left(b \cdot \cos \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} \]
    2. Add Preprocessing
    3. Taylor expanded in angle around 0

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

        \[\leadsto b \cdot \color{blue}{b} \]
      2. lower-*.f6460.5

        \[\leadsto b \cdot \color{blue}{b} \]
    5. Applied rewrites60.5%

      \[\leadsto \color{blue}{b \cdot b} \]

    if 1.04999999999999997e-8 < a

    1. Initial program 80.7%

      \[{\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + {\left(b \cdot \cos \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} \]
    2. Add Preprocessing
    3. Taylor expanded in angle around 0

      \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + \color{blue}{{b}^{2}} \]
    4. Step-by-step derivation
      1. unpow2N/A

        \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + b \cdot \color{blue}{b} \]
      2. lower-*.f6480.8

        \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + b \cdot \color{blue}{b} \]
    5. Applied rewrites80.8%

      \[\leadsto {\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + \color{blue}{b \cdot b} \]
    6. Taylor expanded in angle around 0

      \[\leadsto {\color{blue}{\left(\frac{1}{180} \cdot \left(a \cdot \left(angle \cdot \mathsf{PI}\left(\right)\right)\right)\right)}}^{2} + b \cdot b \]
    7. Step-by-step derivation
      1. lift-/.f64N/A

        \[\leadsto {\left(\frac{1}{180} \cdot \left(a \cdot \left(angle \cdot \mathsf{PI}\left(\right)\right)\right)\right)}^{2} + b \cdot b \]
      2. *-commutativeN/A

        \[\leadsto {\left(\frac{1}{180} \cdot \left(a \cdot \left(angle \cdot \mathsf{PI}\left(\right)\right)\right)\right)}^{2} + b \cdot b \]
      3. lift-/.f64N/A

        \[\leadsto {\left(\frac{1}{180} \cdot \left(a \cdot \left(angle \cdot \mathsf{PI}\left(\right)\right)\right)\right)}^{2} + b \cdot b \]
      4. *-commutativeN/A

        \[\leadsto {\left(\color{blue}{\frac{1}{180}} \cdot \left(a \cdot \left(angle \cdot \mathsf{PI}\left(\right)\right)\right)\right)}^{2} + b \cdot b \]
      5. *-commutativeN/A

        \[\leadsto {\left(\left(a \cdot \left(angle \cdot \mathsf{PI}\left(\right)\right)\right) \cdot \color{blue}{\frac{1}{180}}\right)}^{2} + b \cdot b \]
      6. *-commutativeN/A

        \[\leadsto {\left(\left(\left(angle \cdot \mathsf{PI}\left(\right)\right) \cdot a\right) \cdot \frac{1}{180}\right)}^{2} + b \cdot b \]
      7. *-commutativeN/A

        \[\leadsto {\left(\left(\left(\mathsf{PI}\left(\right) \cdot angle\right) \cdot a\right) \cdot \frac{1}{180}\right)}^{2} + b \cdot b \]
      8. lower-*.f64N/A

        \[\leadsto {\left(\left(\left(\mathsf{PI}\left(\right) \cdot angle\right) \cdot a\right) \cdot \color{blue}{\frac{1}{180}}\right)}^{2} + b \cdot b \]
      9. lift-*.f64N/A

        \[\leadsto {\left(\left(\left(\mathsf{PI}\left(\right) \cdot angle\right) \cdot a\right) \cdot \frac{1}{180}\right)}^{2} + b \cdot b \]
      10. lift-PI.f64N/A

        \[\leadsto {\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot \frac{1}{180}\right)}^{2} + b \cdot b \]
      11. lift-*.f6477.9

        \[\leadsto {\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot 0.005555555555555556\right)}^{2} + b \cdot b \]
    8. Applied rewrites77.9%

      \[\leadsto {\color{blue}{\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot 0.005555555555555556\right)}}^{2} + b \cdot b \]
    9. Step-by-step derivation
      1. lift-+.f64N/A

        \[\leadsto \color{blue}{{\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot \frac{1}{180}\right)}^{2} + b \cdot b} \]
      2. lift-pow.f64N/A

        \[\leadsto \color{blue}{{\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot \frac{1}{180}\right)}^{2}} + b \cdot b \]
      3. unpow2N/A

        \[\leadsto \color{blue}{\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot \frac{1}{180}\right) \cdot \left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot \frac{1}{180}\right)} + b \cdot b \]
      4. lower-fma.f6477.9

        \[\leadsto \color{blue}{\mathsf{fma}\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot 0.005555555555555556, \left(\left(\pi \cdot angle\right) \cdot a\right) \cdot 0.005555555555555556, b \cdot b\right)} \]
    10. Applied rewrites77.9%

      \[\leadsto \color{blue}{\mathsf{fma}\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot 0.005555555555555556, \left(\left(\pi \cdot angle\right) \cdot a\right) \cdot 0.005555555555555556, b \cdot b\right)} \]
    11. Step-by-step derivation
      1. lift-*.f64N/A

        \[\leadsto \mathsf{fma}\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot \frac{1}{180}, \left(\left(\pi \cdot angle\right) \cdot a\right) \cdot \color{blue}{\frac{1}{180}}, b \cdot b\right) \]
      2. lift-*.f64N/A

        \[\leadsto \mathsf{fma}\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot \frac{1}{180}, \left(\left(\pi \cdot angle\right) \cdot a\right) \cdot \frac{1}{180}, b \cdot b\right) \]
      3. associate-*l*N/A

        \[\leadsto \mathsf{fma}\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot \frac{1}{180}, \left(\pi \cdot angle\right) \cdot \color{blue}{\left(a \cdot \frac{1}{180}\right)}, b \cdot b\right) \]
      4. lower-*.f64N/A

        \[\leadsto \mathsf{fma}\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot \frac{1}{180}, \left(\pi \cdot angle\right) \cdot \color{blue}{\left(a \cdot \frac{1}{180}\right)}, b \cdot b\right) \]
      5. lower-*.f6477.9

        \[\leadsto \mathsf{fma}\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot 0.005555555555555556, \left(\pi \cdot angle\right) \cdot \left(a \cdot \color{blue}{0.005555555555555556}\right), b \cdot b\right) \]
    12. Applied rewrites77.9%

      \[\leadsto \mathsf{fma}\left(\left(\left(\pi \cdot angle\right) \cdot a\right) \cdot 0.005555555555555556, \left(\pi \cdot angle\right) \cdot \color{blue}{\left(a \cdot 0.005555555555555556\right)}, b \cdot b\right) \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 8: 57.5% accurate, 74.7× speedup?

\[\begin{array}{l} angle_m = \left|angle\right| \\ b \cdot b \end{array} \]
angle_m = (fabs.f64 angle)
(FPCore (a b angle_m) :precision binary64 (* b b))
angle_m = fabs(angle);
double code(double a, double b, double angle_m) {
	return b * b;
}
angle_m =     private
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(a, b, angle_m)
use fmin_fmax_functions
    real(8), intent (in) :: a
    real(8), intent (in) :: b
    real(8), intent (in) :: angle_m
    code = b * b
end function
angle_m = Math.abs(angle);
public static double code(double a, double b, double angle_m) {
	return b * b;
}
angle_m = math.fabs(angle)
def code(a, b, angle_m):
	return b * b
angle_m = abs(angle)
function code(a, b, angle_m)
	return Float64(b * b)
end
angle_m = abs(angle);
function tmp = code(a, b, angle_m)
	tmp = b * b;
end
angle_m = N[Abs[angle], $MachinePrecision]
code[a_, b_, angle$95$m_] := N[(b * b), $MachinePrecision]
\begin{array}{l}
angle_m = \left|angle\right|

\\
b \cdot b
\end{array}
Derivation
  1. Initial program 78.1%

    \[{\left(a \cdot \sin \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} + {\left(b \cdot \cos \left(\frac{angle}{180} \cdot \pi\right)\right)}^{2} \]
  2. Add Preprocessing
  3. Taylor expanded in angle around 0

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

      \[\leadsto b \cdot \color{blue}{b} \]
    2. lower-*.f6453.0

      \[\leadsto b \cdot \color{blue}{b} \]
  5. Applied rewrites53.0%

    \[\leadsto \color{blue}{b \cdot b} \]
  6. Add Preprocessing

Reproduce

?
herbie shell --seed 2025085 
(FPCore (a b angle)
  :name "ab-angle->ABCF A"
  :precision binary64
  (+ (pow (* a (sin (* (/ angle 180.0) PI))) 2.0) (pow (* b (cos (* (/ angle 180.0) PI))) 2.0)))