Maksimov and Kolovsky, Equation (3)

Percentage Accurate: 73.3% → 99.3%
Time: 4.5s
Alternatives: 11
Speedup: 0.4×

Specification

?
\[\begin{array}{l} \\ \begin{array}{l} t_0 := \cos \left(\frac{K}{2}\right)\\ \left(\left(-2 \cdot J\right) \cdot t\_0\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot t\_0}\right)}^{2}} \end{array} \end{array} \]
(FPCore (J K U)
 :precision binary64
 (let* ((t_0 (cos (/ K 2.0))))
   (* (* (* -2.0 J) t_0) (sqrt (+ 1.0 (pow (/ U (* (* 2.0 J) t_0)) 2.0))))))
double code(double J, double K, double U) {
	double t_0 = cos((K / 2.0));
	return ((-2.0 * J) * t_0) * sqrt((1.0 + pow((U / ((2.0 * J) * t_0)), 2.0)));
}
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(j, k, u)
use fmin_fmax_functions
    real(8), intent (in) :: j
    real(8), intent (in) :: k
    real(8), intent (in) :: u
    real(8) :: t_0
    t_0 = cos((k / 2.0d0))
    code = (((-2.0d0) * j) * t_0) * sqrt((1.0d0 + ((u / ((2.0d0 * j) * t_0)) ** 2.0d0)))
end function
public static double code(double J, double K, double U) {
	double t_0 = Math.cos((K / 2.0));
	return ((-2.0 * J) * t_0) * Math.sqrt((1.0 + Math.pow((U / ((2.0 * J) * t_0)), 2.0)));
}
def code(J, K, U):
	t_0 = math.cos((K / 2.0))
	return ((-2.0 * J) * t_0) * math.sqrt((1.0 + math.pow((U / ((2.0 * J) * t_0)), 2.0)))
function code(J, K, U)
	t_0 = cos(Float64(K / 2.0))
	return Float64(Float64(Float64(-2.0 * J) * t_0) * sqrt(Float64(1.0 + (Float64(U / Float64(Float64(2.0 * J) * t_0)) ^ 2.0))))
end
function tmp = code(J, K, U)
	t_0 = cos((K / 2.0));
	tmp = ((-2.0 * J) * t_0) * sqrt((1.0 + ((U / ((2.0 * J) * t_0)) ^ 2.0)));
end
code[J_, K_, U_] := Block[{t$95$0 = N[Cos[N[(K / 2.0), $MachinePrecision]], $MachinePrecision]}, N[(N[(N[(-2.0 * J), $MachinePrecision] * t$95$0), $MachinePrecision] * N[Sqrt[N[(1.0 + N[Power[N[(U / N[(N[(2.0 * J), $MachinePrecision] * t$95$0), $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := \cos \left(\frac{K}{2}\right)\\
\left(\left(-2 \cdot J\right) \cdot t\_0\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot t\_0}\right)}^{2}}
\end{array}
\end{array}

Local Percentage Accuracy vs ?

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

Accuracy vs Speed?

Herbie found 11 alternatives:

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

Initial Program: 73.3% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_0 := \cos \left(\frac{K}{2}\right)\\ \left(\left(-2 \cdot J\right) \cdot t\_0\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot t\_0}\right)}^{2}} \end{array} \end{array} \]
(FPCore (J K U)
 :precision binary64
 (let* ((t_0 (cos (/ K 2.0))))
   (* (* (* -2.0 J) t_0) (sqrt (+ 1.0 (pow (/ U (* (* 2.0 J) t_0)) 2.0))))))
double code(double J, double K, double U) {
	double t_0 = cos((K / 2.0));
	return ((-2.0 * J) * t_0) * sqrt((1.0 + pow((U / ((2.0 * J) * t_0)), 2.0)));
}
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(j, k, u)
use fmin_fmax_functions
    real(8), intent (in) :: j
    real(8), intent (in) :: k
    real(8), intent (in) :: u
    real(8) :: t_0
    t_0 = cos((k / 2.0d0))
    code = (((-2.0d0) * j) * t_0) * sqrt((1.0d0 + ((u / ((2.0d0 * j) * t_0)) ** 2.0d0)))
end function
public static double code(double J, double K, double U) {
	double t_0 = Math.cos((K / 2.0));
	return ((-2.0 * J) * t_0) * Math.sqrt((1.0 + Math.pow((U / ((2.0 * J) * t_0)), 2.0)));
}
def code(J, K, U):
	t_0 = math.cos((K / 2.0))
	return ((-2.0 * J) * t_0) * math.sqrt((1.0 + math.pow((U / ((2.0 * J) * t_0)), 2.0)))
function code(J, K, U)
	t_0 = cos(Float64(K / 2.0))
	return Float64(Float64(Float64(-2.0 * J) * t_0) * sqrt(Float64(1.0 + (Float64(U / Float64(Float64(2.0 * J) * t_0)) ^ 2.0))))
end
function tmp = code(J, K, U)
	t_0 = cos((K / 2.0));
	tmp = ((-2.0 * J) * t_0) * sqrt((1.0 + ((U / ((2.0 * J) * t_0)) ^ 2.0)));
end
code[J_, K_, U_] := Block[{t$95$0 = N[Cos[N[(K / 2.0), $MachinePrecision]], $MachinePrecision]}, N[(N[(N[(-2.0 * J), $MachinePrecision] * t$95$0), $MachinePrecision] * N[Sqrt[N[(1.0 + N[Power[N[(U / N[(N[(2.0 * J), $MachinePrecision] * t$95$0), $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := \cos \left(\frac{K}{2}\right)\\
\left(\left(-2 \cdot J\right) \cdot t\_0\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot t\_0}\right)}^{2}}
\end{array}
\end{array}

Alternative 1: 99.3% accurate, 0.3× speedup?

\[\begin{array}{l} U_m = \left|U\right| \\ J\_m = \left|J\right| \\ J\_s = \mathsf{copysign}\left(1, J\right) \\ \begin{array}{l} t_0 := \cos \left(\frac{K}{2}\right)\\ t_1 := \left(\left(-2 \cdot J\_m\right) \cdot t\_0\right) \cdot \sqrt{1 + {\left(\frac{U\_m}{\left(2 \cdot J\_m\right) \cdot t\_0}\right)}^{2}}\\ J\_s \cdot \begin{array}{l} \mathbf{if}\;t\_1 \leq -\infty:\\ \;\;\;\;-U\_m\\ \mathbf{elif}\;t\_1 \leq 4 \cdot 10^{+291}:\\ \;\;\;\;t\_1\\ \mathbf{else}:\\ \;\;\;\;U\_m\\ \end{array} \end{array} \end{array} \]
U_m = (fabs.f64 U)
J\_m = (fabs.f64 J)
J\_s = (copysign.f64 #s(literal 1 binary64) J)
(FPCore (J_s J_m K U_m)
 :precision binary64
 (let* ((t_0 (cos (/ K 2.0)))
        (t_1
         (*
          (* (* -2.0 J_m) t_0)
          (sqrt (+ 1.0 (pow (/ U_m (* (* 2.0 J_m) t_0)) 2.0))))))
   (* J_s (if (<= t_1 (- INFINITY)) (- U_m) (if (<= t_1 4e+291) t_1 U_m)))))
U_m = fabs(U);
J\_m = fabs(J);
J\_s = copysign(1.0, J);
double code(double J_s, double J_m, double K, double U_m) {
	double t_0 = cos((K / 2.0));
	double t_1 = ((-2.0 * J_m) * t_0) * sqrt((1.0 + pow((U_m / ((2.0 * J_m) * t_0)), 2.0)));
	double tmp;
	if (t_1 <= -((double) INFINITY)) {
		tmp = -U_m;
	} else if (t_1 <= 4e+291) {
		tmp = t_1;
	} else {
		tmp = U_m;
	}
	return J_s * tmp;
}
U_m = Math.abs(U);
J\_m = Math.abs(J);
J\_s = Math.copySign(1.0, J);
public static double code(double J_s, double J_m, double K, double U_m) {
	double t_0 = Math.cos((K / 2.0));
	double t_1 = ((-2.0 * J_m) * t_0) * Math.sqrt((1.0 + Math.pow((U_m / ((2.0 * J_m) * t_0)), 2.0)));
	double tmp;
	if (t_1 <= -Double.POSITIVE_INFINITY) {
		tmp = -U_m;
	} else if (t_1 <= 4e+291) {
		tmp = t_1;
	} else {
		tmp = U_m;
	}
	return J_s * tmp;
}
U_m = math.fabs(U)
J\_m = math.fabs(J)
J\_s = math.copysign(1.0, J)
def code(J_s, J_m, K, U_m):
	t_0 = math.cos((K / 2.0))
	t_1 = ((-2.0 * J_m) * t_0) * math.sqrt((1.0 + math.pow((U_m / ((2.0 * J_m) * t_0)), 2.0)))
	tmp = 0
	if t_1 <= -math.inf:
		tmp = -U_m
	elif t_1 <= 4e+291:
		tmp = t_1
	else:
		tmp = U_m
	return J_s * tmp
U_m = abs(U)
J\_m = abs(J)
J\_s = copysign(1.0, J)
function code(J_s, J_m, K, U_m)
	t_0 = cos(Float64(K / 2.0))
	t_1 = Float64(Float64(Float64(-2.0 * J_m) * t_0) * sqrt(Float64(1.0 + (Float64(U_m / Float64(Float64(2.0 * J_m) * t_0)) ^ 2.0))))
	tmp = 0.0
	if (t_1 <= Float64(-Inf))
		tmp = Float64(-U_m);
	elseif (t_1 <= 4e+291)
		tmp = t_1;
	else
		tmp = U_m;
	end
	return Float64(J_s * tmp)
end
U_m = abs(U);
J\_m = abs(J);
J\_s = sign(J) * abs(1.0);
function tmp_2 = code(J_s, J_m, K, U_m)
	t_0 = cos((K / 2.0));
	t_1 = ((-2.0 * J_m) * t_0) * sqrt((1.0 + ((U_m / ((2.0 * J_m) * t_0)) ^ 2.0)));
	tmp = 0.0;
	if (t_1 <= -Inf)
		tmp = -U_m;
	elseif (t_1 <= 4e+291)
		tmp = t_1;
	else
		tmp = U_m;
	end
	tmp_2 = J_s * tmp;
end
U_m = N[Abs[U], $MachinePrecision]
J\_m = N[Abs[J], $MachinePrecision]
J\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[J]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
code[J$95$s_, J$95$m_, K_, U$95$m_] := Block[{t$95$0 = N[Cos[N[(K / 2.0), $MachinePrecision]], $MachinePrecision]}, Block[{t$95$1 = N[(N[(N[(-2.0 * J$95$m), $MachinePrecision] * t$95$0), $MachinePrecision] * N[Sqrt[N[(1.0 + N[Power[N[(U$95$m / N[(N[(2.0 * J$95$m), $MachinePrecision] * t$95$0), $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]}, N[(J$95$s * If[LessEqual[t$95$1, (-Infinity)], (-U$95$m), If[LessEqual[t$95$1, 4e+291], t$95$1, U$95$m]]), $MachinePrecision]]]
\begin{array}{l}
U_m = \left|U\right|
\\
J\_m = \left|J\right|
\\
J\_s = \mathsf{copysign}\left(1, J\right)

\\
\begin{array}{l}
t_0 := \cos \left(\frac{K}{2}\right)\\
t_1 := \left(\left(-2 \cdot J\_m\right) \cdot t\_0\right) \cdot \sqrt{1 + {\left(\frac{U\_m}{\left(2 \cdot J\_m\right) \cdot t\_0}\right)}^{2}}\\
J\_s \cdot \begin{array}{l}
\mathbf{if}\;t\_1 \leq -\infty:\\
\;\;\;\;-U\_m\\

\mathbf{elif}\;t\_1 \leq 4 \cdot 10^{+291}:\\
\;\;\;\;t\_1\\

\mathbf{else}:\\
\;\;\;\;U\_m\\


\end{array}
\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64))))) < -inf.0

    1. Initial program 5.8%

      \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
    2. Taylor expanded in J around 0

      \[\leadsto \color{blue}{-1 \cdot U} \]
    3. Step-by-step derivation
      1. mul-1-negN/A

        \[\leadsto \mathsf{neg}\left(U\right) \]
      2. lower-neg.f6499.8

        \[\leadsto -U \]
    4. Applied rewrites99.8%

      \[\leadsto \color{blue}{-U} \]

    if -inf.0 < (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64))))) < 3.9999999999999998e291

    1. Initial program 99.8%

      \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]

    if 3.9999999999999998e291 < (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64)))))

    1. Initial program 14.1%

      \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
    2. Taylor expanded in U around -inf

      \[\leadsto \color{blue}{U} \]
    3. Step-by-step derivation
      1. Applied rewrites93.0%

        \[\leadsto \color{blue}{U} \]
    4. Recombined 3 regimes into one program.
    5. Add Preprocessing

    Alternative 2: 97.2% accurate, 0.3× speedup?

    \[\begin{array}{l} U_m = \left|U\right| \\ J\_m = \left|J\right| \\ J\_s = \mathsf{copysign}\left(1, J\right) \\ \begin{array}{l} t_0 := \cos \left(\frac{K}{2}\right)\\ t_1 := \left(-2 \cdot J\_m\right) \cdot t\_0\\ t_2 := t\_1 \cdot \sqrt{1 + {\left(\frac{U\_m}{\left(2 \cdot J\_m\right) \cdot t\_0}\right)}^{2}}\\ J\_s \cdot \begin{array}{l} \mathbf{if}\;t\_2 \leq -2 \cdot 10^{+304}:\\ \;\;\;\;-U\_m\\ \mathbf{elif}\;t\_2 \leq 4 \cdot 10^{+291}:\\ \;\;\;\;t\_1 \cdot \cosh \sinh^{-1} \left(\frac{U\_m}{\left(J\_m + J\_m\right) \cdot t\_0}\right)\\ \mathbf{else}:\\ \;\;\;\;U\_m\\ \end{array} \end{array} \end{array} \]
    U_m = (fabs.f64 U)
    J\_m = (fabs.f64 J)
    J\_s = (copysign.f64 #s(literal 1 binary64) J)
    (FPCore (J_s J_m K U_m)
     :precision binary64
     (let* ((t_0 (cos (/ K 2.0)))
            (t_1 (* (* -2.0 J_m) t_0))
            (t_2 (* t_1 (sqrt (+ 1.0 (pow (/ U_m (* (* 2.0 J_m) t_0)) 2.0))))))
       (*
        J_s
        (if (<= t_2 -2e+304)
          (- U_m)
          (if (<= t_2 4e+291)
            (* t_1 (cosh (asinh (/ U_m (* (+ J_m J_m) t_0)))))
            U_m)))))
    U_m = fabs(U);
    J\_m = fabs(J);
    J\_s = copysign(1.0, J);
    double code(double J_s, double J_m, double K, double U_m) {
    	double t_0 = cos((K / 2.0));
    	double t_1 = (-2.0 * J_m) * t_0;
    	double t_2 = t_1 * sqrt((1.0 + pow((U_m / ((2.0 * J_m) * t_0)), 2.0)));
    	double tmp;
    	if (t_2 <= -2e+304) {
    		tmp = -U_m;
    	} else if (t_2 <= 4e+291) {
    		tmp = t_1 * cosh(asinh((U_m / ((J_m + J_m) * t_0))));
    	} else {
    		tmp = U_m;
    	}
    	return J_s * tmp;
    }
    
    U_m = math.fabs(U)
    J\_m = math.fabs(J)
    J\_s = math.copysign(1.0, J)
    def code(J_s, J_m, K, U_m):
    	t_0 = math.cos((K / 2.0))
    	t_1 = (-2.0 * J_m) * t_0
    	t_2 = t_1 * math.sqrt((1.0 + math.pow((U_m / ((2.0 * J_m) * t_0)), 2.0)))
    	tmp = 0
    	if t_2 <= -2e+304:
    		tmp = -U_m
    	elif t_2 <= 4e+291:
    		tmp = t_1 * math.cosh(math.asinh((U_m / ((J_m + J_m) * t_0))))
    	else:
    		tmp = U_m
    	return J_s * tmp
    
    U_m = abs(U)
    J\_m = abs(J)
    J\_s = copysign(1.0, J)
    function code(J_s, J_m, K, U_m)
    	t_0 = cos(Float64(K / 2.0))
    	t_1 = Float64(Float64(-2.0 * J_m) * t_0)
    	t_2 = Float64(t_1 * sqrt(Float64(1.0 + (Float64(U_m / Float64(Float64(2.0 * J_m) * t_0)) ^ 2.0))))
    	tmp = 0.0
    	if (t_2 <= -2e+304)
    		tmp = Float64(-U_m);
    	elseif (t_2 <= 4e+291)
    		tmp = Float64(t_1 * cosh(asinh(Float64(U_m / Float64(Float64(J_m + J_m) * t_0)))));
    	else
    		tmp = U_m;
    	end
    	return Float64(J_s * tmp)
    end
    
    U_m = abs(U);
    J\_m = abs(J);
    J\_s = sign(J) * abs(1.0);
    function tmp_2 = code(J_s, J_m, K, U_m)
    	t_0 = cos((K / 2.0));
    	t_1 = (-2.0 * J_m) * t_0;
    	t_2 = t_1 * sqrt((1.0 + ((U_m / ((2.0 * J_m) * t_0)) ^ 2.0)));
    	tmp = 0.0;
    	if (t_2 <= -2e+304)
    		tmp = -U_m;
    	elseif (t_2 <= 4e+291)
    		tmp = t_1 * cosh(asinh((U_m / ((J_m + J_m) * t_0))));
    	else
    		tmp = U_m;
    	end
    	tmp_2 = J_s * tmp;
    end
    
    U_m = N[Abs[U], $MachinePrecision]
    J\_m = N[Abs[J], $MachinePrecision]
    J\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[J]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
    code[J$95$s_, J$95$m_, K_, U$95$m_] := Block[{t$95$0 = N[Cos[N[(K / 2.0), $MachinePrecision]], $MachinePrecision]}, Block[{t$95$1 = N[(N[(-2.0 * J$95$m), $MachinePrecision] * t$95$0), $MachinePrecision]}, Block[{t$95$2 = N[(t$95$1 * N[Sqrt[N[(1.0 + N[Power[N[(U$95$m / N[(N[(2.0 * J$95$m), $MachinePrecision] * t$95$0), $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]}, N[(J$95$s * If[LessEqual[t$95$2, -2e+304], (-U$95$m), If[LessEqual[t$95$2, 4e+291], N[(t$95$1 * N[Cosh[N[ArcSinh[N[(U$95$m / N[(N[(J$95$m + J$95$m), $MachinePrecision] * t$95$0), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]], $MachinePrecision]), $MachinePrecision], U$95$m]]), $MachinePrecision]]]]
    
    \begin{array}{l}
    U_m = \left|U\right|
    \\
    J\_m = \left|J\right|
    \\
    J\_s = \mathsf{copysign}\left(1, J\right)
    
    \\
    \begin{array}{l}
    t_0 := \cos \left(\frac{K}{2}\right)\\
    t_1 := \left(-2 \cdot J\_m\right) \cdot t\_0\\
    t_2 := t\_1 \cdot \sqrt{1 + {\left(\frac{U\_m}{\left(2 \cdot J\_m\right) \cdot t\_0}\right)}^{2}}\\
    J\_s \cdot \begin{array}{l}
    \mathbf{if}\;t\_2 \leq -2 \cdot 10^{+304}:\\
    \;\;\;\;-U\_m\\
    
    \mathbf{elif}\;t\_2 \leq 4 \cdot 10^{+291}:\\
    \;\;\;\;t\_1 \cdot \cosh \sinh^{-1} \left(\frac{U\_m}{\left(J\_m + J\_m\right) \cdot t\_0}\right)\\
    
    \mathbf{else}:\\
    \;\;\;\;U\_m\\
    
    
    \end{array}
    \end{array}
    \end{array}
    
    Derivation
    1. Split input into 3 regimes
    2. if (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64))))) < -1.9999999999999999e304

      1. Initial program 8.1%

        \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
      2. Taylor expanded in J around 0

        \[\leadsto \color{blue}{-1 \cdot U} \]
      3. Step-by-step derivation
        1. mul-1-negN/A

          \[\leadsto \mathsf{neg}\left(U\right) \]
        2. lower-neg.f6497.7

          \[\leadsto -U \]
      4. Applied rewrites97.7%

        \[\leadsto \color{blue}{-U} \]

      if -1.9999999999999999e304 < (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64))))) < 3.9999999999999998e291

      1. Initial program 99.8%

        \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
      2. Step-by-step derivation
        1. lift-sqrt.f64N/A

          \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \color{blue}{\sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}}} \]
        2. lift-+.f64N/A

          \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{\color{blue}{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}}} \]
        3. lift-pow.f64N/A

          \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + \color{blue}{{\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}}} \]
        4. lift-/.f64N/A

          \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\color{blue}{\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}}^{2}} \]
        5. lift-*.f64N/A

          \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\color{blue}{\left(2 \cdot J\right)} \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
        6. lift-*.f64N/A

          \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\color{blue}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}}\right)}^{2}} \]
        7. lift-/.f64N/A

          \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \color{blue}{\left(\frac{K}{2}\right)}}\right)}^{2}} \]
        8. lift-cos.f64N/A

          \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \color{blue}{\cos \left(\frac{K}{2}\right)}}\right)}^{2}} \]
        9. +-commutativeN/A

          \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{\color{blue}{{\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2} + 1}} \]
        10. unpow2N/A

          \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{\color{blue}{\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)} \cdot \frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}} + 1} \]
        11. cosh-asinh-revN/A

          \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \color{blue}{\cosh \sinh^{-1} \left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)} \]
        12. lower-cosh.f64N/A

          \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \color{blue}{\cosh \sinh^{-1} \left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)} \]
        13. lower-asinh.f64N/A

          \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \cosh \color{blue}{\sinh^{-1} \left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)} \]
      3. Applied rewrites97.5%

        \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \color{blue}{\cosh \sinh^{-1} \left(\frac{U}{\left(J + J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)} \]

      if 3.9999999999999998e291 < (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64)))))

      1. Initial program 14.1%

        \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
      2. Taylor expanded in U around -inf

        \[\leadsto \color{blue}{U} \]
      3. Step-by-step derivation
        1. Applied rewrites93.0%

          \[\leadsto \color{blue}{U} \]
      4. Recombined 3 regimes into one program.
      5. Add Preprocessing

      Alternative 3: 90.4% accurate, 0.4× speedup?

      \[\begin{array}{l} U_m = \left|U\right| \\ J\_m = \left|J\right| \\ J\_s = \mathsf{copysign}\left(1, J\right) \\ \begin{array}{l} t_0 := \cos \left(\frac{K}{2}\right)\\ t_1 := \left(-2 \cdot J\_m\right) \cdot t\_0\\ t_2 := t\_1 \cdot \sqrt{1 + {\left(\frac{U\_m}{\left(2 \cdot J\_m\right) \cdot t\_0}\right)}^{2}}\\ J\_s \cdot \begin{array}{l} \mathbf{if}\;t\_2 \leq -\infty:\\ \;\;\;\;-U\_m\\ \mathbf{elif}\;t\_2 \leq 4 \cdot 10^{+291}:\\ \;\;\;\;t\_1 \cdot \sqrt{1 + {\left(\frac{U\_m}{J\_m + J\_m}\right)}^{2}}\\ \mathbf{else}:\\ \;\;\;\;U\_m\\ \end{array} \end{array} \end{array} \]
      U_m = (fabs.f64 U)
      J\_m = (fabs.f64 J)
      J\_s = (copysign.f64 #s(literal 1 binary64) J)
      (FPCore (J_s J_m K U_m)
       :precision binary64
       (let* ((t_0 (cos (/ K 2.0)))
              (t_1 (* (* -2.0 J_m) t_0))
              (t_2 (* t_1 (sqrt (+ 1.0 (pow (/ U_m (* (* 2.0 J_m) t_0)) 2.0))))))
         (*
          J_s
          (if (<= t_2 (- INFINITY))
            (- U_m)
            (if (<= t_2 4e+291)
              (* t_1 (sqrt (+ 1.0 (pow (/ U_m (+ J_m J_m)) 2.0))))
              U_m)))))
      U_m = fabs(U);
      J\_m = fabs(J);
      J\_s = copysign(1.0, J);
      double code(double J_s, double J_m, double K, double U_m) {
      	double t_0 = cos((K / 2.0));
      	double t_1 = (-2.0 * J_m) * t_0;
      	double t_2 = t_1 * sqrt((1.0 + pow((U_m / ((2.0 * J_m) * t_0)), 2.0)));
      	double tmp;
      	if (t_2 <= -((double) INFINITY)) {
      		tmp = -U_m;
      	} else if (t_2 <= 4e+291) {
      		tmp = t_1 * sqrt((1.0 + pow((U_m / (J_m + J_m)), 2.0)));
      	} else {
      		tmp = U_m;
      	}
      	return J_s * tmp;
      }
      
      U_m = Math.abs(U);
      J\_m = Math.abs(J);
      J\_s = Math.copySign(1.0, J);
      public static double code(double J_s, double J_m, double K, double U_m) {
      	double t_0 = Math.cos((K / 2.0));
      	double t_1 = (-2.0 * J_m) * t_0;
      	double t_2 = t_1 * Math.sqrt((1.0 + Math.pow((U_m / ((2.0 * J_m) * t_0)), 2.0)));
      	double tmp;
      	if (t_2 <= -Double.POSITIVE_INFINITY) {
      		tmp = -U_m;
      	} else if (t_2 <= 4e+291) {
      		tmp = t_1 * Math.sqrt((1.0 + Math.pow((U_m / (J_m + J_m)), 2.0)));
      	} else {
      		tmp = U_m;
      	}
      	return J_s * tmp;
      }
      
      U_m = math.fabs(U)
      J\_m = math.fabs(J)
      J\_s = math.copysign(1.0, J)
      def code(J_s, J_m, K, U_m):
      	t_0 = math.cos((K / 2.0))
      	t_1 = (-2.0 * J_m) * t_0
      	t_2 = t_1 * math.sqrt((1.0 + math.pow((U_m / ((2.0 * J_m) * t_0)), 2.0)))
      	tmp = 0
      	if t_2 <= -math.inf:
      		tmp = -U_m
      	elif t_2 <= 4e+291:
      		tmp = t_1 * math.sqrt((1.0 + math.pow((U_m / (J_m + J_m)), 2.0)))
      	else:
      		tmp = U_m
      	return J_s * tmp
      
      U_m = abs(U)
      J\_m = abs(J)
      J\_s = copysign(1.0, J)
      function code(J_s, J_m, K, U_m)
      	t_0 = cos(Float64(K / 2.0))
      	t_1 = Float64(Float64(-2.0 * J_m) * t_0)
      	t_2 = Float64(t_1 * sqrt(Float64(1.0 + (Float64(U_m / Float64(Float64(2.0 * J_m) * t_0)) ^ 2.0))))
      	tmp = 0.0
      	if (t_2 <= Float64(-Inf))
      		tmp = Float64(-U_m);
      	elseif (t_2 <= 4e+291)
      		tmp = Float64(t_1 * sqrt(Float64(1.0 + (Float64(U_m / Float64(J_m + J_m)) ^ 2.0))));
      	else
      		tmp = U_m;
      	end
      	return Float64(J_s * tmp)
      end
      
      U_m = abs(U);
      J\_m = abs(J);
      J\_s = sign(J) * abs(1.0);
      function tmp_2 = code(J_s, J_m, K, U_m)
      	t_0 = cos((K / 2.0));
      	t_1 = (-2.0 * J_m) * t_0;
      	t_2 = t_1 * sqrt((1.0 + ((U_m / ((2.0 * J_m) * t_0)) ^ 2.0)));
      	tmp = 0.0;
      	if (t_2 <= -Inf)
      		tmp = -U_m;
      	elseif (t_2 <= 4e+291)
      		tmp = t_1 * sqrt((1.0 + ((U_m / (J_m + J_m)) ^ 2.0)));
      	else
      		tmp = U_m;
      	end
      	tmp_2 = J_s * tmp;
      end
      
      U_m = N[Abs[U], $MachinePrecision]
      J\_m = N[Abs[J], $MachinePrecision]
      J\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[J]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
      code[J$95$s_, J$95$m_, K_, U$95$m_] := Block[{t$95$0 = N[Cos[N[(K / 2.0), $MachinePrecision]], $MachinePrecision]}, Block[{t$95$1 = N[(N[(-2.0 * J$95$m), $MachinePrecision] * t$95$0), $MachinePrecision]}, Block[{t$95$2 = N[(t$95$1 * N[Sqrt[N[(1.0 + N[Power[N[(U$95$m / N[(N[(2.0 * J$95$m), $MachinePrecision] * t$95$0), $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]}, N[(J$95$s * If[LessEqual[t$95$2, (-Infinity)], (-U$95$m), If[LessEqual[t$95$2, 4e+291], N[(t$95$1 * N[Sqrt[N[(1.0 + N[Power[N[(U$95$m / N[(J$95$m + J$95$m), $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], U$95$m]]), $MachinePrecision]]]]
      
      \begin{array}{l}
      U_m = \left|U\right|
      \\
      J\_m = \left|J\right|
      \\
      J\_s = \mathsf{copysign}\left(1, J\right)
      
      \\
      \begin{array}{l}
      t_0 := \cos \left(\frac{K}{2}\right)\\
      t_1 := \left(-2 \cdot J\_m\right) \cdot t\_0\\
      t_2 := t\_1 \cdot \sqrt{1 + {\left(\frac{U\_m}{\left(2 \cdot J\_m\right) \cdot t\_0}\right)}^{2}}\\
      J\_s \cdot \begin{array}{l}
      \mathbf{if}\;t\_2 \leq -\infty:\\
      \;\;\;\;-U\_m\\
      
      \mathbf{elif}\;t\_2 \leq 4 \cdot 10^{+291}:\\
      \;\;\;\;t\_1 \cdot \sqrt{1 + {\left(\frac{U\_m}{J\_m + J\_m}\right)}^{2}}\\
      
      \mathbf{else}:\\
      \;\;\;\;U\_m\\
      
      
      \end{array}
      \end{array}
      \end{array}
      
      Derivation
      1. Split input into 3 regimes
      2. if (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64))))) < -inf.0

        1. Initial program 5.8%

          \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
        2. Taylor expanded in J around 0

          \[\leadsto \color{blue}{-1 \cdot U} \]
        3. Step-by-step derivation
          1. mul-1-negN/A

            \[\leadsto \mathsf{neg}\left(U\right) \]
          2. lower-neg.f6499.8

            \[\leadsto -U \]
        4. Applied rewrites99.8%

          \[\leadsto \color{blue}{-U} \]

        if -inf.0 < (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64))))) < 3.9999999999999998e291

        1. Initial program 99.8%

          \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
        2. Taylor expanded in K around 0

          \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\color{blue}{2 \cdot J}}\right)}^{2}} \]
        3. Step-by-step derivation
          1. count-2-revN/A

            \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{J + \color{blue}{J}}\right)}^{2}} \]
          2. lower-+.f6487.3

            \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{J + \color{blue}{J}}\right)}^{2}} \]
        4. Applied rewrites87.3%

          \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\color{blue}{J + J}}\right)}^{2}} \]

        if 3.9999999999999998e291 < (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64)))))

        1. Initial program 14.1%

          \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
        2. Taylor expanded in U around -inf

          \[\leadsto \color{blue}{U} \]
        3. Step-by-step derivation
          1. Applied rewrites93.0%

            \[\leadsto \color{blue}{U} \]
        4. Recombined 3 regimes into one program.
        5. Add Preprocessing

        Alternative 4: 89.1% accurate, 0.4× speedup?

        \[\begin{array}{l} U_m = \left|U\right| \\ J\_m = \left|J\right| \\ J\_s = \mathsf{copysign}\left(1, J\right) \\ \begin{array}{l} t_0 := \cos \left(\frac{K}{2}\right)\\ t_1 := \left(-2 \cdot J\_m\right) \cdot t\_0\\ t_2 := t\_1 \cdot \sqrt{1 + {\left(\frac{U\_m}{\left(2 \cdot J\_m\right) \cdot t\_0}\right)}^{2}}\\ J\_s \cdot \begin{array}{l} \mathbf{if}\;t\_2 \leq -2 \cdot 10^{+304}:\\ \;\;\;\;-U\_m\\ \mathbf{elif}\;t\_2 \leq 4 \cdot 10^{+291}:\\ \;\;\;\;t\_1 \cdot \cosh \sinh^{-1} \left(\frac{U\_m}{2 \cdot J\_m}\right)\\ \mathbf{else}:\\ \;\;\;\;U\_m\\ \end{array} \end{array} \end{array} \]
        U_m = (fabs.f64 U)
        J\_m = (fabs.f64 J)
        J\_s = (copysign.f64 #s(literal 1 binary64) J)
        (FPCore (J_s J_m K U_m)
         :precision binary64
         (let* ((t_0 (cos (/ K 2.0)))
                (t_1 (* (* -2.0 J_m) t_0))
                (t_2 (* t_1 (sqrt (+ 1.0 (pow (/ U_m (* (* 2.0 J_m) t_0)) 2.0))))))
           (*
            J_s
            (if (<= t_2 -2e+304)
              (- U_m)
              (if (<= t_2 4e+291) (* t_1 (cosh (asinh (/ U_m (* 2.0 J_m))))) U_m)))))
        U_m = fabs(U);
        J\_m = fabs(J);
        J\_s = copysign(1.0, J);
        double code(double J_s, double J_m, double K, double U_m) {
        	double t_0 = cos((K / 2.0));
        	double t_1 = (-2.0 * J_m) * t_0;
        	double t_2 = t_1 * sqrt((1.0 + pow((U_m / ((2.0 * J_m) * t_0)), 2.0)));
        	double tmp;
        	if (t_2 <= -2e+304) {
        		tmp = -U_m;
        	} else if (t_2 <= 4e+291) {
        		tmp = t_1 * cosh(asinh((U_m / (2.0 * J_m))));
        	} else {
        		tmp = U_m;
        	}
        	return J_s * tmp;
        }
        
        U_m = math.fabs(U)
        J\_m = math.fabs(J)
        J\_s = math.copysign(1.0, J)
        def code(J_s, J_m, K, U_m):
        	t_0 = math.cos((K / 2.0))
        	t_1 = (-2.0 * J_m) * t_0
        	t_2 = t_1 * math.sqrt((1.0 + math.pow((U_m / ((2.0 * J_m) * t_0)), 2.0)))
        	tmp = 0
        	if t_2 <= -2e+304:
        		tmp = -U_m
        	elif t_2 <= 4e+291:
        		tmp = t_1 * math.cosh(math.asinh((U_m / (2.0 * J_m))))
        	else:
        		tmp = U_m
        	return J_s * tmp
        
        U_m = abs(U)
        J\_m = abs(J)
        J\_s = copysign(1.0, J)
        function code(J_s, J_m, K, U_m)
        	t_0 = cos(Float64(K / 2.0))
        	t_1 = Float64(Float64(-2.0 * J_m) * t_0)
        	t_2 = Float64(t_1 * sqrt(Float64(1.0 + (Float64(U_m / Float64(Float64(2.0 * J_m) * t_0)) ^ 2.0))))
        	tmp = 0.0
        	if (t_2 <= -2e+304)
        		tmp = Float64(-U_m);
        	elseif (t_2 <= 4e+291)
        		tmp = Float64(t_1 * cosh(asinh(Float64(U_m / Float64(2.0 * J_m)))));
        	else
        		tmp = U_m;
        	end
        	return Float64(J_s * tmp)
        end
        
        U_m = abs(U);
        J\_m = abs(J);
        J\_s = sign(J) * abs(1.0);
        function tmp_2 = code(J_s, J_m, K, U_m)
        	t_0 = cos((K / 2.0));
        	t_1 = (-2.0 * J_m) * t_0;
        	t_2 = t_1 * sqrt((1.0 + ((U_m / ((2.0 * J_m) * t_0)) ^ 2.0)));
        	tmp = 0.0;
        	if (t_2 <= -2e+304)
        		tmp = -U_m;
        	elseif (t_2 <= 4e+291)
        		tmp = t_1 * cosh(asinh((U_m / (2.0 * J_m))));
        	else
        		tmp = U_m;
        	end
        	tmp_2 = J_s * tmp;
        end
        
        U_m = N[Abs[U], $MachinePrecision]
        J\_m = N[Abs[J], $MachinePrecision]
        J\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[J]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
        code[J$95$s_, J$95$m_, K_, U$95$m_] := Block[{t$95$0 = N[Cos[N[(K / 2.0), $MachinePrecision]], $MachinePrecision]}, Block[{t$95$1 = N[(N[(-2.0 * J$95$m), $MachinePrecision] * t$95$0), $MachinePrecision]}, Block[{t$95$2 = N[(t$95$1 * N[Sqrt[N[(1.0 + N[Power[N[(U$95$m / N[(N[(2.0 * J$95$m), $MachinePrecision] * t$95$0), $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]}, N[(J$95$s * If[LessEqual[t$95$2, -2e+304], (-U$95$m), If[LessEqual[t$95$2, 4e+291], N[(t$95$1 * N[Cosh[N[ArcSinh[N[(U$95$m / N[(2.0 * J$95$m), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]], $MachinePrecision]), $MachinePrecision], U$95$m]]), $MachinePrecision]]]]
        
        \begin{array}{l}
        U_m = \left|U\right|
        \\
        J\_m = \left|J\right|
        \\
        J\_s = \mathsf{copysign}\left(1, J\right)
        
        \\
        \begin{array}{l}
        t_0 := \cos \left(\frac{K}{2}\right)\\
        t_1 := \left(-2 \cdot J\_m\right) \cdot t\_0\\
        t_2 := t\_1 \cdot \sqrt{1 + {\left(\frac{U\_m}{\left(2 \cdot J\_m\right) \cdot t\_0}\right)}^{2}}\\
        J\_s \cdot \begin{array}{l}
        \mathbf{if}\;t\_2 \leq -2 \cdot 10^{+304}:\\
        \;\;\;\;-U\_m\\
        
        \mathbf{elif}\;t\_2 \leq 4 \cdot 10^{+291}:\\
        \;\;\;\;t\_1 \cdot \cosh \sinh^{-1} \left(\frac{U\_m}{2 \cdot J\_m}\right)\\
        
        \mathbf{else}:\\
        \;\;\;\;U\_m\\
        
        
        \end{array}
        \end{array}
        \end{array}
        
        Derivation
        1. Split input into 3 regimes
        2. if (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64))))) < -1.9999999999999999e304

          1. Initial program 8.1%

            \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
          2. Taylor expanded in J around 0

            \[\leadsto \color{blue}{-1 \cdot U} \]
          3. Step-by-step derivation
            1. mul-1-negN/A

              \[\leadsto \mathsf{neg}\left(U\right) \]
            2. lower-neg.f6497.7

              \[\leadsto -U \]
          4. Applied rewrites97.7%

            \[\leadsto \color{blue}{-U} \]

          if -1.9999999999999999e304 < (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64))))) < 3.9999999999999998e291

          1. Initial program 99.8%

            \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
          2. Step-by-step derivation
            1. lift-sqrt.f64N/A

              \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \color{blue}{\sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}}} \]
            2. lift-+.f64N/A

              \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{\color{blue}{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}}} \]
            3. lift-pow.f64N/A

              \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + \color{blue}{{\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}}} \]
            4. lift-/.f64N/A

              \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\color{blue}{\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}}^{2}} \]
            5. lift-*.f64N/A

              \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\color{blue}{\left(2 \cdot J\right)} \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
            6. lift-*.f64N/A

              \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\color{blue}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}}\right)}^{2}} \]
            7. lift-/.f64N/A

              \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \color{blue}{\left(\frac{K}{2}\right)}}\right)}^{2}} \]
            8. lift-cos.f64N/A

              \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \color{blue}{\cos \left(\frac{K}{2}\right)}}\right)}^{2}} \]
            9. +-commutativeN/A

              \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{\color{blue}{{\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2} + 1}} \]
            10. unpow2N/A

              \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{\color{blue}{\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)} \cdot \frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}} + 1} \]
            11. cosh-asinh-revN/A

              \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \color{blue}{\cosh \sinh^{-1} \left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)} \]
            12. lower-cosh.f64N/A

              \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \color{blue}{\cosh \sinh^{-1} \left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)} \]
            13. lower-asinh.f64N/A

              \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \cosh \color{blue}{\sinh^{-1} \left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)} \]
          3. Applied rewrites97.5%

            \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \color{blue}{\cosh \sinh^{-1} \left(\frac{U}{\left(J + J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)} \]
          4. Taylor expanded in K around 0

            \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \cosh \sinh^{-1} \left(\frac{U}{\color{blue}{2 \cdot J}}\right) \]
          5. Step-by-step derivation
            1. lift-*.f6486.1

              \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \cosh \sinh^{-1} \left(\frac{U}{2 \cdot \color{blue}{J}}\right) \]
          6. Applied rewrites86.1%

            \[\leadsto \left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \cosh \sinh^{-1} \left(\frac{U}{\color{blue}{2 \cdot J}}\right) \]

          if 3.9999999999999998e291 < (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64)))))

          1. Initial program 14.1%

            \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
          2. Taylor expanded in U around -inf

            \[\leadsto \color{blue}{U} \]
          3. Step-by-step derivation
            1. Applied rewrites93.0%

              \[\leadsto \color{blue}{U} \]
          4. Recombined 3 regimes into one program.
          5. Add Preprocessing

          Alternative 5: 83.1% accurate, 0.3× speedup?

          \[\begin{array}{l} U_m = \left|U\right| \\ J\_m = \left|J\right| \\ J\_s = \mathsf{copysign}\left(1, J\right) \\ \begin{array}{l} t_0 := \cos \left(\frac{K}{2}\right)\\ t_1 := \left(\left(-2 \cdot J\_m\right) \cdot t\_0\right) \cdot \sqrt{1 + {\left(\frac{U\_m}{\left(2 \cdot J\_m\right) \cdot t\_0}\right)}^{2}}\\ J\_s \cdot \begin{array}{l} \mathbf{if}\;t\_1 \leq -\infty:\\ \;\;\;\;-U\_m\\ \mathbf{elif}\;t\_1 \leq -1 \cdot 10^{-209}:\\ \;\;\;\;\left(\sqrt{\mathsf{fma}\left(\frac{U\_m}{J\_m} \cdot \frac{U\_m}{J\_m}, 0.25, 1\right)} \cdot J\_m\right) \cdot -2\\ \mathbf{elif}\;t\_1 \leq 4 \cdot 10^{+291}:\\ \;\;\;\;\left(\cos \left(0.5 \cdot K\right) \cdot J\_m\right) \cdot -2\\ \mathbf{else}:\\ \;\;\;\;U\_m\\ \end{array} \end{array} \end{array} \]
          U_m = (fabs.f64 U)
          J\_m = (fabs.f64 J)
          J\_s = (copysign.f64 #s(literal 1 binary64) J)
          (FPCore (J_s J_m K U_m)
           :precision binary64
           (let* ((t_0 (cos (/ K 2.0)))
                  (t_1
                   (*
                    (* (* -2.0 J_m) t_0)
                    (sqrt (+ 1.0 (pow (/ U_m (* (* 2.0 J_m) t_0)) 2.0))))))
             (*
              J_s
              (if (<= t_1 (- INFINITY))
                (- U_m)
                (if (<= t_1 -1e-209)
                  (* (* (sqrt (fma (* (/ U_m J_m) (/ U_m J_m)) 0.25 1.0)) J_m) -2.0)
                  (if (<= t_1 4e+291) (* (* (cos (* 0.5 K)) J_m) -2.0) U_m))))))
          U_m = fabs(U);
          J\_m = fabs(J);
          J\_s = copysign(1.0, J);
          double code(double J_s, double J_m, double K, double U_m) {
          	double t_0 = cos((K / 2.0));
          	double t_1 = ((-2.0 * J_m) * t_0) * sqrt((1.0 + pow((U_m / ((2.0 * J_m) * t_0)), 2.0)));
          	double tmp;
          	if (t_1 <= -((double) INFINITY)) {
          		tmp = -U_m;
          	} else if (t_1 <= -1e-209) {
          		tmp = (sqrt(fma(((U_m / J_m) * (U_m / J_m)), 0.25, 1.0)) * J_m) * -2.0;
          	} else if (t_1 <= 4e+291) {
          		tmp = (cos((0.5 * K)) * J_m) * -2.0;
          	} else {
          		tmp = U_m;
          	}
          	return J_s * tmp;
          }
          
          U_m = abs(U)
          J\_m = abs(J)
          J\_s = copysign(1.0, J)
          function code(J_s, J_m, K, U_m)
          	t_0 = cos(Float64(K / 2.0))
          	t_1 = Float64(Float64(Float64(-2.0 * J_m) * t_0) * sqrt(Float64(1.0 + (Float64(U_m / Float64(Float64(2.0 * J_m) * t_0)) ^ 2.0))))
          	tmp = 0.0
          	if (t_1 <= Float64(-Inf))
          		tmp = Float64(-U_m);
          	elseif (t_1 <= -1e-209)
          		tmp = Float64(Float64(sqrt(fma(Float64(Float64(U_m / J_m) * Float64(U_m / J_m)), 0.25, 1.0)) * J_m) * -2.0);
          	elseif (t_1 <= 4e+291)
          		tmp = Float64(Float64(cos(Float64(0.5 * K)) * J_m) * -2.0);
          	else
          		tmp = U_m;
          	end
          	return Float64(J_s * tmp)
          end
          
          U_m = N[Abs[U], $MachinePrecision]
          J\_m = N[Abs[J], $MachinePrecision]
          J\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[J]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
          code[J$95$s_, J$95$m_, K_, U$95$m_] := Block[{t$95$0 = N[Cos[N[(K / 2.0), $MachinePrecision]], $MachinePrecision]}, Block[{t$95$1 = N[(N[(N[(-2.0 * J$95$m), $MachinePrecision] * t$95$0), $MachinePrecision] * N[Sqrt[N[(1.0 + N[Power[N[(U$95$m / N[(N[(2.0 * J$95$m), $MachinePrecision] * t$95$0), $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]}, N[(J$95$s * If[LessEqual[t$95$1, (-Infinity)], (-U$95$m), If[LessEqual[t$95$1, -1e-209], N[(N[(N[Sqrt[N[(N[(N[(U$95$m / J$95$m), $MachinePrecision] * N[(U$95$m / J$95$m), $MachinePrecision]), $MachinePrecision] * 0.25 + 1.0), $MachinePrecision]], $MachinePrecision] * J$95$m), $MachinePrecision] * -2.0), $MachinePrecision], If[LessEqual[t$95$1, 4e+291], N[(N[(N[Cos[N[(0.5 * K), $MachinePrecision]], $MachinePrecision] * J$95$m), $MachinePrecision] * -2.0), $MachinePrecision], U$95$m]]]), $MachinePrecision]]]
          
          \begin{array}{l}
          U_m = \left|U\right|
          \\
          J\_m = \left|J\right|
          \\
          J\_s = \mathsf{copysign}\left(1, J\right)
          
          \\
          \begin{array}{l}
          t_0 := \cos \left(\frac{K}{2}\right)\\
          t_1 := \left(\left(-2 \cdot J\_m\right) \cdot t\_0\right) \cdot \sqrt{1 + {\left(\frac{U\_m}{\left(2 \cdot J\_m\right) \cdot t\_0}\right)}^{2}}\\
          J\_s \cdot \begin{array}{l}
          \mathbf{if}\;t\_1 \leq -\infty:\\
          \;\;\;\;-U\_m\\
          
          \mathbf{elif}\;t\_1 \leq -1 \cdot 10^{-209}:\\
          \;\;\;\;\left(\sqrt{\mathsf{fma}\left(\frac{U\_m}{J\_m} \cdot \frac{U\_m}{J\_m}, 0.25, 1\right)} \cdot J\_m\right) \cdot -2\\
          
          \mathbf{elif}\;t\_1 \leq 4 \cdot 10^{+291}:\\
          \;\;\;\;\left(\cos \left(0.5 \cdot K\right) \cdot J\_m\right) \cdot -2\\
          
          \mathbf{else}:\\
          \;\;\;\;U\_m\\
          
          
          \end{array}
          \end{array}
          \end{array}
          
          Derivation
          1. Split input into 4 regimes
          2. if (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64))))) < -inf.0

            1. Initial program 5.8%

              \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
            2. Taylor expanded in J around 0

              \[\leadsto \color{blue}{-1 \cdot U} \]
            3. Step-by-step derivation
              1. mul-1-negN/A

                \[\leadsto \mathsf{neg}\left(U\right) \]
              2. lower-neg.f6499.8

                \[\leadsto -U \]
            4. Applied rewrites99.8%

              \[\leadsto \color{blue}{-U} \]

            if -inf.0 < (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64))))) < -1e-209

            1. Initial program 99.8%

              \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
            2. Taylor expanded in K around 0

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

                \[\leadsto \left(J \cdot \sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}}\right) \cdot \color{blue}{-2} \]
              2. lower-*.f64N/A

                \[\leadsto \left(J \cdot \sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}}\right) \cdot \color{blue}{-2} \]
              3. *-commutativeN/A

                \[\leadsto \left(\sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}} \cdot J\right) \cdot -2 \]
              4. lower-*.f64N/A

                \[\leadsto \left(\sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}} \cdot J\right) \cdot -2 \]
              5. lower-sqrt.f64N/A

                \[\leadsto \left(\sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}} \cdot J\right) \cdot -2 \]
              6. +-commutativeN/A

                \[\leadsto \left(\sqrt{\frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}} + 1} \cdot J\right) \cdot -2 \]
              7. *-commutativeN/A

                \[\leadsto \left(\sqrt{\frac{{U}^{2}}{{J}^{2}} \cdot \frac{1}{4} + 1} \cdot J\right) \cdot -2 \]
              8. lower-fma.f64N/A

                \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{{U}^{2}}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
              9. lower-/.f64N/A

                \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{{U}^{2}}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
              10. unpow2N/A

                \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
              11. lower-*.f64N/A

                \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
              12. unpow2N/A

                \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{J \cdot J}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
              13. lower-*.f6459.3

                \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{J \cdot J}, 0.25, 1\right)} \cdot J\right) \cdot -2 \]
            4. Applied rewrites59.3%

              \[\leadsto \color{blue}{\left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{J \cdot J}, 0.25, 1\right)} \cdot J\right) \cdot -2} \]
            5. Step-by-step derivation
              1. lift-*.f64N/A

                \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{J \cdot J}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
              2. lift-/.f64N/A

                \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{J \cdot J}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
              3. lift-*.f64N/A

                \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{J \cdot J}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
              4. times-fracN/A

                \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U}{J} \cdot \frac{U}{J}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
              5. lower-*.f64N/A

                \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U}{J} \cdot \frac{U}{J}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
              6. lower-/.f64N/A

                \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U}{J} \cdot \frac{U}{J}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
              7. lower-/.f6480.7

                \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U}{J} \cdot \frac{U}{J}, 0.25, 1\right)} \cdot J\right) \cdot -2 \]
            6. Applied rewrites80.7%

              \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U}{J} \cdot \frac{U}{J}, 0.25, 1\right)} \cdot J\right) \cdot -2 \]

            if -1e-209 < (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64))))) < 3.9999999999999998e291

            1. Initial program 99.7%

              \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
            2. Taylor expanded in J around inf

              \[\leadsto \color{blue}{-2 \cdot \left(J \cdot \cos \left(\frac{1}{2} \cdot K\right)\right)} \]
            3. Step-by-step derivation
              1. *-commutativeN/A

                \[\leadsto \left(J \cdot \cos \left(\frac{1}{2} \cdot K\right)\right) \cdot \color{blue}{-2} \]
              2. lower-*.f64N/A

                \[\leadsto \left(J \cdot \cos \left(\frac{1}{2} \cdot K\right)\right) \cdot \color{blue}{-2} \]
              3. *-commutativeN/A

                \[\leadsto \left(\cos \left(\frac{1}{2} \cdot K\right) \cdot J\right) \cdot -2 \]
              4. lower-*.f64N/A

                \[\leadsto \left(\cos \left(\frac{1}{2} \cdot K\right) \cdot J\right) \cdot -2 \]
              5. lower-cos.f64N/A

                \[\leadsto \left(\cos \left(\frac{1}{2} \cdot K\right) \cdot J\right) \cdot -2 \]
              6. lower-*.f6466.8

                \[\leadsto \left(\cos \left(0.5 \cdot K\right) \cdot J\right) \cdot -2 \]
            4. Applied rewrites66.8%

              \[\leadsto \color{blue}{\left(\cos \left(0.5 \cdot K\right) \cdot J\right) \cdot -2} \]

            if 3.9999999999999998e291 < (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64)))))

            1. Initial program 14.1%

              \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
            2. Taylor expanded in U around -inf

              \[\leadsto \color{blue}{U} \]
            3. Step-by-step derivation
              1. Applied rewrites93.0%

                \[\leadsto \color{blue}{U} \]
            4. Recombined 4 regimes into one program.
            5. Add Preprocessing

            Alternative 6: 78.0% accurate, 0.4× speedup?

            \[\begin{array}{l} U_m = \left|U\right| \\ J\_m = \left|J\right| \\ J\_s = \mathsf{copysign}\left(1, J\right) \\ \begin{array}{l} t_0 := \cos \left(\frac{K}{2}\right)\\ t_1 := \left(\left(-2 \cdot J\_m\right) \cdot t\_0\right) \cdot \sqrt{1 + {\left(\frac{U\_m}{\left(2 \cdot J\_m\right) \cdot t\_0}\right)}^{2}}\\ J\_s \cdot \begin{array}{l} \mathbf{if}\;t\_1 \leq -\infty:\\ \;\;\;\;-U\_m\\ \mathbf{elif}\;t\_1 \leq -1 \cdot 10^{-275}:\\ \;\;\;\;\left(\sqrt{\mathsf{fma}\left(\frac{U\_m}{J\_m} \cdot \frac{U\_m}{J\_m}, 0.25, 1\right)} \cdot J\_m\right) \cdot -2\\ \mathbf{else}:\\ \;\;\;\;U\_m\\ \end{array} \end{array} \end{array} \]
            U_m = (fabs.f64 U)
            J\_m = (fabs.f64 J)
            J\_s = (copysign.f64 #s(literal 1 binary64) J)
            (FPCore (J_s J_m K U_m)
             :precision binary64
             (let* ((t_0 (cos (/ K 2.0)))
                    (t_1
                     (*
                      (* (* -2.0 J_m) t_0)
                      (sqrt (+ 1.0 (pow (/ U_m (* (* 2.0 J_m) t_0)) 2.0))))))
               (*
                J_s
                (if (<= t_1 (- INFINITY))
                  (- U_m)
                  (if (<= t_1 -1e-275)
                    (* (* (sqrt (fma (* (/ U_m J_m) (/ U_m J_m)) 0.25 1.0)) J_m) -2.0)
                    U_m)))))
            U_m = fabs(U);
            J\_m = fabs(J);
            J\_s = copysign(1.0, J);
            double code(double J_s, double J_m, double K, double U_m) {
            	double t_0 = cos((K / 2.0));
            	double t_1 = ((-2.0 * J_m) * t_0) * sqrt((1.0 + pow((U_m / ((2.0 * J_m) * t_0)), 2.0)));
            	double tmp;
            	if (t_1 <= -((double) INFINITY)) {
            		tmp = -U_m;
            	} else if (t_1 <= -1e-275) {
            		tmp = (sqrt(fma(((U_m / J_m) * (U_m / J_m)), 0.25, 1.0)) * J_m) * -2.0;
            	} else {
            		tmp = U_m;
            	}
            	return J_s * tmp;
            }
            
            U_m = abs(U)
            J\_m = abs(J)
            J\_s = copysign(1.0, J)
            function code(J_s, J_m, K, U_m)
            	t_0 = cos(Float64(K / 2.0))
            	t_1 = Float64(Float64(Float64(-2.0 * J_m) * t_0) * sqrt(Float64(1.0 + (Float64(U_m / Float64(Float64(2.0 * J_m) * t_0)) ^ 2.0))))
            	tmp = 0.0
            	if (t_1 <= Float64(-Inf))
            		tmp = Float64(-U_m);
            	elseif (t_1 <= -1e-275)
            		tmp = Float64(Float64(sqrt(fma(Float64(Float64(U_m / J_m) * Float64(U_m / J_m)), 0.25, 1.0)) * J_m) * -2.0);
            	else
            		tmp = U_m;
            	end
            	return Float64(J_s * tmp)
            end
            
            U_m = N[Abs[U], $MachinePrecision]
            J\_m = N[Abs[J], $MachinePrecision]
            J\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[J]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
            code[J$95$s_, J$95$m_, K_, U$95$m_] := Block[{t$95$0 = N[Cos[N[(K / 2.0), $MachinePrecision]], $MachinePrecision]}, Block[{t$95$1 = N[(N[(N[(-2.0 * J$95$m), $MachinePrecision] * t$95$0), $MachinePrecision] * N[Sqrt[N[(1.0 + N[Power[N[(U$95$m / N[(N[(2.0 * J$95$m), $MachinePrecision] * t$95$0), $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]}, N[(J$95$s * If[LessEqual[t$95$1, (-Infinity)], (-U$95$m), If[LessEqual[t$95$1, -1e-275], N[(N[(N[Sqrt[N[(N[(N[(U$95$m / J$95$m), $MachinePrecision] * N[(U$95$m / J$95$m), $MachinePrecision]), $MachinePrecision] * 0.25 + 1.0), $MachinePrecision]], $MachinePrecision] * J$95$m), $MachinePrecision] * -2.0), $MachinePrecision], U$95$m]]), $MachinePrecision]]]
            
            \begin{array}{l}
            U_m = \left|U\right|
            \\
            J\_m = \left|J\right|
            \\
            J\_s = \mathsf{copysign}\left(1, J\right)
            
            \\
            \begin{array}{l}
            t_0 := \cos \left(\frac{K}{2}\right)\\
            t_1 := \left(\left(-2 \cdot J\_m\right) \cdot t\_0\right) \cdot \sqrt{1 + {\left(\frac{U\_m}{\left(2 \cdot J\_m\right) \cdot t\_0}\right)}^{2}}\\
            J\_s \cdot \begin{array}{l}
            \mathbf{if}\;t\_1 \leq -\infty:\\
            \;\;\;\;-U\_m\\
            
            \mathbf{elif}\;t\_1 \leq -1 \cdot 10^{-275}:\\
            \;\;\;\;\left(\sqrt{\mathsf{fma}\left(\frac{U\_m}{J\_m} \cdot \frac{U\_m}{J\_m}, 0.25, 1\right)} \cdot J\_m\right) \cdot -2\\
            
            \mathbf{else}:\\
            \;\;\;\;U\_m\\
            
            
            \end{array}
            \end{array}
            \end{array}
            
            Derivation
            1. Split input into 3 regimes
            2. if (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64))))) < -inf.0

              1. Initial program 5.8%

                \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
              2. Taylor expanded in J around 0

                \[\leadsto \color{blue}{-1 \cdot U} \]
              3. Step-by-step derivation
                1. mul-1-negN/A

                  \[\leadsto \mathsf{neg}\left(U\right) \]
                2. lower-neg.f6499.8

                  \[\leadsto -U \]
              4. Applied rewrites99.8%

                \[\leadsto \color{blue}{-U} \]

              if -inf.0 < (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64))))) < -9.99999999999999934e-276

              1. Initial program 99.8%

                \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
              2. Taylor expanded in K around 0

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

                  \[\leadsto \left(J \cdot \sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}}\right) \cdot \color{blue}{-2} \]
                2. lower-*.f64N/A

                  \[\leadsto \left(J \cdot \sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}}\right) \cdot \color{blue}{-2} \]
                3. *-commutativeN/A

                  \[\leadsto \left(\sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}} \cdot J\right) \cdot -2 \]
                4. lower-*.f64N/A

                  \[\leadsto \left(\sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}} \cdot J\right) \cdot -2 \]
                5. lower-sqrt.f64N/A

                  \[\leadsto \left(\sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}} \cdot J\right) \cdot -2 \]
                6. +-commutativeN/A

                  \[\leadsto \left(\sqrt{\frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}} + 1} \cdot J\right) \cdot -2 \]
                7. *-commutativeN/A

                  \[\leadsto \left(\sqrt{\frac{{U}^{2}}{{J}^{2}} \cdot \frac{1}{4} + 1} \cdot J\right) \cdot -2 \]
                8. lower-fma.f64N/A

                  \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{{U}^{2}}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                9. lower-/.f64N/A

                  \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{{U}^{2}}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                10. unpow2N/A

                  \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                11. lower-*.f64N/A

                  \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                12. unpow2N/A

                  \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{J \cdot J}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                13. lower-*.f6457.5

                  \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{J \cdot J}, 0.25, 1\right)} \cdot J\right) \cdot -2 \]
              4. Applied rewrites57.5%

                \[\leadsto \color{blue}{\left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{J \cdot J}, 0.25, 1\right)} \cdot J\right) \cdot -2} \]
              5. Step-by-step derivation
                1. lift-*.f64N/A

                  \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{J \cdot J}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                2. lift-/.f64N/A

                  \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{J \cdot J}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                3. lift-*.f64N/A

                  \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{J \cdot J}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                4. times-fracN/A

                  \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U}{J} \cdot \frac{U}{J}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                5. lower-*.f64N/A

                  \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U}{J} \cdot \frac{U}{J}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                6. lower-/.f64N/A

                  \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U}{J} \cdot \frac{U}{J}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                7. lower-/.f6480.9

                  \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U}{J} \cdot \frac{U}{J}, 0.25, 1\right)} \cdot J\right) \cdot -2 \]
              6. Applied rewrites80.9%

                \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U}{J} \cdot \frac{U}{J}, 0.25, 1\right)} \cdot J\right) \cdot -2 \]

              if -9.99999999999999934e-276 < (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64)))))

              1. Initial program 73.2%

                \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
              2. Taylor expanded in U around -inf

                \[\leadsto \color{blue}{U} \]
              3. Step-by-step derivation
                1. Applied rewrites53.1%

                  \[\leadsto \color{blue}{U} \]
              4. Recombined 3 regimes into one program.
              5. Add Preprocessing

              Alternative 7: 67.7% accurate, 0.2× speedup?

              \[\begin{array}{l} U_m = \left|U\right| \\ J\_m = \left|J\right| \\ J\_s = \mathsf{copysign}\left(1, J\right) \\ \begin{array}{l} t_0 := \cos \left(\frac{K}{2}\right)\\ t_1 := \left(\left(-2 \cdot J\_m\right) \cdot t\_0\right) \cdot \sqrt{1 + {\left(\frac{U\_m}{\left(2 \cdot J\_m\right) \cdot t\_0}\right)}^{2}}\\ J\_s \cdot \begin{array}{l} \mathbf{if}\;t\_1 \leq -2 \cdot 10^{+304}:\\ \;\;\;\;-U\_m\\ \mathbf{elif}\;t\_1 \leq -2 \cdot 10^{+240}:\\ \;\;\;\;J\_m \cdot -2\\ \mathbf{elif}\;t\_1 \leq -5 \cdot 10^{+201}:\\ \;\;\;\;-U\_m\\ \mathbf{elif}\;t\_1 \leq -2 \cdot 10^{-129}:\\ \;\;\;\;\left(\sqrt{\mathsf{fma}\left(\frac{U\_m \cdot U\_m}{J\_m \cdot J\_m}, 0.25, 1\right)} \cdot J\_m\right) \cdot -2\\ \mathbf{elif}\;t\_1 \leq -1 \cdot 10^{-275}:\\ \;\;\;\;\mathsf{fma}\left(\frac{J\_m \cdot J\_m}{U\_m}, -2, -U\_m\right)\\ \mathbf{else}:\\ \;\;\;\;U\_m\\ \end{array} \end{array} \end{array} \]
              U_m = (fabs.f64 U)
              J\_m = (fabs.f64 J)
              J\_s = (copysign.f64 #s(literal 1 binary64) J)
              (FPCore (J_s J_m K U_m)
               :precision binary64
               (let* ((t_0 (cos (/ K 2.0)))
                      (t_1
                       (*
                        (* (* -2.0 J_m) t_0)
                        (sqrt (+ 1.0 (pow (/ U_m (* (* 2.0 J_m) t_0)) 2.0))))))
                 (*
                  J_s
                  (if (<= t_1 -2e+304)
                    (- U_m)
                    (if (<= t_1 -2e+240)
                      (* J_m -2.0)
                      (if (<= t_1 -5e+201)
                        (- U_m)
                        (if (<= t_1 -2e-129)
                          (* (* (sqrt (fma (/ (* U_m U_m) (* J_m J_m)) 0.25 1.0)) J_m) -2.0)
                          (if (<= t_1 -1e-275)
                            (fma (/ (* J_m J_m) U_m) -2.0 (- U_m))
                            U_m))))))))
              U_m = fabs(U);
              J\_m = fabs(J);
              J\_s = copysign(1.0, J);
              double code(double J_s, double J_m, double K, double U_m) {
              	double t_0 = cos((K / 2.0));
              	double t_1 = ((-2.0 * J_m) * t_0) * sqrt((1.0 + pow((U_m / ((2.0 * J_m) * t_0)), 2.0)));
              	double tmp;
              	if (t_1 <= -2e+304) {
              		tmp = -U_m;
              	} else if (t_1 <= -2e+240) {
              		tmp = J_m * -2.0;
              	} else if (t_1 <= -5e+201) {
              		tmp = -U_m;
              	} else if (t_1 <= -2e-129) {
              		tmp = (sqrt(fma(((U_m * U_m) / (J_m * J_m)), 0.25, 1.0)) * J_m) * -2.0;
              	} else if (t_1 <= -1e-275) {
              		tmp = fma(((J_m * J_m) / U_m), -2.0, -U_m);
              	} else {
              		tmp = U_m;
              	}
              	return J_s * tmp;
              }
              
              U_m = abs(U)
              J\_m = abs(J)
              J\_s = copysign(1.0, J)
              function code(J_s, J_m, K, U_m)
              	t_0 = cos(Float64(K / 2.0))
              	t_1 = Float64(Float64(Float64(-2.0 * J_m) * t_0) * sqrt(Float64(1.0 + (Float64(U_m / Float64(Float64(2.0 * J_m) * t_0)) ^ 2.0))))
              	tmp = 0.0
              	if (t_1 <= -2e+304)
              		tmp = Float64(-U_m);
              	elseif (t_1 <= -2e+240)
              		tmp = Float64(J_m * -2.0);
              	elseif (t_1 <= -5e+201)
              		tmp = Float64(-U_m);
              	elseif (t_1 <= -2e-129)
              		tmp = Float64(Float64(sqrt(fma(Float64(Float64(U_m * U_m) / Float64(J_m * J_m)), 0.25, 1.0)) * J_m) * -2.0);
              	elseif (t_1 <= -1e-275)
              		tmp = fma(Float64(Float64(J_m * J_m) / U_m), -2.0, Float64(-U_m));
              	else
              		tmp = U_m;
              	end
              	return Float64(J_s * tmp)
              end
              
              U_m = N[Abs[U], $MachinePrecision]
              J\_m = N[Abs[J], $MachinePrecision]
              J\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[J]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
              code[J$95$s_, J$95$m_, K_, U$95$m_] := Block[{t$95$0 = N[Cos[N[(K / 2.0), $MachinePrecision]], $MachinePrecision]}, Block[{t$95$1 = N[(N[(N[(-2.0 * J$95$m), $MachinePrecision] * t$95$0), $MachinePrecision] * N[Sqrt[N[(1.0 + N[Power[N[(U$95$m / N[(N[(2.0 * J$95$m), $MachinePrecision] * t$95$0), $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]}, N[(J$95$s * If[LessEqual[t$95$1, -2e+304], (-U$95$m), If[LessEqual[t$95$1, -2e+240], N[(J$95$m * -2.0), $MachinePrecision], If[LessEqual[t$95$1, -5e+201], (-U$95$m), If[LessEqual[t$95$1, -2e-129], N[(N[(N[Sqrt[N[(N[(N[(U$95$m * U$95$m), $MachinePrecision] / N[(J$95$m * J$95$m), $MachinePrecision]), $MachinePrecision] * 0.25 + 1.0), $MachinePrecision]], $MachinePrecision] * J$95$m), $MachinePrecision] * -2.0), $MachinePrecision], If[LessEqual[t$95$1, -1e-275], N[(N[(N[(J$95$m * J$95$m), $MachinePrecision] / U$95$m), $MachinePrecision] * -2.0 + (-U$95$m)), $MachinePrecision], U$95$m]]]]]), $MachinePrecision]]]
              
              \begin{array}{l}
              U_m = \left|U\right|
              \\
              J\_m = \left|J\right|
              \\
              J\_s = \mathsf{copysign}\left(1, J\right)
              
              \\
              \begin{array}{l}
              t_0 := \cos \left(\frac{K}{2}\right)\\
              t_1 := \left(\left(-2 \cdot J\_m\right) \cdot t\_0\right) \cdot \sqrt{1 + {\left(\frac{U\_m}{\left(2 \cdot J\_m\right) \cdot t\_0}\right)}^{2}}\\
              J\_s \cdot \begin{array}{l}
              \mathbf{if}\;t\_1 \leq -2 \cdot 10^{+304}:\\
              \;\;\;\;-U\_m\\
              
              \mathbf{elif}\;t\_1 \leq -2 \cdot 10^{+240}:\\
              \;\;\;\;J\_m \cdot -2\\
              
              \mathbf{elif}\;t\_1 \leq -5 \cdot 10^{+201}:\\
              \;\;\;\;-U\_m\\
              
              \mathbf{elif}\;t\_1 \leq -2 \cdot 10^{-129}:\\
              \;\;\;\;\left(\sqrt{\mathsf{fma}\left(\frac{U\_m \cdot U\_m}{J\_m \cdot J\_m}, 0.25, 1\right)} \cdot J\_m\right) \cdot -2\\
              
              \mathbf{elif}\;t\_1 \leq -1 \cdot 10^{-275}:\\
              \;\;\;\;\mathsf{fma}\left(\frac{J\_m \cdot J\_m}{U\_m}, -2, -U\_m\right)\\
              
              \mathbf{else}:\\
              \;\;\;\;U\_m\\
              
              
              \end{array}
              \end{array}
              \end{array}
              
              Derivation
              1. Split input into 5 regimes
              2. if (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64))))) < -1.9999999999999999e304 or -2.00000000000000003e240 < (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64))))) < -4.9999999999999995e201

                1. Initial program 24.6%

                  \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
                2. Taylor expanded in J around 0

                  \[\leadsto \color{blue}{-1 \cdot U} \]
                3. Step-by-step derivation
                  1. mul-1-negN/A

                    \[\leadsto \mathsf{neg}\left(U\right) \]
                  2. lower-neg.f6484.4

                    \[\leadsto -U \]
                4. Applied rewrites84.4%

                  \[\leadsto \color{blue}{-U} \]

                if -1.9999999999999999e304 < (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64))))) < -2.00000000000000003e240

                1. Initial program 99.9%

                  \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
                2. Taylor expanded in K around 0

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

                    \[\leadsto \left(J \cdot \sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}}\right) \cdot \color{blue}{-2} \]
                  2. lower-*.f64N/A

                    \[\leadsto \left(J \cdot \sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}}\right) \cdot \color{blue}{-2} \]
                  3. *-commutativeN/A

                    \[\leadsto \left(\sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}} \cdot J\right) \cdot -2 \]
                  4. lower-*.f64N/A

                    \[\leadsto \left(\sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}} \cdot J\right) \cdot -2 \]
                  5. lower-sqrt.f64N/A

                    \[\leadsto \left(\sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}} \cdot J\right) \cdot -2 \]
                  6. +-commutativeN/A

                    \[\leadsto \left(\sqrt{\frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}} + 1} \cdot J\right) \cdot -2 \]
                  7. *-commutativeN/A

                    \[\leadsto \left(\sqrt{\frac{{U}^{2}}{{J}^{2}} \cdot \frac{1}{4} + 1} \cdot J\right) \cdot -2 \]
                  8. lower-fma.f64N/A

                    \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{{U}^{2}}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                  9. lower-/.f64N/A

                    \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{{U}^{2}}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                  10. unpow2N/A

                    \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                  11. lower-*.f64N/A

                    \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                  12. unpow2N/A

                    \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{J \cdot J}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                  13. lower-*.f6445.3

                    \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{J \cdot J}, 0.25, 1\right)} \cdot J\right) \cdot -2 \]
                4. Applied rewrites45.3%

                  \[\leadsto \color{blue}{\left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{J \cdot J}, 0.25, 1\right)} \cdot J\right) \cdot -2} \]
                5. Taylor expanded in J around inf

                  \[\leadsto J \cdot -2 \]
                6. Step-by-step derivation
                  1. Applied rewrites58.5%

                    \[\leadsto J \cdot -2 \]

                  if -4.9999999999999995e201 < (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64))))) < -1.9999999999999999e-129

                  1. Initial program 99.8%

                    \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
                  2. Taylor expanded in K around 0

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

                      \[\leadsto \left(J \cdot \sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}}\right) \cdot \color{blue}{-2} \]
                    2. lower-*.f64N/A

                      \[\leadsto \left(J \cdot \sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}}\right) \cdot \color{blue}{-2} \]
                    3. *-commutativeN/A

                      \[\leadsto \left(\sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}} \cdot J\right) \cdot -2 \]
                    4. lower-*.f64N/A

                      \[\leadsto \left(\sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}} \cdot J\right) \cdot -2 \]
                    5. lower-sqrt.f64N/A

                      \[\leadsto \left(\sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}} \cdot J\right) \cdot -2 \]
                    6. +-commutativeN/A

                      \[\leadsto \left(\sqrt{\frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}} + 1} \cdot J\right) \cdot -2 \]
                    7. *-commutativeN/A

                      \[\leadsto \left(\sqrt{\frac{{U}^{2}}{{J}^{2}} \cdot \frac{1}{4} + 1} \cdot J\right) \cdot -2 \]
                    8. lower-fma.f64N/A

                      \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{{U}^{2}}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                    9. lower-/.f64N/A

                      \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{{U}^{2}}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                    10. unpow2N/A

                      \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                    11. lower-*.f64N/A

                      \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                    12. unpow2N/A

                      \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{J \cdot J}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                    13. lower-*.f6470.7

                      \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{J \cdot J}, 0.25, 1\right)} \cdot J\right) \cdot -2 \]
                  4. Applied rewrites70.7%

                    \[\leadsto \color{blue}{\left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{J \cdot J}, 0.25, 1\right)} \cdot J\right) \cdot -2} \]

                  if -1.9999999999999999e-129 < (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64))))) < -9.99999999999999934e-276

                  1. Initial program 99.8%

                    \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
                  2. Taylor expanded in K around 0

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

                      \[\leadsto \left(J \cdot \sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}}\right) \cdot \color{blue}{-2} \]
                    2. lower-*.f64N/A

                      \[\leadsto \left(J \cdot \sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}}\right) \cdot \color{blue}{-2} \]
                    3. *-commutativeN/A

                      \[\leadsto \left(\sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}} \cdot J\right) \cdot -2 \]
                    4. lower-*.f64N/A

                      \[\leadsto \left(\sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}} \cdot J\right) \cdot -2 \]
                    5. lower-sqrt.f64N/A

                      \[\leadsto \left(\sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}} \cdot J\right) \cdot -2 \]
                    6. +-commutativeN/A

                      \[\leadsto \left(\sqrt{\frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}} + 1} \cdot J\right) \cdot -2 \]
                    7. *-commutativeN/A

                      \[\leadsto \left(\sqrt{\frac{{U}^{2}}{{J}^{2}} \cdot \frac{1}{4} + 1} \cdot J\right) \cdot -2 \]
                    8. lower-fma.f64N/A

                      \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{{U}^{2}}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                    9. lower-/.f64N/A

                      \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{{U}^{2}}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                    10. unpow2N/A

                      \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                    11. lower-*.f64N/A

                      \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                    12. unpow2N/A

                      \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{J \cdot J}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                    13. lower-*.f6413.5

                      \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{J \cdot J}, 0.25, 1\right)} \cdot J\right) \cdot -2 \]
                  4. Applied rewrites13.5%

                    \[\leadsto \color{blue}{\left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{J \cdot J}, 0.25, 1\right)} \cdot J\right) \cdot -2} \]
                  5. Taylor expanded in U around 0

                    \[\leadsto -2 \cdot J + \color{blue}{\frac{-1}{4} \cdot \frac{{U}^{2}}{J}} \]
                  6. Step-by-step derivation
                    1. lower-fma.f64N/A

                      \[\leadsto \mathsf{fma}\left(-2, J, \frac{-1}{4} \cdot \frac{{U}^{2}}{J}\right) \]
                    2. lower-*.f64N/A

                      \[\leadsto \mathsf{fma}\left(-2, J, \frac{-1}{4} \cdot \frac{{U}^{2}}{J}\right) \]
                    3. lower-/.f64N/A

                      \[\leadsto \mathsf{fma}\left(-2, J, \frac{-1}{4} \cdot \frac{{U}^{2}}{J}\right) \]
                    4. pow2N/A

                      \[\leadsto \mathsf{fma}\left(-2, J, \frac{-1}{4} \cdot \frac{U \cdot U}{J}\right) \]
                    5. lift-*.f6438.6

                      \[\leadsto \mathsf{fma}\left(-2, J, -0.25 \cdot \frac{U \cdot U}{J}\right) \]
                  7. Applied rewrites38.6%

                    \[\leadsto \mathsf{fma}\left(-2, \color{blue}{J}, -0.25 \cdot \frac{U \cdot U}{J}\right) \]
                  8. Taylor expanded in J around 0

                    \[\leadsto -2 \cdot \frac{{J}^{2}}{U} + \color{blue}{-1 \cdot U} \]
                  9. Step-by-step derivation
                    1. *-commutativeN/A

                      \[\leadsto \frac{{J}^{2}}{U} \cdot -2 + -1 \cdot U \]
                    2. lower-fma.f64N/A

                      \[\leadsto \mathsf{fma}\left(\frac{{J}^{2}}{U}, -2, -1 \cdot U\right) \]
                    3. pow2N/A

                      \[\leadsto \mathsf{fma}\left(\frac{J \cdot J}{U}, -2, -1 \cdot U\right) \]
                    4. lift-/.f64N/A

                      \[\leadsto \mathsf{fma}\left(\frac{J \cdot J}{U}, -2, -1 \cdot U\right) \]
                    5. lift-*.f64N/A

                      \[\leadsto \mathsf{fma}\left(\frac{J \cdot J}{U}, -2, -1 \cdot U\right) \]
                    6. mul-1-negN/A

                      \[\leadsto \mathsf{fma}\left(\frac{J \cdot J}{U}, -2, \mathsf{neg}\left(U\right)\right) \]
                    7. lift-neg.f6453.6

                      \[\leadsto \mathsf{fma}\left(\frac{J \cdot J}{U}, -2, -U\right) \]
                  10. Applied rewrites53.6%

                    \[\leadsto \mathsf{fma}\left(\frac{J \cdot J}{U}, \color{blue}{-2}, -U\right) \]

                  if -9.99999999999999934e-276 < (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64)))))

                  1. Initial program 73.2%

                    \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
                  2. Taylor expanded in U around -inf

                    \[\leadsto \color{blue}{U} \]
                  3. Step-by-step derivation
                    1. Applied rewrites53.1%

                      \[\leadsto \color{blue}{U} \]
                  4. Recombined 5 regimes into one program.
                  5. Add Preprocessing

                  Alternative 8: 63.1% accurate, 0.3× speedup?

                  \[\begin{array}{l} U_m = \left|U\right| \\ J\_m = \left|J\right| \\ J\_s = \mathsf{copysign}\left(1, J\right) \\ \begin{array}{l} t_0 := \cos \left(\frac{K}{2}\right)\\ t_1 := \left(\left(-2 \cdot J\_m\right) \cdot t\_0\right) \cdot \sqrt{1 + {\left(\frac{U\_m}{\left(2 \cdot J\_m\right) \cdot t\_0}\right)}^{2}}\\ J\_s \cdot \begin{array}{l} \mathbf{if}\;t\_1 \leq -2 \cdot 10^{+304}:\\ \;\;\;\;-U\_m\\ \mathbf{elif}\;t\_1 \leq -2 \cdot 10^{-129}:\\ \;\;\;\;J\_m \cdot -2\\ \mathbf{elif}\;t\_1 \leq -1 \cdot 10^{-275}:\\ \;\;\;\;\mathsf{fma}\left(\frac{J\_m \cdot J\_m}{U\_m}, -2, -U\_m\right)\\ \mathbf{else}:\\ \;\;\;\;U\_m\\ \end{array} \end{array} \end{array} \]
                  U_m = (fabs.f64 U)
                  J\_m = (fabs.f64 J)
                  J\_s = (copysign.f64 #s(literal 1 binary64) J)
                  (FPCore (J_s J_m K U_m)
                   :precision binary64
                   (let* ((t_0 (cos (/ K 2.0)))
                          (t_1
                           (*
                            (* (* -2.0 J_m) t_0)
                            (sqrt (+ 1.0 (pow (/ U_m (* (* 2.0 J_m) t_0)) 2.0))))))
                     (*
                      J_s
                      (if (<= t_1 -2e+304)
                        (- U_m)
                        (if (<= t_1 -2e-129)
                          (* J_m -2.0)
                          (if (<= t_1 -1e-275) (fma (/ (* J_m J_m) U_m) -2.0 (- U_m)) U_m))))))
                  U_m = fabs(U);
                  J\_m = fabs(J);
                  J\_s = copysign(1.0, J);
                  double code(double J_s, double J_m, double K, double U_m) {
                  	double t_0 = cos((K / 2.0));
                  	double t_1 = ((-2.0 * J_m) * t_0) * sqrt((1.0 + pow((U_m / ((2.0 * J_m) * t_0)), 2.0)));
                  	double tmp;
                  	if (t_1 <= -2e+304) {
                  		tmp = -U_m;
                  	} else if (t_1 <= -2e-129) {
                  		tmp = J_m * -2.0;
                  	} else if (t_1 <= -1e-275) {
                  		tmp = fma(((J_m * J_m) / U_m), -2.0, -U_m);
                  	} else {
                  		tmp = U_m;
                  	}
                  	return J_s * tmp;
                  }
                  
                  U_m = abs(U)
                  J\_m = abs(J)
                  J\_s = copysign(1.0, J)
                  function code(J_s, J_m, K, U_m)
                  	t_0 = cos(Float64(K / 2.0))
                  	t_1 = Float64(Float64(Float64(-2.0 * J_m) * t_0) * sqrt(Float64(1.0 + (Float64(U_m / Float64(Float64(2.0 * J_m) * t_0)) ^ 2.0))))
                  	tmp = 0.0
                  	if (t_1 <= -2e+304)
                  		tmp = Float64(-U_m);
                  	elseif (t_1 <= -2e-129)
                  		tmp = Float64(J_m * -2.0);
                  	elseif (t_1 <= -1e-275)
                  		tmp = fma(Float64(Float64(J_m * J_m) / U_m), -2.0, Float64(-U_m));
                  	else
                  		tmp = U_m;
                  	end
                  	return Float64(J_s * tmp)
                  end
                  
                  U_m = N[Abs[U], $MachinePrecision]
                  J\_m = N[Abs[J], $MachinePrecision]
                  J\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[J]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
                  code[J$95$s_, J$95$m_, K_, U$95$m_] := Block[{t$95$0 = N[Cos[N[(K / 2.0), $MachinePrecision]], $MachinePrecision]}, Block[{t$95$1 = N[(N[(N[(-2.0 * J$95$m), $MachinePrecision] * t$95$0), $MachinePrecision] * N[Sqrt[N[(1.0 + N[Power[N[(U$95$m / N[(N[(2.0 * J$95$m), $MachinePrecision] * t$95$0), $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]}, N[(J$95$s * If[LessEqual[t$95$1, -2e+304], (-U$95$m), If[LessEqual[t$95$1, -2e-129], N[(J$95$m * -2.0), $MachinePrecision], If[LessEqual[t$95$1, -1e-275], N[(N[(N[(J$95$m * J$95$m), $MachinePrecision] / U$95$m), $MachinePrecision] * -2.0 + (-U$95$m)), $MachinePrecision], U$95$m]]]), $MachinePrecision]]]
                  
                  \begin{array}{l}
                  U_m = \left|U\right|
                  \\
                  J\_m = \left|J\right|
                  \\
                  J\_s = \mathsf{copysign}\left(1, J\right)
                  
                  \\
                  \begin{array}{l}
                  t_0 := \cos \left(\frac{K}{2}\right)\\
                  t_1 := \left(\left(-2 \cdot J\_m\right) \cdot t\_0\right) \cdot \sqrt{1 + {\left(\frac{U\_m}{\left(2 \cdot J\_m\right) \cdot t\_0}\right)}^{2}}\\
                  J\_s \cdot \begin{array}{l}
                  \mathbf{if}\;t\_1 \leq -2 \cdot 10^{+304}:\\
                  \;\;\;\;-U\_m\\
                  
                  \mathbf{elif}\;t\_1 \leq -2 \cdot 10^{-129}:\\
                  \;\;\;\;J\_m \cdot -2\\
                  
                  \mathbf{elif}\;t\_1 \leq -1 \cdot 10^{-275}:\\
                  \;\;\;\;\mathsf{fma}\left(\frac{J\_m \cdot J\_m}{U\_m}, -2, -U\_m\right)\\
                  
                  \mathbf{else}:\\
                  \;\;\;\;U\_m\\
                  
                  
                  \end{array}
                  \end{array}
                  \end{array}
                  
                  Derivation
                  1. Split input into 4 regimes
                  2. if (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64))))) < -1.9999999999999999e304

                    1. Initial program 8.1%

                      \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
                    2. Taylor expanded in J around 0

                      \[\leadsto \color{blue}{-1 \cdot U} \]
                    3. Step-by-step derivation
                      1. mul-1-negN/A

                        \[\leadsto \mathsf{neg}\left(U\right) \]
                      2. lower-neg.f6497.7

                        \[\leadsto -U \]
                    4. Applied rewrites97.7%

                      \[\leadsto \color{blue}{-U} \]

                    if -1.9999999999999999e304 < (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64))))) < -1.9999999999999999e-129

                    1. Initial program 99.8%

                      \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
                    2. Taylor expanded in K around 0

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

                        \[\leadsto \left(J \cdot \sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}}\right) \cdot \color{blue}{-2} \]
                      2. lower-*.f64N/A

                        \[\leadsto \left(J \cdot \sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}}\right) \cdot \color{blue}{-2} \]
                      3. *-commutativeN/A

                        \[\leadsto \left(\sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}} \cdot J\right) \cdot -2 \]
                      4. lower-*.f64N/A

                        \[\leadsto \left(\sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}} \cdot J\right) \cdot -2 \]
                      5. lower-sqrt.f64N/A

                        \[\leadsto \left(\sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}} \cdot J\right) \cdot -2 \]
                      6. +-commutativeN/A

                        \[\leadsto \left(\sqrt{\frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}} + 1} \cdot J\right) \cdot -2 \]
                      7. *-commutativeN/A

                        \[\leadsto \left(\sqrt{\frac{{U}^{2}}{{J}^{2}} \cdot \frac{1}{4} + 1} \cdot J\right) \cdot -2 \]
                      8. lower-fma.f64N/A

                        \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{{U}^{2}}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                      9. lower-/.f64N/A

                        \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{{U}^{2}}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                      10. unpow2N/A

                        \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                      11. lower-*.f64N/A

                        \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                      12. unpow2N/A

                        \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{J \cdot J}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                      13. lower-*.f6463.5

                        \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{J \cdot J}, 0.25, 1\right)} \cdot J\right) \cdot -2 \]
                    4. Applied rewrites63.5%

                      \[\leadsto \color{blue}{\left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{J \cdot J}, 0.25, 1\right)} \cdot J\right) \cdot -2} \]
                    5. Taylor expanded in J around inf

                      \[\leadsto J \cdot -2 \]
                    6. Step-by-step derivation
                      1. Applied rewrites53.6%

                        \[\leadsto J \cdot -2 \]

                      if -1.9999999999999999e-129 < (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64))))) < -9.99999999999999934e-276

                      1. Initial program 99.8%

                        \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
                      2. Taylor expanded in K around 0

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

                          \[\leadsto \left(J \cdot \sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}}\right) \cdot \color{blue}{-2} \]
                        2. lower-*.f64N/A

                          \[\leadsto \left(J \cdot \sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}}\right) \cdot \color{blue}{-2} \]
                        3. *-commutativeN/A

                          \[\leadsto \left(\sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}} \cdot J\right) \cdot -2 \]
                        4. lower-*.f64N/A

                          \[\leadsto \left(\sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}} \cdot J\right) \cdot -2 \]
                        5. lower-sqrt.f64N/A

                          \[\leadsto \left(\sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}} \cdot J\right) \cdot -2 \]
                        6. +-commutativeN/A

                          \[\leadsto \left(\sqrt{\frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}} + 1} \cdot J\right) \cdot -2 \]
                        7. *-commutativeN/A

                          \[\leadsto \left(\sqrt{\frac{{U}^{2}}{{J}^{2}} \cdot \frac{1}{4} + 1} \cdot J\right) \cdot -2 \]
                        8. lower-fma.f64N/A

                          \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{{U}^{2}}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                        9. lower-/.f64N/A

                          \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{{U}^{2}}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                        10. unpow2N/A

                          \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                        11. lower-*.f64N/A

                          \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                        12. unpow2N/A

                          \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{J \cdot J}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                        13. lower-*.f6413.5

                          \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{J \cdot J}, 0.25, 1\right)} \cdot J\right) \cdot -2 \]
                      4. Applied rewrites13.5%

                        \[\leadsto \color{blue}{\left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{J \cdot J}, 0.25, 1\right)} \cdot J\right) \cdot -2} \]
                      5. Taylor expanded in U around 0

                        \[\leadsto -2 \cdot J + \color{blue}{\frac{-1}{4} \cdot \frac{{U}^{2}}{J}} \]
                      6. Step-by-step derivation
                        1. lower-fma.f64N/A

                          \[\leadsto \mathsf{fma}\left(-2, J, \frac{-1}{4} \cdot \frac{{U}^{2}}{J}\right) \]
                        2. lower-*.f64N/A

                          \[\leadsto \mathsf{fma}\left(-2, J, \frac{-1}{4} \cdot \frac{{U}^{2}}{J}\right) \]
                        3. lower-/.f64N/A

                          \[\leadsto \mathsf{fma}\left(-2, J, \frac{-1}{4} \cdot \frac{{U}^{2}}{J}\right) \]
                        4. pow2N/A

                          \[\leadsto \mathsf{fma}\left(-2, J, \frac{-1}{4} \cdot \frac{U \cdot U}{J}\right) \]
                        5. lift-*.f6438.6

                          \[\leadsto \mathsf{fma}\left(-2, J, -0.25 \cdot \frac{U \cdot U}{J}\right) \]
                      7. Applied rewrites38.6%

                        \[\leadsto \mathsf{fma}\left(-2, \color{blue}{J}, -0.25 \cdot \frac{U \cdot U}{J}\right) \]
                      8. Taylor expanded in J around 0

                        \[\leadsto -2 \cdot \frac{{J}^{2}}{U} + \color{blue}{-1 \cdot U} \]
                      9. Step-by-step derivation
                        1. *-commutativeN/A

                          \[\leadsto \frac{{J}^{2}}{U} \cdot -2 + -1 \cdot U \]
                        2. lower-fma.f64N/A

                          \[\leadsto \mathsf{fma}\left(\frac{{J}^{2}}{U}, -2, -1 \cdot U\right) \]
                        3. pow2N/A

                          \[\leadsto \mathsf{fma}\left(\frac{J \cdot J}{U}, -2, -1 \cdot U\right) \]
                        4. lift-/.f64N/A

                          \[\leadsto \mathsf{fma}\left(\frac{J \cdot J}{U}, -2, -1 \cdot U\right) \]
                        5. lift-*.f64N/A

                          \[\leadsto \mathsf{fma}\left(\frac{J \cdot J}{U}, -2, -1 \cdot U\right) \]
                        6. mul-1-negN/A

                          \[\leadsto \mathsf{fma}\left(\frac{J \cdot J}{U}, -2, \mathsf{neg}\left(U\right)\right) \]
                        7. lift-neg.f6453.6

                          \[\leadsto \mathsf{fma}\left(\frac{J \cdot J}{U}, -2, -U\right) \]
                      10. Applied rewrites53.6%

                        \[\leadsto \mathsf{fma}\left(\frac{J \cdot J}{U}, \color{blue}{-2}, -U\right) \]

                      if -9.99999999999999934e-276 < (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64)))))

                      1. Initial program 73.2%

                        \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
                      2. Taylor expanded in U around -inf

                        \[\leadsto \color{blue}{U} \]
                      3. Step-by-step derivation
                        1. Applied rewrites53.1%

                          \[\leadsto \color{blue}{U} \]
                      4. Recombined 4 regimes into one program.
                      5. Add Preprocessing

                      Alternative 9: 63.1% accurate, 0.3× speedup?

                      \[\begin{array}{l} U_m = \left|U\right| \\ J\_m = \left|J\right| \\ J\_s = \mathsf{copysign}\left(1, J\right) \\ \begin{array}{l} t_0 := \cos \left(\frac{K}{2}\right)\\ t_1 := \left(\left(-2 \cdot J\_m\right) \cdot t\_0\right) \cdot \sqrt{1 + {\left(\frac{U\_m}{\left(2 \cdot J\_m\right) \cdot t\_0}\right)}^{2}}\\ J\_s \cdot \begin{array}{l} \mathbf{if}\;t\_1 \leq -2 \cdot 10^{+304}:\\ \;\;\;\;-U\_m\\ \mathbf{elif}\;t\_1 \leq -2 \cdot 10^{-129}:\\ \;\;\;\;J\_m \cdot -2\\ \mathbf{elif}\;t\_1 \leq -1 \cdot 10^{-275}:\\ \;\;\;\;-U\_m\\ \mathbf{else}:\\ \;\;\;\;U\_m\\ \end{array} \end{array} \end{array} \]
                      U_m = (fabs.f64 U)
                      J\_m = (fabs.f64 J)
                      J\_s = (copysign.f64 #s(literal 1 binary64) J)
                      (FPCore (J_s J_m K U_m)
                       :precision binary64
                       (let* ((t_0 (cos (/ K 2.0)))
                              (t_1
                               (*
                                (* (* -2.0 J_m) t_0)
                                (sqrt (+ 1.0 (pow (/ U_m (* (* 2.0 J_m) t_0)) 2.0))))))
                         (*
                          J_s
                          (if (<= t_1 -2e+304)
                            (- U_m)
                            (if (<= t_1 -2e-129) (* J_m -2.0) (if (<= t_1 -1e-275) (- U_m) U_m))))))
                      U_m = fabs(U);
                      J\_m = fabs(J);
                      J\_s = copysign(1.0, J);
                      double code(double J_s, double J_m, double K, double U_m) {
                      	double t_0 = cos((K / 2.0));
                      	double t_1 = ((-2.0 * J_m) * t_0) * sqrt((1.0 + pow((U_m / ((2.0 * J_m) * t_0)), 2.0)));
                      	double tmp;
                      	if (t_1 <= -2e+304) {
                      		tmp = -U_m;
                      	} else if (t_1 <= -2e-129) {
                      		tmp = J_m * -2.0;
                      	} else if (t_1 <= -1e-275) {
                      		tmp = -U_m;
                      	} else {
                      		tmp = U_m;
                      	}
                      	return J_s * tmp;
                      }
                      
                      U_m =     private
                      J\_m =     private
                      J\_s =     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(j_s, j_m, k, u_m)
                      use fmin_fmax_functions
                          real(8), intent (in) :: j_s
                          real(8), intent (in) :: j_m
                          real(8), intent (in) :: k
                          real(8), intent (in) :: u_m
                          real(8) :: t_0
                          real(8) :: t_1
                          real(8) :: tmp
                          t_0 = cos((k / 2.0d0))
                          t_1 = (((-2.0d0) * j_m) * t_0) * sqrt((1.0d0 + ((u_m / ((2.0d0 * j_m) * t_0)) ** 2.0d0)))
                          if (t_1 <= (-2d+304)) then
                              tmp = -u_m
                          else if (t_1 <= (-2d-129)) then
                              tmp = j_m * (-2.0d0)
                          else if (t_1 <= (-1d-275)) then
                              tmp = -u_m
                          else
                              tmp = u_m
                          end if
                          code = j_s * tmp
                      end function
                      
                      U_m = Math.abs(U);
                      J\_m = Math.abs(J);
                      J\_s = Math.copySign(1.0, J);
                      public static double code(double J_s, double J_m, double K, double U_m) {
                      	double t_0 = Math.cos((K / 2.0));
                      	double t_1 = ((-2.0 * J_m) * t_0) * Math.sqrt((1.0 + Math.pow((U_m / ((2.0 * J_m) * t_0)), 2.0)));
                      	double tmp;
                      	if (t_1 <= -2e+304) {
                      		tmp = -U_m;
                      	} else if (t_1 <= -2e-129) {
                      		tmp = J_m * -2.0;
                      	} else if (t_1 <= -1e-275) {
                      		tmp = -U_m;
                      	} else {
                      		tmp = U_m;
                      	}
                      	return J_s * tmp;
                      }
                      
                      U_m = math.fabs(U)
                      J\_m = math.fabs(J)
                      J\_s = math.copysign(1.0, J)
                      def code(J_s, J_m, K, U_m):
                      	t_0 = math.cos((K / 2.0))
                      	t_1 = ((-2.0 * J_m) * t_0) * math.sqrt((1.0 + math.pow((U_m / ((2.0 * J_m) * t_0)), 2.0)))
                      	tmp = 0
                      	if t_1 <= -2e+304:
                      		tmp = -U_m
                      	elif t_1 <= -2e-129:
                      		tmp = J_m * -2.0
                      	elif t_1 <= -1e-275:
                      		tmp = -U_m
                      	else:
                      		tmp = U_m
                      	return J_s * tmp
                      
                      U_m = abs(U)
                      J\_m = abs(J)
                      J\_s = copysign(1.0, J)
                      function code(J_s, J_m, K, U_m)
                      	t_0 = cos(Float64(K / 2.0))
                      	t_1 = Float64(Float64(Float64(-2.0 * J_m) * t_0) * sqrt(Float64(1.0 + (Float64(U_m / Float64(Float64(2.0 * J_m) * t_0)) ^ 2.0))))
                      	tmp = 0.0
                      	if (t_1 <= -2e+304)
                      		tmp = Float64(-U_m);
                      	elseif (t_1 <= -2e-129)
                      		tmp = Float64(J_m * -2.0);
                      	elseif (t_1 <= -1e-275)
                      		tmp = Float64(-U_m);
                      	else
                      		tmp = U_m;
                      	end
                      	return Float64(J_s * tmp)
                      end
                      
                      U_m = abs(U);
                      J\_m = abs(J);
                      J\_s = sign(J) * abs(1.0);
                      function tmp_2 = code(J_s, J_m, K, U_m)
                      	t_0 = cos((K / 2.0));
                      	t_1 = ((-2.0 * J_m) * t_0) * sqrt((1.0 + ((U_m / ((2.0 * J_m) * t_0)) ^ 2.0)));
                      	tmp = 0.0;
                      	if (t_1 <= -2e+304)
                      		tmp = -U_m;
                      	elseif (t_1 <= -2e-129)
                      		tmp = J_m * -2.0;
                      	elseif (t_1 <= -1e-275)
                      		tmp = -U_m;
                      	else
                      		tmp = U_m;
                      	end
                      	tmp_2 = J_s * tmp;
                      end
                      
                      U_m = N[Abs[U], $MachinePrecision]
                      J\_m = N[Abs[J], $MachinePrecision]
                      J\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[J]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
                      code[J$95$s_, J$95$m_, K_, U$95$m_] := Block[{t$95$0 = N[Cos[N[(K / 2.0), $MachinePrecision]], $MachinePrecision]}, Block[{t$95$1 = N[(N[(N[(-2.0 * J$95$m), $MachinePrecision] * t$95$0), $MachinePrecision] * N[Sqrt[N[(1.0 + N[Power[N[(U$95$m / N[(N[(2.0 * J$95$m), $MachinePrecision] * t$95$0), $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]}, N[(J$95$s * If[LessEqual[t$95$1, -2e+304], (-U$95$m), If[LessEqual[t$95$1, -2e-129], N[(J$95$m * -2.0), $MachinePrecision], If[LessEqual[t$95$1, -1e-275], (-U$95$m), U$95$m]]]), $MachinePrecision]]]
                      
                      \begin{array}{l}
                      U_m = \left|U\right|
                      \\
                      J\_m = \left|J\right|
                      \\
                      J\_s = \mathsf{copysign}\left(1, J\right)
                      
                      \\
                      \begin{array}{l}
                      t_0 := \cos \left(\frac{K}{2}\right)\\
                      t_1 := \left(\left(-2 \cdot J\_m\right) \cdot t\_0\right) \cdot \sqrt{1 + {\left(\frac{U\_m}{\left(2 \cdot J\_m\right) \cdot t\_0}\right)}^{2}}\\
                      J\_s \cdot \begin{array}{l}
                      \mathbf{if}\;t\_1 \leq -2 \cdot 10^{+304}:\\
                      \;\;\;\;-U\_m\\
                      
                      \mathbf{elif}\;t\_1 \leq -2 \cdot 10^{-129}:\\
                      \;\;\;\;J\_m \cdot -2\\
                      
                      \mathbf{elif}\;t\_1 \leq -1 \cdot 10^{-275}:\\
                      \;\;\;\;-U\_m\\
                      
                      \mathbf{else}:\\
                      \;\;\;\;U\_m\\
                      
                      
                      \end{array}
                      \end{array}
                      \end{array}
                      
                      Derivation
                      1. Split input into 3 regimes
                      2. if (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64))))) < -1.9999999999999999e304 or -1.9999999999999999e-129 < (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64))))) < -9.99999999999999934e-276

                        1. Initial program 28.7%

                          \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
                        2. Taylor expanded in J around 0

                          \[\leadsto \color{blue}{-1 \cdot U} \]
                        3. Step-by-step derivation
                          1. mul-1-negN/A

                            \[\leadsto \mathsf{neg}\left(U\right) \]
                          2. lower-neg.f6487.8

                            \[\leadsto -U \]
                        4. Applied rewrites87.8%

                          \[\leadsto \color{blue}{-U} \]

                        if -1.9999999999999999e304 < (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64))))) < -1.9999999999999999e-129

                        1. Initial program 99.8%

                          \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
                        2. Taylor expanded in K around 0

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

                            \[\leadsto \left(J \cdot \sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}}\right) \cdot \color{blue}{-2} \]
                          2. lower-*.f64N/A

                            \[\leadsto \left(J \cdot \sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}}\right) \cdot \color{blue}{-2} \]
                          3. *-commutativeN/A

                            \[\leadsto \left(\sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}} \cdot J\right) \cdot -2 \]
                          4. lower-*.f64N/A

                            \[\leadsto \left(\sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}} \cdot J\right) \cdot -2 \]
                          5. lower-sqrt.f64N/A

                            \[\leadsto \left(\sqrt{1 + \frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}}} \cdot J\right) \cdot -2 \]
                          6. +-commutativeN/A

                            \[\leadsto \left(\sqrt{\frac{1}{4} \cdot \frac{{U}^{2}}{{J}^{2}} + 1} \cdot J\right) \cdot -2 \]
                          7. *-commutativeN/A

                            \[\leadsto \left(\sqrt{\frac{{U}^{2}}{{J}^{2}} \cdot \frac{1}{4} + 1} \cdot J\right) \cdot -2 \]
                          8. lower-fma.f64N/A

                            \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{{U}^{2}}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                          9. lower-/.f64N/A

                            \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{{U}^{2}}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                          10. unpow2N/A

                            \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                          11. lower-*.f64N/A

                            \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{{J}^{2}}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                          12. unpow2N/A

                            \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{J \cdot J}, \frac{1}{4}, 1\right)} \cdot J\right) \cdot -2 \]
                          13. lower-*.f6463.5

                            \[\leadsto \left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{J \cdot J}, 0.25, 1\right)} \cdot J\right) \cdot -2 \]
                        4. Applied rewrites63.5%

                          \[\leadsto \color{blue}{\left(\sqrt{\mathsf{fma}\left(\frac{U \cdot U}{J \cdot J}, 0.25, 1\right)} \cdot J\right) \cdot -2} \]
                        5. Taylor expanded in J around inf

                          \[\leadsto J \cdot -2 \]
                        6. Step-by-step derivation
                          1. Applied rewrites53.6%

                            \[\leadsto J \cdot -2 \]

                          if -9.99999999999999934e-276 < (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64)))))

                          1. Initial program 73.2%

                            \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
                          2. Taylor expanded in U around -inf

                            \[\leadsto \color{blue}{U} \]
                          3. Step-by-step derivation
                            1. Applied rewrites53.1%

                              \[\leadsto \color{blue}{U} \]
                          4. Recombined 3 regimes into one program.
                          5. Add Preprocessing

                          Alternative 10: 52.6% accurate, 1.0× speedup?

                          \[\begin{array}{l} U_m = \left|U\right| \\ J\_m = \left|J\right| \\ J\_s = \mathsf{copysign}\left(1, J\right) \\ \begin{array}{l} t_0 := \cos \left(\frac{K}{2}\right)\\ J\_s \cdot \begin{array}{l} \mathbf{if}\;\left(\left(-2 \cdot J\_m\right) \cdot t\_0\right) \cdot \sqrt{1 + {\left(\frac{U\_m}{\left(2 \cdot J\_m\right) \cdot t\_0}\right)}^{2}} \leq -1 \cdot 10^{-275}:\\ \;\;\;\;-U\_m\\ \mathbf{else}:\\ \;\;\;\;U\_m\\ \end{array} \end{array} \end{array} \]
                          U_m = (fabs.f64 U)
                          J\_m = (fabs.f64 J)
                          J\_s = (copysign.f64 #s(literal 1 binary64) J)
                          (FPCore (J_s J_m K U_m)
                           :precision binary64
                           (let* ((t_0 (cos (/ K 2.0))))
                             (*
                              J_s
                              (if (<=
                                   (*
                                    (* (* -2.0 J_m) t_0)
                                    (sqrt (+ 1.0 (pow (/ U_m (* (* 2.0 J_m) t_0)) 2.0))))
                                   -1e-275)
                                (- U_m)
                                U_m))))
                          U_m = fabs(U);
                          J\_m = fabs(J);
                          J\_s = copysign(1.0, J);
                          double code(double J_s, double J_m, double K, double U_m) {
                          	double t_0 = cos((K / 2.0));
                          	double tmp;
                          	if ((((-2.0 * J_m) * t_0) * sqrt((1.0 + pow((U_m / ((2.0 * J_m) * t_0)), 2.0)))) <= -1e-275) {
                          		tmp = -U_m;
                          	} else {
                          		tmp = U_m;
                          	}
                          	return J_s * tmp;
                          }
                          
                          U_m =     private
                          J\_m =     private
                          J\_s =     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(j_s, j_m, k, u_m)
                          use fmin_fmax_functions
                              real(8), intent (in) :: j_s
                              real(8), intent (in) :: j_m
                              real(8), intent (in) :: k
                              real(8), intent (in) :: u_m
                              real(8) :: t_0
                              real(8) :: tmp
                              t_0 = cos((k / 2.0d0))
                              if (((((-2.0d0) * j_m) * t_0) * sqrt((1.0d0 + ((u_m / ((2.0d0 * j_m) * t_0)) ** 2.0d0)))) <= (-1d-275)) then
                                  tmp = -u_m
                              else
                                  tmp = u_m
                              end if
                              code = j_s * tmp
                          end function
                          
                          U_m = Math.abs(U);
                          J\_m = Math.abs(J);
                          J\_s = Math.copySign(1.0, J);
                          public static double code(double J_s, double J_m, double K, double U_m) {
                          	double t_0 = Math.cos((K / 2.0));
                          	double tmp;
                          	if ((((-2.0 * J_m) * t_0) * Math.sqrt((1.0 + Math.pow((U_m / ((2.0 * J_m) * t_0)), 2.0)))) <= -1e-275) {
                          		tmp = -U_m;
                          	} else {
                          		tmp = U_m;
                          	}
                          	return J_s * tmp;
                          }
                          
                          U_m = math.fabs(U)
                          J\_m = math.fabs(J)
                          J\_s = math.copysign(1.0, J)
                          def code(J_s, J_m, K, U_m):
                          	t_0 = math.cos((K / 2.0))
                          	tmp = 0
                          	if (((-2.0 * J_m) * t_0) * math.sqrt((1.0 + math.pow((U_m / ((2.0 * J_m) * t_0)), 2.0)))) <= -1e-275:
                          		tmp = -U_m
                          	else:
                          		tmp = U_m
                          	return J_s * tmp
                          
                          U_m = abs(U)
                          J\_m = abs(J)
                          J\_s = copysign(1.0, J)
                          function code(J_s, J_m, K, U_m)
                          	t_0 = cos(Float64(K / 2.0))
                          	tmp = 0.0
                          	if (Float64(Float64(Float64(-2.0 * J_m) * t_0) * sqrt(Float64(1.0 + (Float64(U_m / Float64(Float64(2.0 * J_m) * t_0)) ^ 2.0)))) <= -1e-275)
                          		tmp = Float64(-U_m);
                          	else
                          		tmp = U_m;
                          	end
                          	return Float64(J_s * tmp)
                          end
                          
                          U_m = abs(U);
                          J\_m = abs(J);
                          J\_s = sign(J) * abs(1.0);
                          function tmp_2 = code(J_s, J_m, K, U_m)
                          	t_0 = cos((K / 2.0));
                          	tmp = 0.0;
                          	if ((((-2.0 * J_m) * t_0) * sqrt((1.0 + ((U_m / ((2.0 * J_m) * t_0)) ^ 2.0)))) <= -1e-275)
                          		tmp = -U_m;
                          	else
                          		tmp = U_m;
                          	end
                          	tmp_2 = J_s * tmp;
                          end
                          
                          U_m = N[Abs[U], $MachinePrecision]
                          J\_m = N[Abs[J], $MachinePrecision]
                          J\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[J]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
                          code[J$95$s_, J$95$m_, K_, U$95$m_] := Block[{t$95$0 = N[Cos[N[(K / 2.0), $MachinePrecision]], $MachinePrecision]}, N[(J$95$s * If[LessEqual[N[(N[(N[(-2.0 * J$95$m), $MachinePrecision] * t$95$0), $MachinePrecision] * N[Sqrt[N[(1.0 + N[Power[N[(U$95$m / N[(N[(2.0 * J$95$m), $MachinePrecision] * t$95$0), $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], -1e-275], (-U$95$m), U$95$m]), $MachinePrecision]]
                          
                          \begin{array}{l}
                          U_m = \left|U\right|
                          \\
                          J\_m = \left|J\right|
                          \\
                          J\_s = \mathsf{copysign}\left(1, J\right)
                          
                          \\
                          \begin{array}{l}
                          t_0 := \cos \left(\frac{K}{2}\right)\\
                          J\_s \cdot \begin{array}{l}
                          \mathbf{if}\;\left(\left(-2 \cdot J\_m\right) \cdot t\_0\right) \cdot \sqrt{1 + {\left(\frac{U\_m}{\left(2 \cdot J\_m\right) \cdot t\_0}\right)}^{2}} \leq -1 \cdot 10^{-275}:\\
                          \;\;\;\;-U\_m\\
                          
                          \mathbf{else}:\\
                          \;\;\;\;U\_m\\
                          
                          
                          \end{array}
                          \end{array}
                          \end{array}
                          
                          Derivation
                          1. Split input into 2 regimes
                          2. if (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64))))) < -9.99999999999999934e-276

                            1. Initial program 73.3%

                              \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
                            2. Taylor expanded in J around 0

                              \[\leadsto \color{blue}{-1 \cdot U} \]
                            3. Step-by-step derivation
                              1. mul-1-negN/A

                                \[\leadsto \mathsf{neg}\left(U\right) \]
                              2. lower-neg.f6452.4

                                \[\leadsto -U \]
                            4. Applied rewrites52.4%

                              \[\leadsto \color{blue}{-U} \]

                            if -9.99999999999999934e-276 < (*.f64 (*.f64 (*.f64 #s(literal -2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64)))) (sqrt.f64 (+.f64 #s(literal 1 binary64) (pow.f64 (/.f64 U (*.f64 (*.f64 #s(literal 2 binary64) J) (cos.f64 (/.f64 K #s(literal 2 binary64))))) #s(literal 2 binary64)))))

                            1. Initial program 73.2%

                              \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
                            2. Taylor expanded in U around -inf

                              \[\leadsto \color{blue}{U} \]
                            3. Step-by-step derivation
                              1. Applied rewrites53.1%

                                \[\leadsto \color{blue}{U} \]
                            4. Recombined 2 regimes into one program.
                            5. Add Preprocessing

                            Alternative 11: 14.3% accurate, 110.0× speedup?

                            \[\begin{array}{l} U_m = \left|U\right| \\ J\_m = \left|J\right| \\ J\_s = \mathsf{copysign}\left(1, J\right) \\ J\_s \cdot U\_m \end{array} \]
                            U_m = (fabs.f64 U)
                            J\_m = (fabs.f64 J)
                            J\_s = (copysign.f64 #s(literal 1 binary64) J)
                            (FPCore (J_s J_m K U_m) :precision binary64 (* J_s U_m))
                            U_m = fabs(U);
                            J\_m = fabs(J);
                            J\_s = copysign(1.0, J);
                            double code(double J_s, double J_m, double K, double U_m) {
                            	return J_s * U_m;
                            }
                            
                            U_m =     private
                            J\_m =     private
                            J\_s =     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(j_s, j_m, k, u_m)
                            use fmin_fmax_functions
                                real(8), intent (in) :: j_s
                                real(8), intent (in) :: j_m
                                real(8), intent (in) :: k
                                real(8), intent (in) :: u_m
                                code = j_s * u_m
                            end function
                            
                            U_m = Math.abs(U);
                            J\_m = Math.abs(J);
                            J\_s = Math.copySign(1.0, J);
                            public static double code(double J_s, double J_m, double K, double U_m) {
                            	return J_s * U_m;
                            }
                            
                            U_m = math.fabs(U)
                            J\_m = math.fabs(J)
                            J\_s = math.copysign(1.0, J)
                            def code(J_s, J_m, K, U_m):
                            	return J_s * U_m
                            
                            U_m = abs(U)
                            J\_m = abs(J)
                            J\_s = copysign(1.0, J)
                            function code(J_s, J_m, K, U_m)
                            	return Float64(J_s * U_m)
                            end
                            
                            U_m = abs(U);
                            J\_m = abs(J);
                            J\_s = sign(J) * abs(1.0);
                            function tmp = code(J_s, J_m, K, U_m)
                            	tmp = J_s * U_m;
                            end
                            
                            U_m = N[Abs[U], $MachinePrecision]
                            J\_m = N[Abs[J], $MachinePrecision]
                            J\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[J]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
                            code[J$95$s_, J$95$m_, K_, U$95$m_] := N[(J$95$s * U$95$m), $MachinePrecision]
                            
                            \begin{array}{l}
                            U_m = \left|U\right|
                            \\
                            J\_m = \left|J\right|
                            \\
                            J\_s = \mathsf{copysign}\left(1, J\right)
                            
                            \\
                            J\_s \cdot U\_m
                            \end{array}
                            
                            Derivation
                            1. Initial program 73.3%

                              \[\left(\left(-2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)\right) \cdot \sqrt{1 + {\left(\frac{U}{\left(2 \cdot J\right) \cdot \cos \left(\frac{K}{2}\right)}\right)}^{2}} \]
                            2. Taylor expanded in U around -inf

                              \[\leadsto \color{blue}{U} \]
                            3. Step-by-step derivation
                              1. Applied rewrites14.3%

                                \[\leadsto \color{blue}{U} \]
                              2. Add Preprocessing

                              Reproduce

                              ?
                              herbie shell --seed 2025111 
                              (FPCore (J K U)
                                :name "Maksimov and Kolovsky, Equation (3)"
                                :precision binary64
                                (* (* (* -2.0 J) (cos (/ K 2.0))) (sqrt (+ 1.0 (pow (/ U (* (* 2.0 J) (cos (/ K 2.0)))) 2.0)))))