Maksimov and Kolovsky, Equation (32)

Percentage Accurate: 76.7% → 96.6%
Time: 4.5s
Alternatives: 7
Speedup: 2.3×

Specification

?
\[\begin{array}{l} \\ \cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\left(-{\left(\frac{m + n}{2} - M\right)}^{2}\right) - \left(\ell - \left|m - n\right|\right)} \end{array} \]
(FPCore (K m n M l)
 :precision binary64
 (*
  (cos (- (/ (* K (+ m n)) 2.0) M))
  (exp (- (- (pow (- (/ (+ m n) 2.0) M) 2.0)) (- l (fabs (- m n)))))))
double code(double K, double m, double n, double M, double l) {
	return cos((((K * (m + n)) / 2.0) - M)) * exp((-pow((((m + n) / 2.0) - M), 2.0) - (l - fabs((m - n)))));
}
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(k, m, n, m_1, l)
use fmin_fmax_functions
    real(8), intent (in) :: k
    real(8), intent (in) :: m
    real(8), intent (in) :: n
    real(8), intent (in) :: m_1
    real(8), intent (in) :: l
    code = cos((((k * (m + n)) / 2.0d0) - m_1)) * exp((-((((m + n) / 2.0d0) - m_1) ** 2.0d0) - (l - abs((m - n)))))
end function
public static double code(double K, double m, double n, double M, double l) {
	return Math.cos((((K * (m + n)) / 2.0) - M)) * Math.exp((-Math.pow((((m + n) / 2.0) - M), 2.0) - (l - Math.abs((m - n)))));
}
def code(K, m, n, M, l):
	return math.cos((((K * (m + n)) / 2.0) - M)) * math.exp((-math.pow((((m + n) / 2.0) - M), 2.0) - (l - math.fabs((m - n)))))
function code(K, m, n, M, l)
	return Float64(cos(Float64(Float64(Float64(K * Float64(m + n)) / 2.0) - M)) * exp(Float64(Float64(-(Float64(Float64(Float64(m + n) / 2.0) - M) ^ 2.0)) - Float64(l - abs(Float64(m - n))))))
end
function tmp = code(K, m, n, M, l)
	tmp = cos((((K * (m + n)) / 2.0) - M)) * exp((-((((m + n) / 2.0) - M) ^ 2.0) - (l - abs((m - n)))));
end
code[K_, m_, n_, M_, l_] := N[(N[Cos[N[(N[(N[(K * N[(m + n), $MachinePrecision]), $MachinePrecision] / 2.0), $MachinePrecision] - M), $MachinePrecision]], $MachinePrecision] * N[Exp[N[((-N[Power[N[(N[(N[(m + n), $MachinePrecision] / 2.0), $MachinePrecision] - M), $MachinePrecision], 2.0], $MachinePrecision]) - N[(l - N[Abs[N[(m - n), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\left(-{\left(\frac{m + n}{2} - M\right)}^{2}\right) - \left(\ell - \left|m - n\right|\right)}
\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 7 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: 76.7% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\left(-{\left(\frac{m + n}{2} - M\right)}^{2}\right) - \left(\ell - \left|m - n\right|\right)} \end{array} \]
(FPCore (K m n M l)
 :precision binary64
 (*
  (cos (- (/ (* K (+ m n)) 2.0) M))
  (exp (- (- (pow (- (/ (+ m n) 2.0) M) 2.0)) (- l (fabs (- m n)))))))
double code(double K, double m, double n, double M, double l) {
	return cos((((K * (m + n)) / 2.0) - M)) * exp((-pow((((m + n) / 2.0) - M), 2.0) - (l - fabs((m - n)))));
}
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(k, m, n, m_1, l)
use fmin_fmax_functions
    real(8), intent (in) :: k
    real(8), intent (in) :: m
    real(8), intent (in) :: n
    real(8), intent (in) :: m_1
    real(8), intent (in) :: l
    code = cos((((k * (m + n)) / 2.0d0) - m_1)) * exp((-((((m + n) / 2.0d0) - m_1) ** 2.0d0) - (l - abs((m - n)))))
end function
public static double code(double K, double m, double n, double M, double l) {
	return Math.cos((((K * (m + n)) / 2.0) - M)) * Math.exp((-Math.pow((((m + n) / 2.0) - M), 2.0) - (l - Math.abs((m - n)))));
}
def code(K, m, n, M, l):
	return math.cos((((K * (m + n)) / 2.0) - M)) * math.exp((-math.pow((((m + n) / 2.0) - M), 2.0) - (l - math.fabs((m - n)))))
function code(K, m, n, M, l)
	return Float64(cos(Float64(Float64(Float64(K * Float64(m + n)) / 2.0) - M)) * exp(Float64(Float64(-(Float64(Float64(Float64(m + n) / 2.0) - M) ^ 2.0)) - Float64(l - abs(Float64(m - n))))))
end
function tmp = code(K, m, n, M, l)
	tmp = cos((((K * (m + n)) / 2.0) - M)) * exp((-((((m + n) / 2.0) - M) ^ 2.0) - (l - abs((m - n)))));
end
code[K_, m_, n_, M_, l_] := N[(N[Cos[N[(N[(N[(K * N[(m + n), $MachinePrecision]), $MachinePrecision] / 2.0), $MachinePrecision] - M), $MachinePrecision]], $MachinePrecision] * N[Exp[N[((-N[Power[N[(N[(N[(m + n), $MachinePrecision] / 2.0), $MachinePrecision] - M), $MachinePrecision], 2.0], $MachinePrecision]) - N[(l - N[Abs[N[(m - n), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\left(-{\left(\frac{m + n}{2} - M\right)}^{2}\right) - \left(\ell - \left|m - n\right|\right)}
\end{array}

Alternative 1: 96.6% accurate, 2.2× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_0 := 0.5 \cdot \left(n + m\right) - M\\ 1 \cdot e^{\left|n - m\right| - \mathsf{fma}\left(t\_0, t\_0, \ell\right)} \end{array} \end{array} \]
(FPCore (K m n M l)
 :precision binary64
 (let* ((t_0 (- (* 0.5 (+ n m)) M)))
   (* 1.0 (exp (- (fabs (- n m)) (fma t_0 t_0 l))))))
double code(double K, double m, double n, double M, double l) {
	double t_0 = (0.5 * (n + m)) - M;
	return 1.0 * exp((fabs((n - m)) - fma(t_0, t_0, l)));
}
function code(K, m, n, M, l)
	t_0 = Float64(Float64(0.5 * Float64(n + m)) - M)
	return Float64(1.0 * exp(Float64(abs(Float64(n - m)) - fma(t_0, t_0, l))))
end
code[K_, m_, n_, M_, l_] := Block[{t$95$0 = N[(N[(0.5 * N[(n + m), $MachinePrecision]), $MachinePrecision] - M), $MachinePrecision]}, N[(1.0 * N[Exp[N[(N[Abs[N[(n - m), $MachinePrecision]], $MachinePrecision] - N[(t$95$0 * t$95$0 + l), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := 0.5 \cdot \left(n + m\right) - M\\
1 \cdot e^{\left|n - m\right| - \mathsf{fma}\left(t\_0, t\_0, \ell\right)}
\end{array}
\end{array}
Derivation
  1. Initial program 76.7%

    \[\cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\left(-{\left(\frac{m + n}{2} - M\right)}^{2}\right) - \left(\ell - \left|m - n\right|\right)} \]
  2. Taylor expanded in K around 0

    \[\leadsto \color{blue}{\cos \left(\mathsf{neg}\left(M\right)\right) \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
  3. Step-by-step derivation
    1. cos-negN/A

      \[\leadsto \cos M \cdot e^{\color{blue}{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
    2. lower-*.f64N/A

      \[\leadsto \cos M \cdot \color{blue}{e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
    3. lower-cos.f64N/A

      \[\leadsto \cos M \cdot e^{\color{blue}{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
    4. lower-exp.f64N/A

      \[\leadsto \cos M \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
    5. lower--.f64N/A

      \[\leadsto \cos M \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
    6. fabs-subN/A

      \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
    7. lower-fabs.f64N/A

      \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
    8. lower--.f64N/A

      \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
    9. +-commutativeN/A

      \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left({\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2} + \ell\right)} \]
  4. Applied rewrites96.8%

    \[\leadsto \color{blue}{\cos M \cdot e^{\left|n - m\right| - \mathsf{fma}\left(0.5 \cdot \left(n + m\right) - M, 0.5 \cdot \left(n + m\right) - M, \ell\right)}} \]
  5. Taylor expanded in M around 0

    \[\leadsto 1 \cdot e^{\color{blue}{\left|n - m\right| - \mathsf{fma}\left(\frac{1}{2} \cdot \left(n + m\right) - M, \frac{1}{2} \cdot \left(n + m\right) - M, \ell\right)}} \]
  6. Step-by-step derivation
    1. Applied rewrites96.6%

      \[\leadsto 1 \cdot e^{\color{blue}{\left|n - m\right| - \mathsf{fma}\left(0.5 \cdot \left(n + m\right) - M, 0.5 \cdot \left(n + m\right) - M, \ell\right)}} \]
    2. Add Preprocessing

    Alternative 2: 95.0% accurate, 2.3× speedup?

    \[\begin{array}{l} \\ \begin{array}{l} t_0 := 1 \cdot e^{-1 \cdot \left(M \cdot M\right)}\\ \mathbf{if}\;M \leq -1 \cdot 10^{+82}:\\ \;\;\;\;t\_0\\ \mathbf{elif}\;M \leq 2 \cdot 10^{+17}:\\ \;\;\;\;e^{\left|n - m\right| - \left(\ell + 0.25 \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)}\\ \mathbf{else}:\\ \;\;\;\;t\_0\\ \end{array} \end{array} \]
    (FPCore (K m n M l)
     :precision binary64
     (let* ((t_0 (* 1.0 (exp (* -1.0 (* M M))))))
       (if (<= M -1e+82)
         t_0
         (if (<= M 2e+17)
           (exp (- (fabs (- n m)) (+ l (* 0.25 (* (+ m n) (+ m n))))))
           t_0))))
    double code(double K, double m, double n, double M, double l) {
    	double t_0 = 1.0 * exp((-1.0 * (M * M)));
    	double tmp;
    	if (M <= -1e+82) {
    		tmp = t_0;
    	} else if (M <= 2e+17) {
    		tmp = exp((fabs((n - m)) - (l + (0.25 * ((m + n) * (m + n))))));
    	} else {
    		tmp = t_0;
    	}
    	return tmp;
    }
    
    module fmin_fmax_functions
        implicit none
        private
        public fmax
        public fmin
    
        interface fmax
            module procedure fmax88
            module procedure fmax44
            module procedure fmax84
            module procedure fmax48
        end interface
        interface fmin
            module procedure fmin88
            module procedure fmin44
            module procedure fmin84
            module procedure fmin48
        end interface
    contains
        real(8) function fmax88(x, y) result (res)
            real(8), intent (in) :: x
            real(8), intent (in) :: y
            res = merge(y, merge(x, max(x, y), y /= y), x /= x)
        end function
        real(4) function fmax44(x, y) result (res)
            real(4), intent (in) :: x
            real(4), intent (in) :: y
            res = merge(y, merge(x, max(x, y), y /= y), x /= x)
        end function
        real(8) function fmax84(x, y) result(res)
            real(8), intent (in) :: x
            real(4), intent (in) :: y
            res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
        end function
        real(8) function fmax48(x, y) result(res)
            real(4), intent (in) :: x
            real(8), intent (in) :: y
            res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
        end function
        real(8) function fmin88(x, y) result (res)
            real(8), intent (in) :: x
            real(8), intent (in) :: y
            res = merge(y, merge(x, min(x, y), y /= y), x /= x)
        end function
        real(4) function fmin44(x, y) result (res)
            real(4), intent (in) :: x
            real(4), intent (in) :: y
            res = merge(y, merge(x, min(x, y), y /= y), x /= x)
        end function
        real(8) function fmin84(x, y) result(res)
            real(8), intent (in) :: x
            real(4), intent (in) :: y
            res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
        end function
        real(8) function fmin48(x, y) result(res)
            real(4), intent (in) :: x
            real(8), intent (in) :: y
            res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
        end function
    end module
    
    real(8) function code(k, m, n, m_1, l)
    use fmin_fmax_functions
        real(8), intent (in) :: k
        real(8), intent (in) :: m
        real(8), intent (in) :: n
        real(8), intent (in) :: m_1
        real(8), intent (in) :: l
        real(8) :: t_0
        real(8) :: tmp
        t_0 = 1.0d0 * exp(((-1.0d0) * (m_1 * m_1)))
        if (m_1 <= (-1d+82)) then
            tmp = t_0
        else if (m_1 <= 2d+17) then
            tmp = exp((abs((n - m)) - (l + (0.25d0 * ((m + n) * (m + n))))))
        else
            tmp = t_0
        end if
        code = tmp
    end function
    
    public static double code(double K, double m, double n, double M, double l) {
    	double t_0 = 1.0 * Math.exp((-1.0 * (M * M)));
    	double tmp;
    	if (M <= -1e+82) {
    		tmp = t_0;
    	} else if (M <= 2e+17) {
    		tmp = Math.exp((Math.abs((n - m)) - (l + (0.25 * ((m + n) * (m + n))))));
    	} else {
    		tmp = t_0;
    	}
    	return tmp;
    }
    
    def code(K, m, n, M, l):
    	t_0 = 1.0 * math.exp((-1.0 * (M * M)))
    	tmp = 0
    	if M <= -1e+82:
    		tmp = t_0
    	elif M <= 2e+17:
    		tmp = math.exp((math.fabs((n - m)) - (l + (0.25 * ((m + n) * (m + n))))))
    	else:
    		tmp = t_0
    	return tmp
    
    function code(K, m, n, M, l)
    	t_0 = Float64(1.0 * exp(Float64(-1.0 * Float64(M * M))))
    	tmp = 0.0
    	if (M <= -1e+82)
    		tmp = t_0;
    	elseif (M <= 2e+17)
    		tmp = exp(Float64(abs(Float64(n - m)) - Float64(l + Float64(0.25 * Float64(Float64(m + n) * Float64(m + n))))));
    	else
    		tmp = t_0;
    	end
    	return tmp
    end
    
    function tmp_2 = code(K, m, n, M, l)
    	t_0 = 1.0 * exp((-1.0 * (M * M)));
    	tmp = 0.0;
    	if (M <= -1e+82)
    		tmp = t_0;
    	elseif (M <= 2e+17)
    		tmp = exp((abs((n - m)) - (l + (0.25 * ((m + n) * (m + n))))));
    	else
    		tmp = t_0;
    	end
    	tmp_2 = tmp;
    end
    
    code[K_, m_, n_, M_, l_] := Block[{t$95$0 = N[(1.0 * N[Exp[N[(-1.0 * N[(M * M), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]}, If[LessEqual[M, -1e+82], t$95$0, If[LessEqual[M, 2e+17], N[Exp[N[(N[Abs[N[(n - m), $MachinePrecision]], $MachinePrecision] - N[(l + N[(0.25 * N[(N[(m + n), $MachinePrecision] * N[(m + n), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision], t$95$0]]]
    
    \begin{array}{l}
    
    \\
    \begin{array}{l}
    t_0 := 1 \cdot e^{-1 \cdot \left(M \cdot M\right)}\\
    \mathbf{if}\;M \leq -1 \cdot 10^{+82}:\\
    \;\;\;\;t\_0\\
    
    \mathbf{elif}\;M \leq 2 \cdot 10^{+17}:\\
    \;\;\;\;e^{\left|n - m\right| - \left(\ell + 0.25 \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)}\\
    
    \mathbf{else}:\\
    \;\;\;\;t\_0\\
    
    
    \end{array}
    \end{array}
    
    Derivation
    1. Split input into 2 regimes
    2. if M < -9.9999999999999996e81 or 2e17 < M

      1. Initial program 76.7%

        \[\cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\left(-{\left(\frac{m + n}{2} - M\right)}^{2}\right) - \left(\ell - \left|m - n\right|\right)} \]
      2. Taylor expanded in K around 0

        \[\leadsto \color{blue}{\cos \left(\mathsf{neg}\left(M\right)\right) \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
      3. Step-by-step derivation
        1. cos-negN/A

          \[\leadsto \cos M \cdot e^{\color{blue}{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
        2. lower-*.f64N/A

          \[\leadsto \cos M \cdot \color{blue}{e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
        3. lower-cos.f64N/A

          \[\leadsto \cos M \cdot e^{\color{blue}{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
        4. lower-exp.f64N/A

          \[\leadsto \cos M \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
        5. lower--.f64N/A

          \[\leadsto \cos M \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
        6. fabs-subN/A

          \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
        7. lower-fabs.f64N/A

          \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
        8. lower--.f64N/A

          \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
        9. +-commutativeN/A

          \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left({\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2} + \ell\right)} \]
      4. Applied rewrites96.8%

        \[\leadsto \color{blue}{\cos M \cdot e^{\left|n - m\right| - \mathsf{fma}\left(0.5 \cdot \left(n + m\right) - M, 0.5 \cdot \left(n + m\right) - M, \ell\right)}} \]
      5. Taylor expanded in M around 0

        \[\leadsto 1 \cdot e^{\color{blue}{\left|n - m\right| - \mathsf{fma}\left(\frac{1}{2} \cdot \left(n + m\right) - M, \frac{1}{2} \cdot \left(n + m\right) - M, \ell\right)}} \]
      6. Step-by-step derivation
        1. Applied rewrites96.6%

          \[\leadsto 1 \cdot e^{\color{blue}{\left|n - m\right| - \mathsf{fma}\left(0.5 \cdot \left(n + m\right) - M, 0.5 \cdot \left(n + m\right) - M, \ell\right)}} \]
        2. Taylor expanded in M around inf

          \[\leadsto 1 \cdot e^{-1 \cdot {M}^{2}} \]
        3. Step-by-step derivation
          1. lower-*.f64N/A

            \[\leadsto 1 \cdot e^{-1 \cdot {M}^{2}} \]
          2. pow2N/A

            \[\leadsto 1 \cdot e^{-1 \cdot \left(M \cdot M\right)} \]
          3. lift-*.f6455.1

            \[\leadsto 1 \cdot e^{-1 \cdot \left(M \cdot M\right)} \]
        4. Applied rewrites55.1%

          \[\leadsto 1 \cdot e^{-1 \cdot \left(M \cdot M\right)} \]

        if -9.9999999999999996e81 < M < 2e17

        1. Initial program 76.7%

          \[\cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\left(-{\left(\frac{m + n}{2} - M\right)}^{2}\right) - \left(\ell - \left|m - n\right|\right)} \]
        2. Taylor expanded in K around 0

          \[\leadsto \color{blue}{\cos \left(\mathsf{neg}\left(M\right)\right) \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
        3. Step-by-step derivation
          1. cos-negN/A

            \[\leadsto \cos M \cdot e^{\color{blue}{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
          2. lower-*.f64N/A

            \[\leadsto \cos M \cdot \color{blue}{e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
          3. lower-cos.f64N/A

            \[\leadsto \cos M \cdot e^{\color{blue}{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
          4. lower-exp.f64N/A

            \[\leadsto \cos M \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
          5. lower--.f64N/A

            \[\leadsto \cos M \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
          6. fabs-subN/A

            \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
          7. lower-fabs.f64N/A

            \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
          8. lower--.f64N/A

            \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
          9. +-commutativeN/A

            \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left({\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2} + \ell\right)} \]
        4. Applied rewrites96.8%

          \[\leadsto \color{blue}{\cos M \cdot e^{\left|n - m\right| - \mathsf{fma}\left(0.5 \cdot \left(n + m\right) - M, 0.5 \cdot \left(n + m\right) - M, \ell\right)}} \]
        5. Taylor expanded in M around 0

          \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
        6. Step-by-step derivation
          1. fabs-subN/A

            \[\leadsto e^{\left|m - n\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
          2. lower-exp.f64N/A

            \[\leadsto e^{\left|m - n\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
          3. lower--.f64N/A

            \[\leadsto e^{\left|m - n\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
          4. fabs-subN/A

            \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
          5. lift--.f64N/A

            \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
          6. lift-fabs.f64N/A

            \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
          7. lower-+.f64N/A

            \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
          8. lower-*.f64N/A

            \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
          9. unpow2N/A

            \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
          10. lower-*.f64N/A

            \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
          11. lift-+.f64N/A

            \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
          12. lift-+.f6486.8

            \[\leadsto e^{\left|n - m\right| - \left(\ell + 0.25 \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
        7. Applied rewrites86.8%

          \[\leadsto e^{\left|n - m\right| - \left(\ell + 0.25 \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
      7. Recombined 2 regimes into one program.
      8. Add Preprocessing

      Alternative 3: 65.5% accurate, 3.3× speedup?

      \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;m \leq -12000000:\\ \;\;\;\;1 \cdot e^{-0.25 \cdot \left(m \cdot m\right)}\\ \mathbf{elif}\;m \leq 1.08 \cdot 10^{-159}:\\ \;\;\;\;1 \cdot e^{-1 \cdot \left(M \cdot M\right)}\\ \mathbf{else}:\\ \;\;\;\;e^{\left(n \cdot n\right) \cdot -0.25}\\ \end{array} \end{array} \]
      (FPCore (K m n M l)
       :precision binary64
       (if (<= m -12000000.0)
         (* 1.0 (exp (* -0.25 (* m m))))
         (if (<= m 1.08e-159)
           (* 1.0 (exp (* -1.0 (* M M))))
           (exp (* (* n n) -0.25)))))
      double code(double K, double m, double n, double M, double l) {
      	double tmp;
      	if (m <= -12000000.0) {
      		tmp = 1.0 * exp((-0.25 * (m * m)));
      	} else if (m <= 1.08e-159) {
      		tmp = 1.0 * exp((-1.0 * (M * M)));
      	} else {
      		tmp = exp(((n * n) * -0.25));
      	}
      	return tmp;
      }
      
      module fmin_fmax_functions
          implicit none
          private
          public fmax
          public fmin
      
          interface fmax
              module procedure fmax88
              module procedure fmax44
              module procedure fmax84
              module procedure fmax48
          end interface
          interface fmin
              module procedure fmin88
              module procedure fmin44
              module procedure fmin84
              module procedure fmin48
          end interface
      contains
          real(8) function fmax88(x, y) result (res)
              real(8), intent (in) :: x
              real(8), intent (in) :: y
              res = merge(y, merge(x, max(x, y), y /= y), x /= x)
          end function
          real(4) function fmax44(x, y) result (res)
              real(4), intent (in) :: x
              real(4), intent (in) :: y
              res = merge(y, merge(x, max(x, y), y /= y), x /= x)
          end function
          real(8) function fmax84(x, y) result(res)
              real(8), intent (in) :: x
              real(4), intent (in) :: y
              res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
          end function
          real(8) function fmax48(x, y) result(res)
              real(4), intent (in) :: x
              real(8), intent (in) :: y
              res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
          end function
          real(8) function fmin88(x, y) result (res)
              real(8), intent (in) :: x
              real(8), intent (in) :: y
              res = merge(y, merge(x, min(x, y), y /= y), x /= x)
          end function
          real(4) function fmin44(x, y) result (res)
              real(4), intent (in) :: x
              real(4), intent (in) :: y
              res = merge(y, merge(x, min(x, y), y /= y), x /= x)
          end function
          real(8) function fmin84(x, y) result(res)
              real(8), intent (in) :: x
              real(4), intent (in) :: y
              res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
          end function
          real(8) function fmin48(x, y) result(res)
              real(4), intent (in) :: x
              real(8), intent (in) :: y
              res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
          end function
      end module
      
      real(8) function code(k, m, n, m_1, l)
      use fmin_fmax_functions
          real(8), intent (in) :: k
          real(8), intent (in) :: m
          real(8), intent (in) :: n
          real(8), intent (in) :: m_1
          real(8), intent (in) :: l
          real(8) :: tmp
          if (m <= (-12000000.0d0)) then
              tmp = 1.0d0 * exp(((-0.25d0) * (m * m)))
          else if (m <= 1.08d-159) then
              tmp = 1.0d0 * exp(((-1.0d0) * (m_1 * m_1)))
          else
              tmp = exp(((n * n) * (-0.25d0)))
          end if
          code = tmp
      end function
      
      public static double code(double K, double m, double n, double M, double l) {
      	double tmp;
      	if (m <= -12000000.0) {
      		tmp = 1.0 * Math.exp((-0.25 * (m * m)));
      	} else if (m <= 1.08e-159) {
      		tmp = 1.0 * Math.exp((-1.0 * (M * M)));
      	} else {
      		tmp = Math.exp(((n * n) * -0.25));
      	}
      	return tmp;
      }
      
      def code(K, m, n, M, l):
      	tmp = 0
      	if m <= -12000000.0:
      		tmp = 1.0 * math.exp((-0.25 * (m * m)))
      	elif m <= 1.08e-159:
      		tmp = 1.0 * math.exp((-1.0 * (M * M)))
      	else:
      		tmp = math.exp(((n * n) * -0.25))
      	return tmp
      
      function code(K, m, n, M, l)
      	tmp = 0.0
      	if (m <= -12000000.0)
      		tmp = Float64(1.0 * exp(Float64(-0.25 * Float64(m * m))));
      	elseif (m <= 1.08e-159)
      		tmp = Float64(1.0 * exp(Float64(-1.0 * Float64(M * M))));
      	else
      		tmp = exp(Float64(Float64(n * n) * -0.25));
      	end
      	return tmp
      end
      
      function tmp_2 = code(K, m, n, M, l)
      	tmp = 0.0;
      	if (m <= -12000000.0)
      		tmp = 1.0 * exp((-0.25 * (m * m)));
      	elseif (m <= 1.08e-159)
      		tmp = 1.0 * exp((-1.0 * (M * M)));
      	else
      		tmp = exp(((n * n) * -0.25));
      	end
      	tmp_2 = tmp;
      end
      
      code[K_, m_, n_, M_, l_] := If[LessEqual[m, -12000000.0], N[(1.0 * N[Exp[N[(-0.25 * N[(m * m), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], If[LessEqual[m, 1.08e-159], N[(1.0 * N[Exp[N[(-1.0 * N[(M * M), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], N[Exp[N[(N[(n * n), $MachinePrecision] * -0.25), $MachinePrecision]], $MachinePrecision]]]
      
      \begin{array}{l}
      
      \\
      \begin{array}{l}
      \mathbf{if}\;m \leq -12000000:\\
      \;\;\;\;1 \cdot e^{-0.25 \cdot \left(m \cdot m\right)}\\
      
      \mathbf{elif}\;m \leq 1.08 \cdot 10^{-159}:\\
      \;\;\;\;1 \cdot e^{-1 \cdot \left(M \cdot M\right)}\\
      
      \mathbf{else}:\\
      \;\;\;\;e^{\left(n \cdot n\right) \cdot -0.25}\\
      
      
      \end{array}
      \end{array}
      
      Derivation
      1. Split input into 3 regimes
      2. if m < -1.2e7

        1. Initial program 76.7%

          \[\cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\left(-{\left(\frac{m + n}{2} - M\right)}^{2}\right) - \left(\ell - \left|m - n\right|\right)} \]
        2. Taylor expanded in K around 0

          \[\leadsto \color{blue}{\cos \left(\mathsf{neg}\left(M\right)\right) \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
        3. Step-by-step derivation
          1. cos-negN/A

            \[\leadsto \cos M \cdot e^{\color{blue}{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
          2. lower-*.f64N/A

            \[\leadsto \cos M \cdot \color{blue}{e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
          3. lower-cos.f64N/A

            \[\leadsto \cos M \cdot e^{\color{blue}{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
          4. lower-exp.f64N/A

            \[\leadsto \cos M \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
          5. lower--.f64N/A

            \[\leadsto \cos M \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
          6. fabs-subN/A

            \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
          7. lower-fabs.f64N/A

            \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
          8. lower--.f64N/A

            \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
          9. +-commutativeN/A

            \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left({\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2} + \ell\right)} \]
        4. Applied rewrites96.8%

          \[\leadsto \color{blue}{\cos M \cdot e^{\left|n - m\right| - \mathsf{fma}\left(0.5 \cdot \left(n + m\right) - M, 0.5 \cdot \left(n + m\right) - M, \ell\right)}} \]
        5. Taylor expanded in M around 0

          \[\leadsto 1 \cdot e^{\color{blue}{\left|n - m\right| - \mathsf{fma}\left(\frac{1}{2} \cdot \left(n + m\right) - M, \frac{1}{2} \cdot \left(n + m\right) - M, \ell\right)}} \]
        6. Step-by-step derivation
          1. Applied rewrites96.6%

            \[\leadsto 1 \cdot e^{\color{blue}{\left|n - m\right| - \mathsf{fma}\left(0.5 \cdot \left(n + m\right) - M, 0.5 \cdot \left(n + m\right) - M, \ell\right)}} \]
          2. Taylor expanded in m around inf

            \[\leadsto 1 \cdot e^{\frac{-1}{4} \cdot {m}^{2}} \]
          3. Step-by-step derivation
            1. lower-*.f64N/A

              \[\leadsto 1 \cdot e^{\frac{-1}{4} \cdot {m}^{2}} \]
            2. unpow2N/A

              \[\leadsto 1 \cdot e^{\frac{-1}{4} \cdot \left(m \cdot m\right)} \]
            3. lower-*.f6454.3

              \[\leadsto 1 \cdot e^{-0.25 \cdot \left(m \cdot m\right)} \]
          4. Applied rewrites54.3%

            \[\leadsto 1 \cdot e^{-0.25 \cdot \left(m \cdot m\right)} \]

          if -1.2e7 < m < 1.08000000000000004e-159

          1. Initial program 76.7%

            \[\cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\left(-{\left(\frac{m + n}{2} - M\right)}^{2}\right) - \left(\ell - \left|m - n\right|\right)} \]
          2. Taylor expanded in K around 0

            \[\leadsto \color{blue}{\cos \left(\mathsf{neg}\left(M\right)\right) \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
          3. Step-by-step derivation
            1. cos-negN/A

              \[\leadsto \cos M \cdot e^{\color{blue}{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
            2. lower-*.f64N/A

              \[\leadsto \cos M \cdot \color{blue}{e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
            3. lower-cos.f64N/A

              \[\leadsto \cos M \cdot e^{\color{blue}{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
            4. lower-exp.f64N/A

              \[\leadsto \cos M \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
            5. lower--.f64N/A

              \[\leadsto \cos M \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
            6. fabs-subN/A

              \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
            7. lower-fabs.f64N/A

              \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
            8. lower--.f64N/A

              \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
            9. +-commutativeN/A

              \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left({\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2} + \ell\right)} \]
          4. Applied rewrites96.8%

            \[\leadsto \color{blue}{\cos M \cdot e^{\left|n - m\right| - \mathsf{fma}\left(0.5 \cdot \left(n + m\right) - M, 0.5 \cdot \left(n + m\right) - M, \ell\right)}} \]
          5. Taylor expanded in M around 0

            \[\leadsto 1 \cdot e^{\color{blue}{\left|n - m\right| - \mathsf{fma}\left(\frac{1}{2} \cdot \left(n + m\right) - M, \frac{1}{2} \cdot \left(n + m\right) - M, \ell\right)}} \]
          6. Step-by-step derivation
            1. Applied rewrites96.6%

              \[\leadsto 1 \cdot e^{\color{blue}{\left|n - m\right| - \mathsf{fma}\left(0.5 \cdot \left(n + m\right) - M, 0.5 \cdot \left(n + m\right) - M, \ell\right)}} \]
            2. Taylor expanded in M around inf

              \[\leadsto 1 \cdot e^{-1 \cdot {M}^{2}} \]
            3. Step-by-step derivation
              1. lower-*.f64N/A

                \[\leadsto 1 \cdot e^{-1 \cdot {M}^{2}} \]
              2. pow2N/A

                \[\leadsto 1 \cdot e^{-1 \cdot \left(M \cdot M\right)} \]
              3. lift-*.f6455.1

                \[\leadsto 1 \cdot e^{-1 \cdot \left(M \cdot M\right)} \]
            4. Applied rewrites55.1%

              \[\leadsto 1 \cdot e^{-1 \cdot \left(M \cdot M\right)} \]

            if 1.08000000000000004e-159 < m

            1. Initial program 76.7%

              \[\cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\left(-{\left(\frac{m + n}{2} - M\right)}^{2}\right) - \left(\ell - \left|m - n\right|\right)} \]
            2. Taylor expanded in K around 0

              \[\leadsto \color{blue}{\cos \left(\mathsf{neg}\left(M\right)\right) \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
            3. Step-by-step derivation
              1. cos-negN/A

                \[\leadsto \cos M \cdot e^{\color{blue}{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
              2. lower-*.f64N/A

                \[\leadsto \cos M \cdot \color{blue}{e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
              3. lower-cos.f64N/A

                \[\leadsto \cos M \cdot e^{\color{blue}{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
              4. lower-exp.f64N/A

                \[\leadsto \cos M \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
              5. lower--.f64N/A

                \[\leadsto \cos M \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
              6. fabs-subN/A

                \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
              7. lower-fabs.f64N/A

                \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
              8. lower--.f64N/A

                \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
              9. +-commutativeN/A

                \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left({\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2} + \ell\right)} \]
            4. Applied rewrites96.8%

              \[\leadsto \color{blue}{\cos M \cdot e^{\left|n - m\right| - \mathsf{fma}\left(0.5 \cdot \left(n + m\right) - M, 0.5 \cdot \left(n + m\right) - M, \ell\right)}} \]
            5. Taylor expanded in M around 0

              \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
            6. Step-by-step derivation
              1. fabs-subN/A

                \[\leadsto e^{\left|m - n\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
              2. lower-exp.f64N/A

                \[\leadsto e^{\left|m - n\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
              3. lower--.f64N/A

                \[\leadsto e^{\left|m - n\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
              4. fabs-subN/A

                \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
              5. lift--.f64N/A

                \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
              6. lift-fabs.f64N/A

                \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
              7. lower-+.f64N/A

                \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
              8. lower-*.f64N/A

                \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
              9. unpow2N/A

                \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
              10. lower-*.f64N/A

                \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
              11. lift-+.f64N/A

                \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
              12. lift-+.f6486.8

                \[\leadsto e^{\left|n - m\right| - \left(\ell + 0.25 \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
            7. Applied rewrites86.8%

              \[\leadsto e^{\left|n - m\right| - \left(\ell + 0.25 \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
            8. Taylor expanded in n around inf

              \[\leadsto e^{{n}^{2} \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
            9. Step-by-step derivation
              1. lower-*.f64N/A

                \[\leadsto e^{{n}^{2} \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
              2. pow2N/A

                \[\leadsto e^{\left(n \cdot n\right) \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
              3. lift-*.f64N/A

                \[\leadsto e^{\left(n \cdot n\right) \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
              4. lower--.f64N/A

                \[\leadsto e^{\left(n \cdot n\right) \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
              5. lower-*.f64N/A

                \[\leadsto e^{\left(n \cdot n\right) \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
              6. lower-/.f6452.1

                \[\leadsto e^{\left(n \cdot n\right) \cdot \left(-0.5 \cdot \frac{m}{n} - 0.25\right)} \]
            10. Applied rewrites52.1%

              \[\leadsto e^{\left(n \cdot n\right) \cdot \left(-0.5 \cdot \frac{m}{n} - 0.25\right)} \]
            11. Taylor expanded in m around 0

              \[\leadsto e^{\left(n \cdot n\right) \cdot \frac{-1}{4}} \]
            12. Step-by-step derivation
              1. Applied rewrites53.7%

                \[\leadsto e^{\left(n \cdot n\right) \cdot -0.25} \]
            13. Recombined 3 regimes into one program.
            14. Add Preprocessing

            Alternative 4: 56.1% accurate, 2.9× speedup?

            \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;n \leq -4.8 \cdot 10^{-156}:\\ \;\;\;\;e^{-0.5 \cdot \left(m \cdot n\right)}\\ \mathbf{elif}\;n \leq 1.32 \cdot 10^{-205}:\\ \;\;\;\;1 \cdot e^{-\ell}\\ \mathbf{elif}\;n \leq 54:\\ \;\;\;\;1 \cdot e^{-1 \cdot \left(M \cdot M\right)}\\ \mathbf{else}:\\ \;\;\;\;e^{\left(n \cdot n\right) \cdot -0.25}\\ \end{array} \end{array} \]
            (FPCore (K m n M l)
             :precision binary64
             (if (<= n -4.8e-156)
               (exp (* -0.5 (* m n)))
               (if (<= n 1.32e-205)
                 (* 1.0 (exp (- l)))
                 (if (<= n 54.0) (* 1.0 (exp (* -1.0 (* M M)))) (exp (* (* n n) -0.25))))))
            double code(double K, double m, double n, double M, double l) {
            	double tmp;
            	if (n <= -4.8e-156) {
            		tmp = exp((-0.5 * (m * n)));
            	} else if (n <= 1.32e-205) {
            		tmp = 1.0 * exp(-l);
            	} else if (n <= 54.0) {
            		tmp = 1.0 * exp((-1.0 * (M * M)));
            	} else {
            		tmp = exp(((n * n) * -0.25));
            	}
            	return tmp;
            }
            
            module fmin_fmax_functions
                implicit none
                private
                public fmax
                public fmin
            
                interface fmax
                    module procedure fmax88
                    module procedure fmax44
                    module procedure fmax84
                    module procedure fmax48
                end interface
                interface fmin
                    module procedure fmin88
                    module procedure fmin44
                    module procedure fmin84
                    module procedure fmin48
                end interface
            contains
                real(8) function fmax88(x, y) result (res)
                    real(8), intent (in) :: x
                    real(8), intent (in) :: y
                    res = merge(y, merge(x, max(x, y), y /= y), x /= x)
                end function
                real(4) function fmax44(x, y) result (res)
                    real(4), intent (in) :: x
                    real(4), intent (in) :: y
                    res = merge(y, merge(x, max(x, y), y /= y), x /= x)
                end function
                real(8) function fmax84(x, y) result(res)
                    real(8), intent (in) :: x
                    real(4), intent (in) :: y
                    res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
                end function
                real(8) function fmax48(x, y) result(res)
                    real(4), intent (in) :: x
                    real(8), intent (in) :: y
                    res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
                end function
                real(8) function fmin88(x, y) result (res)
                    real(8), intent (in) :: x
                    real(8), intent (in) :: y
                    res = merge(y, merge(x, min(x, y), y /= y), x /= x)
                end function
                real(4) function fmin44(x, y) result (res)
                    real(4), intent (in) :: x
                    real(4), intent (in) :: y
                    res = merge(y, merge(x, min(x, y), y /= y), x /= x)
                end function
                real(8) function fmin84(x, y) result(res)
                    real(8), intent (in) :: x
                    real(4), intent (in) :: y
                    res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
                end function
                real(8) function fmin48(x, y) result(res)
                    real(4), intent (in) :: x
                    real(8), intent (in) :: y
                    res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
                end function
            end module
            
            real(8) function code(k, m, n, m_1, l)
            use fmin_fmax_functions
                real(8), intent (in) :: k
                real(8), intent (in) :: m
                real(8), intent (in) :: n
                real(8), intent (in) :: m_1
                real(8), intent (in) :: l
                real(8) :: tmp
                if (n <= (-4.8d-156)) then
                    tmp = exp(((-0.5d0) * (m * n)))
                else if (n <= 1.32d-205) then
                    tmp = 1.0d0 * exp(-l)
                else if (n <= 54.0d0) then
                    tmp = 1.0d0 * exp(((-1.0d0) * (m_1 * m_1)))
                else
                    tmp = exp(((n * n) * (-0.25d0)))
                end if
                code = tmp
            end function
            
            public static double code(double K, double m, double n, double M, double l) {
            	double tmp;
            	if (n <= -4.8e-156) {
            		tmp = Math.exp((-0.5 * (m * n)));
            	} else if (n <= 1.32e-205) {
            		tmp = 1.0 * Math.exp(-l);
            	} else if (n <= 54.0) {
            		tmp = 1.0 * Math.exp((-1.0 * (M * M)));
            	} else {
            		tmp = Math.exp(((n * n) * -0.25));
            	}
            	return tmp;
            }
            
            def code(K, m, n, M, l):
            	tmp = 0
            	if n <= -4.8e-156:
            		tmp = math.exp((-0.5 * (m * n)))
            	elif n <= 1.32e-205:
            		tmp = 1.0 * math.exp(-l)
            	elif n <= 54.0:
            		tmp = 1.0 * math.exp((-1.0 * (M * M)))
            	else:
            		tmp = math.exp(((n * n) * -0.25))
            	return tmp
            
            function code(K, m, n, M, l)
            	tmp = 0.0
            	if (n <= -4.8e-156)
            		tmp = exp(Float64(-0.5 * Float64(m * n)));
            	elseif (n <= 1.32e-205)
            		tmp = Float64(1.0 * exp(Float64(-l)));
            	elseif (n <= 54.0)
            		tmp = Float64(1.0 * exp(Float64(-1.0 * Float64(M * M))));
            	else
            		tmp = exp(Float64(Float64(n * n) * -0.25));
            	end
            	return tmp
            end
            
            function tmp_2 = code(K, m, n, M, l)
            	tmp = 0.0;
            	if (n <= -4.8e-156)
            		tmp = exp((-0.5 * (m * n)));
            	elseif (n <= 1.32e-205)
            		tmp = 1.0 * exp(-l);
            	elseif (n <= 54.0)
            		tmp = 1.0 * exp((-1.0 * (M * M)));
            	else
            		tmp = exp(((n * n) * -0.25));
            	end
            	tmp_2 = tmp;
            end
            
            code[K_, m_, n_, M_, l_] := If[LessEqual[n, -4.8e-156], N[Exp[N[(-0.5 * N[(m * n), $MachinePrecision]), $MachinePrecision]], $MachinePrecision], If[LessEqual[n, 1.32e-205], N[(1.0 * N[Exp[(-l)], $MachinePrecision]), $MachinePrecision], If[LessEqual[n, 54.0], N[(1.0 * N[Exp[N[(-1.0 * N[(M * M), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], N[Exp[N[(N[(n * n), $MachinePrecision] * -0.25), $MachinePrecision]], $MachinePrecision]]]]
            
            \begin{array}{l}
            
            \\
            \begin{array}{l}
            \mathbf{if}\;n \leq -4.8 \cdot 10^{-156}:\\
            \;\;\;\;e^{-0.5 \cdot \left(m \cdot n\right)}\\
            
            \mathbf{elif}\;n \leq 1.32 \cdot 10^{-205}:\\
            \;\;\;\;1 \cdot e^{-\ell}\\
            
            \mathbf{elif}\;n \leq 54:\\
            \;\;\;\;1 \cdot e^{-1 \cdot \left(M \cdot M\right)}\\
            
            \mathbf{else}:\\
            \;\;\;\;e^{\left(n \cdot n\right) \cdot -0.25}\\
            
            
            \end{array}
            \end{array}
            
            Derivation
            1. Split input into 4 regimes
            2. if n < -4.8e-156

              1. Initial program 76.7%

                \[\cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\left(-{\left(\frac{m + n}{2} - M\right)}^{2}\right) - \left(\ell - \left|m - n\right|\right)} \]
              2. Taylor expanded in K around 0

                \[\leadsto \color{blue}{\cos \left(\mathsf{neg}\left(M\right)\right) \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
              3. Step-by-step derivation
                1. cos-negN/A

                  \[\leadsto \cos M \cdot e^{\color{blue}{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
                2. lower-*.f64N/A

                  \[\leadsto \cos M \cdot \color{blue}{e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
                3. lower-cos.f64N/A

                  \[\leadsto \cos M \cdot e^{\color{blue}{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
                4. lower-exp.f64N/A

                  \[\leadsto \cos M \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
                5. lower--.f64N/A

                  \[\leadsto \cos M \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
                6. fabs-subN/A

                  \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
                7. lower-fabs.f64N/A

                  \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
                8. lower--.f64N/A

                  \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
                9. +-commutativeN/A

                  \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left({\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2} + \ell\right)} \]
              4. Applied rewrites96.8%

                \[\leadsto \color{blue}{\cos M \cdot e^{\left|n - m\right| - \mathsf{fma}\left(0.5 \cdot \left(n + m\right) - M, 0.5 \cdot \left(n + m\right) - M, \ell\right)}} \]
              5. Taylor expanded in M around 0

                \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
              6. Step-by-step derivation
                1. fabs-subN/A

                  \[\leadsto e^{\left|m - n\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                2. lower-exp.f64N/A

                  \[\leadsto e^{\left|m - n\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                3. lower--.f64N/A

                  \[\leadsto e^{\left|m - n\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                4. fabs-subN/A

                  \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                5. lift--.f64N/A

                  \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                6. lift-fabs.f64N/A

                  \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                7. lower-+.f64N/A

                  \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                8. lower-*.f64N/A

                  \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                9. unpow2N/A

                  \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
                10. lower-*.f64N/A

                  \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
                11. lift-+.f64N/A

                  \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
                12. lift-+.f6486.8

                  \[\leadsto e^{\left|n - m\right| - \left(\ell + 0.25 \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
              7. Applied rewrites86.8%

                \[\leadsto e^{\left|n - m\right| - \left(\ell + 0.25 \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
              8. Taylor expanded in n around inf

                \[\leadsto e^{{n}^{2} \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
              9. Step-by-step derivation
                1. lower-*.f64N/A

                  \[\leadsto e^{{n}^{2} \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
                2. pow2N/A

                  \[\leadsto e^{\left(n \cdot n\right) \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
                3. lift-*.f64N/A

                  \[\leadsto e^{\left(n \cdot n\right) \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
                4. lower--.f64N/A

                  \[\leadsto e^{\left(n \cdot n\right) \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
                5. lower-*.f64N/A

                  \[\leadsto e^{\left(n \cdot n\right) \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
                6. lower-/.f6452.1

                  \[\leadsto e^{\left(n \cdot n\right) \cdot \left(-0.5 \cdot \frac{m}{n} - 0.25\right)} \]
              10. Applied rewrites52.1%

                \[\leadsto e^{\left(n \cdot n\right) \cdot \left(-0.5 \cdot \frac{m}{n} - 0.25\right)} \]
              11. Taylor expanded in m around inf

                \[\leadsto e^{\frac{-1}{2} \cdot \left(m \cdot n\right)} \]
              12. Step-by-step derivation
                1. lower-*.f64N/A

                  \[\leadsto e^{\frac{-1}{2} \cdot \left(m \cdot n\right)} \]
                2. lower-*.f6430.4

                  \[\leadsto e^{-0.5 \cdot \left(m \cdot n\right)} \]
              13. Applied rewrites30.4%

                \[\leadsto e^{-0.5 \cdot \left(m \cdot n\right)} \]

              if -4.8e-156 < n < 1.31999999999999992e-205

              1. Initial program 76.7%

                \[\cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\left(-{\left(\frac{m + n}{2} - M\right)}^{2}\right) - \left(\ell - \left|m - n\right|\right)} \]
              2. Taylor expanded in l around inf

                \[\leadsto \cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\color{blue}{-1 \cdot \ell}} \]
              3. Step-by-step derivation
                1. mul-1-negN/A

                  \[\leadsto \cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\mathsf{neg}\left(\ell\right)} \]
                2. lower-neg.f6430.7

                  \[\leadsto \cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{-\ell} \]
              4. Applied rewrites30.7%

                \[\leadsto \cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\color{blue}{-\ell}} \]
              5. Taylor expanded in M around 0

                \[\leadsto \color{blue}{\cos \left(\frac{1}{2} \cdot \left(K \cdot \left(m + n\right)\right)\right)} \cdot e^{-\ell} \]
              6. Step-by-step derivation
                1. lower-cos.f64N/A

                  \[\leadsto \cos \left(\frac{1}{2} \cdot \left(K \cdot \left(m + n\right)\right)\right) \cdot e^{-\ell} \]
                2. lower-*.f64N/A

                  \[\leadsto \cos \left(\frac{1}{2} \cdot \left(K \cdot \left(m + n\right)\right)\right) \cdot e^{-\ell} \]
                3. lift-+.f64N/A

                  \[\leadsto \cos \left(\frac{1}{2} \cdot \left(K \cdot \left(m + n\right)\right)\right) \cdot e^{-\ell} \]
                4. lift-*.f6430.5

                  \[\leadsto \cos \left(0.5 \cdot \left(K \cdot \left(m + n\right)\right)\right) \cdot e^{-\ell} \]
              7. Applied rewrites30.5%

                \[\leadsto \color{blue}{\cos \left(0.5 \cdot \left(K \cdot \left(m + n\right)\right)\right)} \cdot e^{-\ell} \]
              8. Taylor expanded in K around 0

                \[\leadsto 1 \cdot e^{-\ell} \]
              9. Step-by-step derivation
                1. Applied rewrites35.9%

                  \[\leadsto 1 \cdot e^{-\ell} \]

                if 1.31999999999999992e-205 < n < 54

                1. Initial program 76.7%

                  \[\cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\left(-{\left(\frac{m + n}{2} - M\right)}^{2}\right) - \left(\ell - \left|m - n\right|\right)} \]
                2. Taylor expanded in K around 0

                  \[\leadsto \color{blue}{\cos \left(\mathsf{neg}\left(M\right)\right) \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
                3. Step-by-step derivation
                  1. cos-negN/A

                    \[\leadsto \cos M \cdot e^{\color{blue}{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
                  2. lower-*.f64N/A

                    \[\leadsto \cos M \cdot \color{blue}{e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
                  3. lower-cos.f64N/A

                    \[\leadsto \cos M \cdot e^{\color{blue}{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
                  4. lower-exp.f64N/A

                    \[\leadsto \cos M \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
                  5. lower--.f64N/A

                    \[\leadsto \cos M \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
                  6. fabs-subN/A

                    \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
                  7. lower-fabs.f64N/A

                    \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
                  8. lower--.f64N/A

                    \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
                  9. +-commutativeN/A

                    \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left({\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2} + \ell\right)} \]
                4. Applied rewrites96.8%

                  \[\leadsto \color{blue}{\cos M \cdot e^{\left|n - m\right| - \mathsf{fma}\left(0.5 \cdot \left(n + m\right) - M, 0.5 \cdot \left(n + m\right) - M, \ell\right)}} \]
                5. Taylor expanded in M around 0

                  \[\leadsto 1 \cdot e^{\color{blue}{\left|n - m\right| - \mathsf{fma}\left(\frac{1}{2} \cdot \left(n + m\right) - M, \frac{1}{2} \cdot \left(n + m\right) - M, \ell\right)}} \]
                6. Step-by-step derivation
                  1. Applied rewrites96.6%

                    \[\leadsto 1 \cdot e^{\color{blue}{\left|n - m\right| - \mathsf{fma}\left(0.5 \cdot \left(n + m\right) - M, 0.5 \cdot \left(n + m\right) - M, \ell\right)}} \]
                  2. Taylor expanded in M around inf

                    \[\leadsto 1 \cdot e^{-1 \cdot {M}^{2}} \]
                  3. Step-by-step derivation
                    1. lower-*.f64N/A

                      \[\leadsto 1 \cdot e^{-1 \cdot {M}^{2}} \]
                    2. pow2N/A

                      \[\leadsto 1 \cdot e^{-1 \cdot \left(M \cdot M\right)} \]
                    3. lift-*.f6455.1

                      \[\leadsto 1 \cdot e^{-1 \cdot \left(M \cdot M\right)} \]
                  4. Applied rewrites55.1%

                    \[\leadsto 1 \cdot e^{-1 \cdot \left(M \cdot M\right)} \]

                  if 54 < n

                  1. Initial program 76.7%

                    \[\cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\left(-{\left(\frac{m + n}{2} - M\right)}^{2}\right) - \left(\ell - \left|m - n\right|\right)} \]
                  2. Taylor expanded in K around 0

                    \[\leadsto \color{blue}{\cos \left(\mathsf{neg}\left(M\right)\right) \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
                  3. Step-by-step derivation
                    1. cos-negN/A

                      \[\leadsto \cos M \cdot e^{\color{blue}{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
                    2. lower-*.f64N/A

                      \[\leadsto \cos M \cdot \color{blue}{e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
                    3. lower-cos.f64N/A

                      \[\leadsto \cos M \cdot e^{\color{blue}{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
                    4. lower-exp.f64N/A

                      \[\leadsto \cos M \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
                    5. lower--.f64N/A

                      \[\leadsto \cos M \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
                    6. fabs-subN/A

                      \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
                    7. lower-fabs.f64N/A

                      \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
                    8. lower--.f64N/A

                      \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
                    9. +-commutativeN/A

                      \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left({\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2} + \ell\right)} \]
                  4. Applied rewrites96.8%

                    \[\leadsto \color{blue}{\cos M \cdot e^{\left|n - m\right| - \mathsf{fma}\left(0.5 \cdot \left(n + m\right) - M, 0.5 \cdot \left(n + m\right) - M, \ell\right)}} \]
                  5. Taylor expanded in M around 0

                    \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                  6. Step-by-step derivation
                    1. fabs-subN/A

                      \[\leadsto e^{\left|m - n\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                    2. lower-exp.f64N/A

                      \[\leadsto e^{\left|m - n\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                    3. lower--.f64N/A

                      \[\leadsto e^{\left|m - n\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                    4. fabs-subN/A

                      \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                    5. lift--.f64N/A

                      \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                    6. lift-fabs.f64N/A

                      \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                    7. lower-+.f64N/A

                      \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                    8. lower-*.f64N/A

                      \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                    9. unpow2N/A

                      \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
                    10. lower-*.f64N/A

                      \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
                    11. lift-+.f64N/A

                      \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
                    12. lift-+.f6486.8

                      \[\leadsto e^{\left|n - m\right| - \left(\ell + 0.25 \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
                  7. Applied rewrites86.8%

                    \[\leadsto e^{\left|n - m\right| - \left(\ell + 0.25 \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
                  8. Taylor expanded in n around inf

                    \[\leadsto e^{{n}^{2} \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
                  9. Step-by-step derivation
                    1. lower-*.f64N/A

                      \[\leadsto e^{{n}^{2} \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
                    2. pow2N/A

                      \[\leadsto e^{\left(n \cdot n\right) \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
                    3. lift-*.f64N/A

                      \[\leadsto e^{\left(n \cdot n\right) \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
                    4. lower--.f64N/A

                      \[\leadsto e^{\left(n \cdot n\right) \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
                    5. lower-*.f64N/A

                      \[\leadsto e^{\left(n \cdot n\right) \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
                    6. lower-/.f6452.1

                      \[\leadsto e^{\left(n \cdot n\right) \cdot \left(-0.5 \cdot \frac{m}{n} - 0.25\right)} \]
                  10. Applied rewrites52.1%

                    \[\leadsto e^{\left(n \cdot n\right) \cdot \left(-0.5 \cdot \frac{m}{n} - 0.25\right)} \]
                  11. Taylor expanded in m around 0

                    \[\leadsto e^{\left(n \cdot n\right) \cdot \frac{-1}{4}} \]
                  12. Step-by-step derivation
                    1. Applied rewrites53.7%

                      \[\leadsto e^{\left(n \cdot n\right) \cdot -0.25} \]
                  13. Recombined 4 regimes into one program.
                  14. Add Preprocessing

                  Alternative 5: 53.3% accurate, 3.7× speedup?

                  \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;n \leq -4.8 \cdot 10^{-156}:\\ \;\;\;\;e^{-0.5 \cdot \left(m \cdot n\right)}\\ \mathbf{elif}\;n \leq 5.6:\\ \;\;\;\;1 \cdot e^{-\ell}\\ \mathbf{else}:\\ \;\;\;\;e^{\left(n \cdot n\right) \cdot -0.25}\\ \end{array} \end{array} \]
                  (FPCore (K m n M l)
                   :precision binary64
                   (if (<= n -4.8e-156)
                     (exp (* -0.5 (* m n)))
                     (if (<= n 5.6) (* 1.0 (exp (- l))) (exp (* (* n n) -0.25)))))
                  double code(double K, double m, double n, double M, double l) {
                  	double tmp;
                  	if (n <= -4.8e-156) {
                  		tmp = exp((-0.5 * (m * n)));
                  	} else if (n <= 5.6) {
                  		tmp = 1.0 * exp(-l);
                  	} else {
                  		tmp = exp(((n * n) * -0.25));
                  	}
                  	return tmp;
                  }
                  
                  module fmin_fmax_functions
                      implicit none
                      private
                      public fmax
                      public fmin
                  
                      interface fmax
                          module procedure fmax88
                          module procedure fmax44
                          module procedure fmax84
                          module procedure fmax48
                      end interface
                      interface fmin
                          module procedure fmin88
                          module procedure fmin44
                          module procedure fmin84
                          module procedure fmin48
                      end interface
                  contains
                      real(8) function fmax88(x, y) result (res)
                          real(8), intent (in) :: x
                          real(8), intent (in) :: y
                          res = merge(y, merge(x, max(x, y), y /= y), x /= x)
                      end function
                      real(4) function fmax44(x, y) result (res)
                          real(4), intent (in) :: x
                          real(4), intent (in) :: y
                          res = merge(y, merge(x, max(x, y), y /= y), x /= x)
                      end function
                      real(8) function fmax84(x, y) result(res)
                          real(8), intent (in) :: x
                          real(4), intent (in) :: y
                          res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
                      end function
                      real(8) function fmax48(x, y) result(res)
                          real(4), intent (in) :: x
                          real(8), intent (in) :: y
                          res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
                      end function
                      real(8) function fmin88(x, y) result (res)
                          real(8), intent (in) :: x
                          real(8), intent (in) :: y
                          res = merge(y, merge(x, min(x, y), y /= y), x /= x)
                      end function
                      real(4) function fmin44(x, y) result (res)
                          real(4), intent (in) :: x
                          real(4), intent (in) :: y
                          res = merge(y, merge(x, min(x, y), y /= y), x /= x)
                      end function
                      real(8) function fmin84(x, y) result(res)
                          real(8), intent (in) :: x
                          real(4), intent (in) :: y
                          res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
                      end function
                      real(8) function fmin48(x, y) result(res)
                          real(4), intent (in) :: x
                          real(8), intent (in) :: y
                          res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
                      end function
                  end module
                  
                  real(8) function code(k, m, n, m_1, l)
                  use fmin_fmax_functions
                      real(8), intent (in) :: k
                      real(8), intent (in) :: m
                      real(8), intent (in) :: n
                      real(8), intent (in) :: m_1
                      real(8), intent (in) :: l
                      real(8) :: tmp
                      if (n <= (-4.8d-156)) then
                          tmp = exp(((-0.5d0) * (m * n)))
                      else if (n <= 5.6d0) then
                          tmp = 1.0d0 * exp(-l)
                      else
                          tmp = exp(((n * n) * (-0.25d0)))
                      end if
                      code = tmp
                  end function
                  
                  public static double code(double K, double m, double n, double M, double l) {
                  	double tmp;
                  	if (n <= -4.8e-156) {
                  		tmp = Math.exp((-0.5 * (m * n)));
                  	} else if (n <= 5.6) {
                  		tmp = 1.0 * Math.exp(-l);
                  	} else {
                  		tmp = Math.exp(((n * n) * -0.25));
                  	}
                  	return tmp;
                  }
                  
                  def code(K, m, n, M, l):
                  	tmp = 0
                  	if n <= -4.8e-156:
                  		tmp = math.exp((-0.5 * (m * n)))
                  	elif n <= 5.6:
                  		tmp = 1.0 * math.exp(-l)
                  	else:
                  		tmp = math.exp(((n * n) * -0.25))
                  	return tmp
                  
                  function code(K, m, n, M, l)
                  	tmp = 0.0
                  	if (n <= -4.8e-156)
                  		tmp = exp(Float64(-0.5 * Float64(m * n)));
                  	elseif (n <= 5.6)
                  		tmp = Float64(1.0 * exp(Float64(-l)));
                  	else
                  		tmp = exp(Float64(Float64(n * n) * -0.25));
                  	end
                  	return tmp
                  end
                  
                  function tmp_2 = code(K, m, n, M, l)
                  	tmp = 0.0;
                  	if (n <= -4.8e-156)
                  		tmp = exp((-0.5 * (m * n)));
                  	elseif (n <= 5.6)
                  		tmp = 1.0 * exp(-l);
                  	else
                  		tmp = exp(((n * n) * -0.25));
                  	end
                  	tmp_2 = tmp;
                  end
                  
                  code[K_, m_, n_, M_, l_] := If[LessEqual[n, -4.8e-156], N[Exp[N[(-0.5 * N[(m * n), $MachinePrecision]), $MachinePrecision]], $MachinePrecision], If[LessEqual[n, 5.6], N[(1.0 * N[Exp[(-l)], $MachinePrecision]), $MachinePrecision], N[Exp[N[(N[(n * n), $MachinePrecision] * -0.25), $MachinePrecision]], $MachinePrecision]]]
                  
                  \begin{array}{l}
                  
                  \\
                  \begin{array}{l}
                  \mathbf{if}\;n \leq -4.8 \cdot 10^{-156}:\\
                  \;\;\;\;e^{-0.5 \cdot \left(m \cdot n\right)}\\
                  
                  \mathbf{elif}\;n \leq 5.6:\\
                  \;\;\;\;1 \cdot e^{-\ell}\\
                  
                  \mathbf{else}:\\
                  \;\;\;\;e^{\left(n \cdot n\right) \cdot -0.25}\\
                  
                  
                  \end{array}
                  \end{array}
                  
                  Derivation
                  1. Split input into 3 regimes
                  2. if n < -4.8e-156

                    1. Initial program 76.7%

                      \[\cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\left(-{\left(\frac{m + n}{2} - M\right)}^{2}\right) - \left(\ell - \left|m - n\right|\right)} \]
                    2. Taylor expanded in K around 0

                      \[\leadsto \color{blue}{\cos \left(\mathsf{neg}\left(M\right)\right) \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
                    3. Step-by-step derivation
                      1. cos-negN/A

                        \[\leadsto \cos M \cdot e^{\color{blue}{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
                      2. lower-*.f64N/A

                        \[\leadsto \cos M \cdot \color{blue}{e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
                      3. lower-cos.f64N/A

                        \[\leadsto \cos M \cdot e^{\color{blue}{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
                      4. lower-exp.f64N/A

                        \[\leadsto \cos M \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
                      5. lower--.f64N/A

                        \[\leadsto \cos M \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
                      6. fabs-subN/A

                        \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
                      7. lower-fabs.f64N/A

                        \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
                      8. lower--.f64N/A

                        \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
                      9. +-commutativeN/A

                        \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left({\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2} + \ell\right)} \]
                    4. Applied rewrites96.8%

                      \[\leadsto \color{blue}{\cos M \cdot e^{\left|n - m\right| - \mathsf{fma}\left(0.5 \cdot \left(n + m\right) - M, 0.5 \cdot \left(n + m\right) - M, \ell\right)}} \]
                    5. Taylor expanded in M around 0

                      \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                    6. Step-by-step derivation
                      1. fabs-subN/A

                        \[\leadsto e^{\left|m - n\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                      2. lower-exp.f64N/A

                        \[\leadsto e^{\left|m - n\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                      3. lower--.f64N/A

                        \[\leadsto e^{\left|m - n\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                      4. fabs-subN/A

                        \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                      5. lift--.f64N/A

                        \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                      6. lift-fabs.f64N/A

                        \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                      7. lower-+.f64N/A

                        \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                      8. lower-*.f64N/A

                        \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                      9. unpow2N/A

                        \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
                      10. lower-*.f64N/A

                        \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
                      11. lift-+.f64N/A

                        \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
                      12. lift-+.f6486.8

                        \[\leadsto e^{\left|n - m\right| - \left(\ell + 0.25 \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
                    7. Applied rewrites86.8%

                      \[\leadsto e^{\left|n - m\right| - \left(\ell + 0.25 \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
                    8. Taylor expanded in n around inf

                      \[\leadsto e^{{n}^{2} \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
                    9. Step-by-step derivation
                      1. lower-*.f64N/A

                        \[\leadsto e^{{n}^{2} \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
                      2. pow2N/A

                        \[\leadsto e^{\left(n \cdot n\right) \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
                      3. lift-*.f64N/A

                        \[\leadsto e^{\left(n \cdot n\right) \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
                      4. lower--.f64N/A

                        \[\leadsto e^{\left(n \cdot n\right) \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
                      5. lower-*.f64N/A

                        \[\leadsto e^{\left(n \cdot n\right) \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
                      6. lower-/.f6452.1

                        \[\leadsto e^{\left(n \cdot n\right) \cdot \left(-0.5 \cdot \frac{m}{n} - 0.25\right)} \]
                    10. Applied rewrites52.1%

                      \[\leadsto e^{\left(n \cdot n\right) \cdot \left(-0.5 \cdot \frac{m}{n} - 0.25\right)} \]
                    11. Taylor expanded in m around inf

                      \[\leadsto e^{\frac{-1}{2} \cdot \left(m \cdot n\right)} \]
                    12. Step-by-step derivation
                      1. lower-*.f64N/A

                        \[\leadsto e^{\frac{-1}{2} \cdot \left(m \cdot n\right)} \]
                      2. lower-*.f6430.4

                        \[\leadsto e^{-0.5 \cdot \left(m \cdot n\right)} \]
                    13. Applied rewrites30.4%

                      \[\leadsto e^{-0.5 \cdot \left(m \cdot n\right)} \]

                    if -4.8e-156 < n < 5.5999999999999996

                    1. Initial program 76.7%

                      \[\cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\left(-{\left(\frac{m + n}{2} - M\right)}^{2}\right) - \left(\ell - \left|m - n\right|\right)} \]
                    2. Taylor expanded in l around inf

                      \[\leadsto \cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\color{blue}{-1 \cdot \ell}} \]
                    3. Step-by-step derivation
                      1. mul-1-negN/A

                        \[\leadsto \cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\mathsf{neg}\left(\ell\right)} \]
                      2. lower-neg.f6430.7

                        \[\leadsto \cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{-\ell} \]
                    4. Applied rewrites30.7%

                      \[\leadsto \cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\color{blue}{-\ell}} \]
                    5. Taylor expanded in M around 0

                      \[\leadsto \color{blue}{\cos \left(\frac{1}{2} \cdot \left(K \cdot \left(m + n\right)\right)\right)} \cdot e^{-\ell} \]
                    6. Step-by-step derivation
                      1. lower-cos.f64N/A

                        \[\leadsto \cos \left(\frac{1}{2} \cdot \left(K \cdot \left(m + n\right)\right)\right) \cdot e^{-\ell} \]
                      2. lower-*.f64N/A

                        \[\leadsto \cos \left(\frac{1}{2} \cdot \left(K \cdot \left(m + n\right)\right)\right) \cdot e^{-\ell} \]
                      3. lift-+.f64N/A

                        \[\leadsto \cos \left(\frac{1}{2} \cdot \left(K \cdot \left(m + n\right)\right)\right) \cdot e^{-\ell} \]
                      4. lift-*.f6430.5

                        \[\leadsto \cos \left(0.5 \cdot \left(K \cdot \left(m + n\right)\right)\right) \cdot e^{-\ell} \]
                    7. Applied rewrites30.5%

                      \[\leadsto \color{blue}{\cos \left(0.5 \cdot \left(K \cdot \left(m + n\right)\right)\right)} \cdot e^{-\ell} \]
                    8. Taylor expanded in K around 0

                      \[\leadsto 1 \cdot e^{-\ell} \]
                    9. Step-by-step derivation
                      1. Applied rewrites35.9%

                        \[\leadsto 1 \cdot e^{-\ell} \]

                      if 5.5999999999999996 < n

                      1. Initial program 76.7%

                        \[\cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\left(-{\left(\frac{m + n}{2} - M\right)}^{2}\right) - \left(\ell - \left|m - n\right|\right)} \]
                      2. Taylor expanded in K around 0

                        \[\leadsto \color{blue}{\cos \left(\mathsf{neg}\left(M\right)\right) \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
                      3. Step-by-step derivation
                        1. cos-negN/A

                          \[\leadsto \cos M \cdot e^{\color{blue}{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
                        2. lower-*.f64N/A

                          \[\leadsto \cos M \cdot \color{blue}{e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
                        3. lower-cos.f64N/A

                          \[\leadsto \cos M \cdot e^{\color{blue}{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
                        4. lower-exp.f64N/A

                          \[\leadsto \cos M \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
                        5. lower--.f64N/A

                          \[\leadsto \cos M \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
                        6. fabs-subN/A

                          \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
                        7. lower-fabs.f64N/A

                          \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
                        8. lower--.f64N/A

                          \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
                        9. +-commutativeN/A

                          \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left({\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2} + \ell\right)} \]
                      4. Applied rewrites96.8%

                        \[\leadsto \color{blue}{\cos M \cdot e^{\left|n - m\right| - \mathsf{fma}\left(0.5 \cdot \left(n + m\right) - M, 0.5 \cdot \left(n + m\right) - M, \ell\right)}} \]
                      5. Taylor expanded in M around 0

                        \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                      6. Step-by-step derivation
                        1. fabs-subN/A

                          \[\leadsto e^{\left|m - n\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                        2. lower-exp.f64N/A

                          \[\leadsto e^{\left|m - n\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                        3. lower--.f64N/A

                          \[\leadsto e^{\left|m - n\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                        4. fabs-subN/A

                          \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                        5. lift--.f64N/A

                          \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                        6. lift-fabs.f64N/A

                          \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                        7. lower-+.f64N/A

                          \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                        8. lower-*.f64N/A

                          \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                        9. unpow2N/A

                          \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
                        10. lower-*.f64N/A

                          \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
                        11. lift-+.f64N/A

                          \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
                        12. lift-+.f6486.8

                          \[\leadsto e^{\left|n - m\right| - \left(\ell + 0.25 \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
                      7. Applied rewrites86.8%

                        \[\leadsto e^{\left|n - m\right| - \left(\ell + 0.25 \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
                      8. Taylor expanded in n around inf

                        \[\leadsto e^{{n}^{2} \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
                      9. Step-by-step derivation
                        1. lower-*.f64N/A

                          \[\leadsto e^{{n}^{2} \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
                        2. pow2N/A

                          \[\leadsto e^{\left(n \cdot n\right) \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
                        3. lift-*.f64N/A

                          \[\leadsto e^{\left(n \cdot n\right) \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
                        4. lower--.f64N/A

                          \[\leadsto e^{\left(n \cdot n\right) \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
                        5. lower-*.f64N/A

                          \[\leadsto e^{\left(n \cdot n\right) \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
                        6. lower-/.f6452.1

                          \[\leadsto e^{\left(n \cdot n\right) \cdot \left(-0.5 \cdot \frac{m}{n} - 0.25\right)} \]
                      10. Applied rewrites52.1%

                        \[\leadsto e^{\left(n \cdot n\right) \cdot \left(-0.5 \cdot \frac{m}{n} - 0.25\right)} \]
                      11. Taylor expanded in m around 0

                        \[\leadsto e^{\left(n \cdot n\right) \cdot \frac{-1}{4}} \]
                      12. Step-by-step derivation
                        1. Applied rewrites53.7%

                          \[\leadsto e^{\left(n \cdot n\right) \cdot -0.25} \]
                      13. Recombined 3 regimes into one program.
                      14. Add Preprocessing

                      Alternative 6: 48.7% accurate, 3.7× speedup?

                      \[\begin{array}{l} \\ \begin{array}{l} t_0 := 1 \cdot e^{-\ell}\\ \mathbf{if}\;\ell \leq -8 \cdot 10^{+135}:\\ \;\;\;\;t\_0\\ \mathbf{elif}\;\ell \leq 490:\\ \;\;\;\;e^{-0.5 \cdot \left(m \cdot n\right)}\\ \mathbf{else}:\\ \;\;\;\;t\_0\\ \end{array} \end{array} \]
                      (FPCore (K m n M l)
                       :precision binary64
                       (let* ((t_0 (* 1.0 (exp (- l)))))
                         (if (<= l -8e+135) t_0 (if (<= l 490.0) (exp (* -0.5 (* m n))) t_0))))
                      double code(double K, double m, double n, double M, double l) {
                      	double t_0 = 1.0 * exp(-l);
                      	double tmp;
                      	if (l <= -8e+135) {
                      		tmp = t_0;
                      	} else if (l <= 490.0) {
                      		tmp = exp((-0.5 * (m * n)));
                      	} else {
                      		tmp = t_0;
                      	}
                      	return tmp;
                      }
                      
                      module fmin_fmax_functions
                          implicit none
                          private
                          public fmax
                          public fmin
                      
                          interface fmax
                              module procedure fmax88
                              module procedure fmax44
                              module procedure fmax84
                              module procedure fmax48
                          end interface
                          interface fmin
                              module procedure fmin88
                              module procedure fmin44
                              module procedure fmin84
                              module procedure fmin48
                          end interface
                      contains
                          real(8) function fmax88(x, y) result (res)
                              real(8), intent (in) :: x
                              real(8), intent (in) :: y
                              res = merge(y, merge(x, max(x, y), y /= y), x /= x)
                          end function
                          real(4) function fmax44(x, y) result (res)
                              real(4), intent (in) :: x
                              real(4), intent (in) :: y
                              res = merge(y, merge(x, max(x, y), y /= y), x /= x)
                          end function
                          real(8) function fmax84(x, y) result(res)
                              real(8), intent (in) :: x
                              real(4), intent (in) :: y
                              res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
                          end function
                          real(8) function fmax48(x, y) result(res)
                              real(4), intent (in) :: x
                              real(8), intent (in) :: y
                              res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
                          end function
                          real(8) function fmin88(x, y) result (res)
                              real(8), intent (in) :: x
                              real(8), intent (in) :: y
                              res = merge(y, merge(x, min(x, y), y /= y), x /= x)
                          end function
                          real(4) function fmin44(x, y) result (res)
                              real(4), intent (in) :: x
                              real(4), intent (in) :: y
                              res = merge(y, merge(x, min(x, y), y /= y), x /= x)
                          end function
                          real(8) function fmin84(x, y) result(res)
                              real(8), intent (in) :: x
                              real(4), intent (in) :: y
                              res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
                          end function
                          real(8) function fmin48(x, y) result(res)
                              real(4), intent (in) :: x
                              real(8), intent (in) :: y
                              res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
                          end function
                      end module
                      
                      real(8) function code(k, m, n, m_1, l)
                      use fmin_fmax_functions
                          real(8), intent (in) :: k
                          real(8), intent (in) :: m
                          real(8), intent (in) :: n
                          real(8), intent (in) :: m_1
                          real(8), intent (in) :: l
                          real(8) :: t_0
                          real(8) :: tmp
                          t_0 = 1.0d0 * exp(-l)
                          if (l <= (-8d+135)) then
                              tmp = t_0
                          else if (l <= 490.0d0) then
                              tmp = exp(((-0.5d0) * (m * n)))
                          else
                              tmp = t_0
                          end if
                          code = tmp
                      end function
                      
                      public static double code(double K, double m, double n, double M, double l) {
                      	double t_0 = 1.0 * Math.exp(-l);
                      	double tmp;
                      	if (l <= -8e+135) {
                      		tmp = t_0;
                      	} else if (l <= 490.0) {
                      		tmp = Math.exp((-0.5 * (m * n)));
                      	} else {
                      		tmp = t_0;
                      	}
                      	return tmp;
                      }
                      
                      def code(K, m, n, M, l):
                      	t_0 = 1.0 * math.exp(-l)
                      	tmp = 0
                      	if l <= -8e+135:
                      		tmp = t_0
                      	elif l <= 490.0:
                      		tmp = math.exp((-0.5 * (m * n)))
                      	else:
                      		tmp = t_0
                      	return tmp
                      
                      function code(K, m, n, M, l)
                      	t_0 = Float64(1.0 * exp(Float64(-l)))
                      	tmp = 0.0
                      	if (l <= -8e+135)
                      		tmp = t_0;
                      	elseif (l <= 490.0)
                      		tmp = exp(Float64(-0.5 * Float64(m * n)));
                      	else
                      		tmp = t_0;
                      	end
                      	return tmp
                      end
                      
                      function tmp_2 = code(K, m, n, M, l)
                      	t_0 = 1.0 * exp(-l);
                      	tmp = 0.0;
                      	if (l <= -8e+135)
                      		tmp = t_0;
                      	elseif (l <= 490.0)
                      		tmp = exp((-0.5 * (m * n)));
                      	else
                      		tmp = t_0;
                      	end
                      	tmp_2 = tmp;
                      end
                      
                      code[K_, m_, n_, M_, l_] := Block[{t$95$0 = N[(1.0 * N[Exp[(-l)], $MachinePrecision]), $MachinePrecision]}, If[LessEqual[l, -8e+135], t$95$0, If[LessEqual[l, 490.0], N[Exp[N[(-0.5 * N[(m * n), $MachinePrecision]), $MachinePrecision]], $MachinePrecision], t$95$0]]]
                      
                      \begin{array}{l}
                      
                      \\
                      \begin{array}{l}
                      t_0 := 1 \cdot e^{-\ell}\\
                      \mathbf{if}\;\ell \leq -8 \cdot 10^{+135}:\\
                      \;\;\;\;t\_0\\
                      
                      \mathbf{elif}\;\ell \leq 490:\\
                      \;\;\;\;e^{-0.5 \cdot \left(m \cdot n\right)}\\
                      
                      \mathbf{else}:\\
                      \;\;\;\;t\_0\\
                      
                      
                      \end{array}
                      \end{array}
                      
                      Derivation
                      1. Split input into 2 regimes
                      2. if l < -7.99999999999999969e135 or 490 < l

                        1. Initial program 76.7%

                          \[\cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\left(-{\left(\frac{m + n}{2} - M\right)}^{2}\right) - \left(\ell - \left|m - n\right|\right)} \]
                        2. Taylor expanded in l around inf

                          \[\leadsto \cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\color{blue}{-1 \cdot \ell}} \]
                        3. Step-by-step derivation
                          1. mul-1-negN/A

                            \[\leadsto \cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\mathsf{neg}\left(\ell\right)} \]
                          2. lower-neg.f6430.7

                            \[\leadsto \cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{-\ell} \]
                        4. Applied rewrites30.7%

                          \[\leadsto \cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\color{blue}{-\ell}} \]
                        5. Taylor expanded in M around 0

                          \[\leadsto \color{blue}{\cos \left(\frac{1}{2} \cdot \left(K \cdot \left(m + n\right)\right)\right)} \cdot e^{-\ell} \]
                        6. Step-by-step derivation
                          1. lower-cos.f64N/A

                            \[\leadsto \cos \left(\frac{1}{2} \cdot \left(K \cdot \left(m + n\right)\right)\right) \cdot e^{-\ell} \]
                          2. lower-*.f64N/A

                            \[\leadsto \cos \left(\frac{1}{2} \cdot \left(K \cdot \left(m + n\right)\right)\right) \cdot e^{-\ell} \]
                          3. lift-+.f64N/A

                            \[\leadsto \cos \left(\frac{1}{2} \cdot \left(K \cdot \left(m + n\right)\right)\right) \cdot e^{-\ell} \]
                          4. lift-*.f6430.5

                            \[\leadsto \cos \left(0.5 \cdot \left(K \cdot \left(m + n\right)\right)\right) \cdot e^{-\ell} \]
                        7. Applied rewrites30.5%

                          \[\leadsto \color{blue}{\cos \left(0.5 \cdot \left(K \cdot \left(m + n\right)\right)\right)} \cdot e^{-\ell} \]
                        8. Taylor expanded in K around 0

                          \[\leadsto 1 \cdot e^{-\ell} \]
                        9. Step-by-step derivation
                          1. Applied rewrites35.9%

                            \[\leadsto 1 \cdot e^{-\ell} \]

                          if -7.99999999999999969e135 < l < 490

                          1. Initial program 76.7%

                            \[\cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\left(-{\left(\frac{m + n}{2} - M\right)}^{2}\right) - \left(\ell - \left|m - n\right|\right)} \]
                          2. Taylor expanded in K around 0

                            \[\leadsto \color{blue}{\cos \left(\mathsf{neg}\left(M\right)\right) \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
                          3. Step-by-step derivation
                            1. cos-negN/A

                              \[\leadsto \cos M \cdot e^{\color{blue}{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
                            2. lower-*.f64N/A

                              \[\leadsto \cos M \cdot \color{blue}{e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
                            3. lower-cos.f64N/A

                              \[\leadsto \cos M \cdot e^{\color{blue}{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)}} \]
                            4. lower-exp.f64N/A

                              \[\leadsto \cos M \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
                            5. lower--.f64N/A

                              \[\leadsto \cos M \cdot e^{\left|m - n\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
                            6. fabs-subN/A

                              \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
                            7. lower-fabs.f64N/A

                              \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
                            8. lower--.f64N/A

                              \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left(\ell + {\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2}\right)} \]
                            9. +-commutativeN/A

                              \[\leadsto \cos M \cdot e^{\left|n - m\right| - \left({\left(\frac{1}{2} \cdot \left(m + n\right) - M\right)}^{2} + \ell\right)} \]
                          4. Applied rewrites96.8%

                            \[\leadsto \color{blue}{\cos M \cdot e^{\left|n - m\right| - \mathsf{fma}\left(0.5 \cdot \left(n + m\right) - M, 0.5 \cdot \left(n + m\right) - M, \ell\right)}} \]
                          5. Taylor expanded in M around 0

                            \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                          6. Step-by-step derivation
                            1. fabs-subN/A

                              \[\leadsto e^{\left|m - n\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                            2. lower-exp.f64N/A

                              \[\leadsto e^{\left|m - n\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                            3. lower--.f64N/A

                              \[\leadsto e^{\left|m - n\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                            4. fabs-subN/A

                              \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                            5. lift--.f64N/A

                              \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                            6. lift-fabs.f64N/A

                              \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                            7. lower-+.f64N/A

                              \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                            8. lower-*.f64N/A

                              \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot {\left(m + n\right)}^{2}\right)} \]
                            9. unpow2N/A

                              \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
                            10. lower-*.f64N/A

                              \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
                            11. lift-+.f64N/A

                              \[\leadsto e^{\left|n - m\right| - \left(\ell + \frac{1}{4} \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
                            12. lift-+.f6486.8

                              \[\leadsto e^{\left|n - m\right| - \left(\ell + 0.25 \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
                          7. Applied rewrites86.8%

                            \[\leadsto e^{\left|n - m\right| - \left(\ell + 0.25 \cdot \left(\left(m + n\right) \cdot \left(m + n\right)\right)\right)} \]
                          8. Taylor expanded in n around inf

                            \[\leadsto e^{{n}^{2} \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
                          9. Step-by-step derivation
                            1. lower-*.f64N/A

                              \[\leadsto e^{{n}^{2} \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
                            2. pow2N/A

                              \[\leadsto e^{\left(n \cdot n\right) \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
                            3. lift-*.f64N/A

                              \[\leadsto e^{\left(n \cdot n\right) \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
                            4. lower--.f64N/A

                              \[\leadsto e^{\left(n \cdot n\right) \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
                            5. lower-*.f64N/A

                              \[\leadsto e^{\left(n \cdot n\right) \cdot \left(\frac{-1}{2} \cdot \frac{m}{n} - \frac{1}{4}\right)} \]
                            6. lower-/.f6452.1

                              \[\leadsto e^{\left(n \cdot n\right) \cdot \left(-0.5 \cdot \frac{m}{n} - 0.25\right)} \]
                          10. Applied rewrites52.1%

                            \[\leadsto e^{\left(n \cdot n\right) \cdot \left(-0.5 \cdot \frac{m}{n} - 0.25\right)} \]
                          11. Taylor expanded in m around inf

                            \[\leadsto e^{\frac{-1}{2} \cdot \left(m \cdot n\right)} \]
                          12. Step-by-step derivation
                            1. lower-*.f64N/A

                              \[\leadsto e^{\frac{-1}{2} \cdot \left(m \cdot n\right)} \]
                            2. lower-*.f6430.4

                              \[\leadsto e^{-0.5 \cdot \left(m \cdot n\right)} \]
                          13. Applied rewrites30.4%

                            \[\leadsto e^{-0.5 \cdot \left(m \cdot n\right)} \]
                        10. Recombined 2 regimes into one program.
                        11. Add Preprocessing

                        Alternative 7: 35.9% accurate, 6.1× speedup?

                        \[\begin{array}{l} \\ 1 \cdot e^{-\ell} \end{array} \]
                        (FPCore (K m n M l) :precision binary64 (* 1.0 (exp (- l))))
                        double code(double K, double m, double n, double M, double l) {
                        	return 1.0 * exp(-l);
                        }
                        
                        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(k, m, n, m_1, l)
                        use fmin_fmax_functions
                            real(8), intent (in) :: k
                            real(8), intent (in) :: m
                            real(8), intent (in) :: n
                            real(8), intent (in) :: m_1
                            real(8), intent (in) :: l
                            code = 1.0d0 * exp(-l)
                        end function
                        
                        public static double code(double K, double m, double n, double M, double l) {
                        	return 1.0 * Math.exp(-l);
                        }
                        
                        def code(K, m, n, M, l):
                        	return 1.0 * math.exp(-l)
                        
                        function code(K, m, n, M, l)
                        	return Float64(1.0 * exp(Float64(-l)))
                        end
                        
                        function tmp = code(K, m, n, M, l)
                        	tmp = 1.0 * exp(-l);
                        end
                        
                        code[K_, m_, n_, M_, l_] := N[(1.0 * N[Exp[(-l)], $MachinePrecision]), $MachinePrecision]
                        
                        \begin{array}{l}
                        
                        \\
                        1 \cdot e^{-\ell}
                        \end{array}
                        
                        Derivation
                        1. Initial program 76.7%

                          \[\cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\left(-{\left(\frac{m + n}{2} - M\right)}^{2}\right) - \left(\ell - \left|m - n\right|\right)} \]
                        2. Taylor expanded in l around inf

                          \[\leadsto \cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\color{blue}{-1 \cdot \ell}} \]
                        3. Step-by-step derivation
                          1. mul-1-negN/A

                            \[\leadsto \cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\mathsf{neg}\left(\ell\right)} \]
                          2. lower-neg.f6430.7

                            \[\leadsto \cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{-\ell} \]
                        4. Applied rewrites30.7%

                          \[\leadsto \cos \left(\frac{K \cdot \left(m + n\right)}{2} - M\right) \cdot e^{\color{blue}{-\ell}} \]
                        5. Taylor expanded in M around 0

                          \[\leadsto \color{blue}{\cos \left(\frac{1}{2} \cdot \left(K \cdot \left(m + n\right)\right)\right)} \cdot e^{-\ell} \]
                        6. Step-by-step derivation
                          1. lower-cos.f64N/A

                            \[\leadsto \cos \left(\frac{1}{2} \cdot \left(K \cdot \left(m + n\right)\right)\right) \cdot e^{-\ell} \]
                          2. lower-*.f64N/A

                            \[\leadsto \cos \left(\frac{1}{2} \cdot \left(K \cdot \left(m + n\right)\right)\right) \cdot e^{-\ell} \]
                          3. lift-+.f64N/A

                            \[\leadsto \cos \left(\frac{1}{2} \cdot \left(K \cdot \left(m + n\right)\right)\right) \cdot e^{-\ell} \]
                          4. lift-*.f6430.5

                            \[\leadsto \cos \left(0.5 \cdot \left(K \cdot \left(m + n\right)\right)\right) \cdot e^{-\ell} \]
                        7. Applied rewrites30.5%

                          \[\leadsto \color{blue}{\cos \left(0.5 \cdot \left(K \cdot \left(m + n\right)\right)\right)} \cdot e^{-\ell} \]
                        8. Taylor expanded in K around 0

                          \[\leadsto 1 \cdot e^{-\ell} \]
                        9. Step-by-step derivation
                          1. Applied rewrites35.9%

                            \[\leadsto 1 \cdot e^{-\ell} \]
                          2. Add Preprocessing

                          Reproduce

                          ?
                          herbie shell --seed 2025139 
                          (FPCore (K m n M l)
                            :name "Maksimov and Kolovsky, Equation (32)"
                            :precision binary64
                            (* (cos (- (/ (* K (+ m n)) 2.0) M)) (exp (- (- (pow (- (/ (+ m n) 2.0) M) 2.0)) (- l (fabs (- m n)))))))