Data.Colour.RGB:hslsv from colour-2.3.3, B

Percentage Accurate: 99.4% → 99.8%
Time: 8.4s
Alternatives: 13
Speedup: 1.1×

Specification

?
\[\begin{array}{l} \\ \frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \end{array} \]
(FPCore (x y z t a)
 :precision binary64
 (+ (/ (* 60.0 (- x y)) (- z t)) (* a 120.0)))
double code(double x, double y, double z, double t, double a) {
	return ((60.0 * (x - y)) / (z - t)) + (a * 120.0);
}
real(8) function code(x, y, z, t, a)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8), intent (in) :: t
    real(8), intent (in) :: a
    code = ((60.0d0 * (x - y)) / (z - t)) + (a * 120.0d0)
end function
public static double code(double x, double y, double z, double t, double a) {
	return ((60.0 * (x - y)) / (z - t)) + (a * 120.0);
}
def code(x, y, z, t, a):
	return ((60.0 * (x - y)) / (z - t)) + (a * 120.0)
function code(x, y, z, t, a)
	return Float64(Float64(Float64(60.0 * Float64(x - y)) / Float64(z - t)) + Float64(a * 120.0))
end
function tmp = code(x, y, z, t, a)
	tmp = ((60.0 * (x - y)) / (z - t)) + (a * 120.0);
end
code[x_, y_, z_, t_, a_] := N[(N[(N[(60.0 * N[(x - y), $MachinePrecision]), $MachinePrecision] / N[(z - t), $MachinePrecision]), $MachinePrecision] + N[(a * 120.0), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120
\end{array}

Sampling outcomes in binary64 precision:

Local Percentage Accuracy vs ?

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

Accuracy vs Speed?

Herbie found 13 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: 99.4% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \end{array} \]
(FPCore (x y z t a)
 :precision binary64
 (+ (/ (* 60.0 (- x y)) (- z t)) (* a 120.0)))
double code(double x, double y, double z, double t, double a) {
	return ((60.0 * (x - y)) / (z - t)) + (a * 120.0);
}
real(8) function code(x, y, z, t, a)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8), intent (in) :: t
    real(8), intent (in) :: a
    code = ((60.0d0 * (x - y)) / (z - t)) + (a * 120.0d0)
end function
public static double code(double x, double y, double z, double t, double a) {
	return ((60.0 * (x - y)) / (z - t)) + (a * 120.0);
}
def code(x, y, z, t, a):
	return ((60.0 * (x - y)) / (z - t)) + (a * 120.0)
function code(x, y, z, t, a)
	return Float64(Float64(Float64(60.0 * Float64(x - y)) / Float64(z - t)) + Float64(a * 120.0))
end
function tmp = code(x, y, z, t, a)
	tmp = ((60.0 * (x - y)) / (z - t)) + (a * 120.0);
end
code[x_, y_, z_, t_, a_] := N[(N[(N[(60.0 * N[(x - y), $MachinePrecision]), $MachinePrecision] / N[(z - t), $MachinePrecision]), $MachinePrecision] + N[(a * 120.0), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120
\end{array}

Alternative 1: 99.8% accurate, 1.1× speedup?

\[\begin{array}{l} \\ \mathsf{fma}\left(a, 120, \frac{60}{z - t} \cdot \left(x - y\right)\right) \end{array} \]
(FPCore (x y z t a)
 :precision binary64
 (fma a 120.0 (* (/ 60.0 (- z t)) (- x y))))
double code(double x, double y, double z, double t, double a) {
	return fma(a, 120.0, ((60.0 / (z - t)) * (x - y)));
}
function code(x, y, z, t, a)
	return fma(a, 120.0, Float64(Float64(60.0 / Float64(z - t)) * Float64(x - y)))
end
code[x_, y_, z_, t_, a_] := N[(a * 120.0 + N[(N[(60.0 / N[(z - t), $MachinePrecision]), $MachinePrecision] * N[(x - y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\mathsf{fma}\left(a, 120, \frac{60}{z - t} \cdot \left(x - y\right)\right)
\end{array}
Derivation
  1. Initial program 99.4%

    \[\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \]
  2. Add Preprocessing
  3. Step-by-step derivation
    1. lift-+.f64N/A

      \[\leadsto \color{blue}{\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120} \]
    2. +-commutativeN/A

      \[\leadsto \color{blue}{a \cdot 120 + \frac{60 \cdot \left(x - y\right)}{z - t}} \]
    3. lift-*.f64N/A

      \[\leadsto \color{blue}{a \cdot 120} + \frac{60 \cdot \left(x - y\right)}{z - t} \]
    4. lower-fma.f6499.4

      \[\leadsto \color{blue}{\mathsf{fma}\left(a, 120, \frac{60 \cdot \left(x - y\right)}{z - t}\right)} \]
    5. lift-/.f64N/A

      \[\leadsto \mathsf{fma}\left(a, 120, \color{blue}{\frac{60 \cdot \left(x - y\right)}{z - t}}\right) \]
    6. lift-*.f64N/A

      \[\leadsto \mathsf{fma}\left(a, 120, \frac{\color{blue}{60 \cdot \left(x - y\right)}}{z - t}\right) \]
    7. *-commutativeN/A

      \[\leadsto \mathsf{fma}\left(a, 120, \frac{\color{blue}{\left(x - y\right) \cdot 60}}{z - t}\right) \]
    8. associate-/l*N/A

      \[\leadsto \mathsf{fma}\left(a, 120, \color{blue}{\left(x - y\right) \cdot \frac{60}{z - t}}\right) \]
    9. *-commutativeN/A

      \[\leadsto \mathsf{fma}\left(a, 120, \color{blue}{\frac{60}{z - t} \cdot \left(x - y\right)}\right) \]
    10. lower-*.f64N/A

      \[\leadsto \mathsf{fma}\left(a, 120, \color{blue}{\frac{60}{z - t} \cdot \left(x - y\right)}\right) \]
    11. lower-/.f6499.8

      \[\leadsto \mathsf{fma}\left(a, 120, \color{blue}{\frac{60}{z - t}} \cdot \left(x - y\right)\right) \]
  4. Applied rewrites99.8%

    \[\leadsto \color{blue}{\mathsf{fma}\left(a, 120, \frac{60}{z - t} \cdot \left(x - y\right)\right)} \]
  5. Add Preprocessing

Alternative 2: 83.3% accurate, 0.6× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;a \cdot 120 \leq -5 \cdot 10^{-132} \lor \neg \left(a \cdot 120 \leq 4 \cdot 10^{-95}\right):\\ \;\;\;\;\mathsf{fma}\left(\frac{x}{z - t}, 60, 120 \cdot a\right)\\ \mathbf{else}:\\ \;\;\;\;\left(x - y\right) \cdot \frac{60}{z - t}\\ \end{array} \end{array} \]
(FPCore (x y z t a)
 :precision binary64
 (if (or (<= (* a 120.0) -5e-132) (not (<= (* a 120.0) 4e-95)))
   (fma (/ x (- z t)) 60.0 (* 120.0 a))
   (* (- x y) (/ 60.0 (- z t)))))
double code(double x, double y, double z, double t, double a) {
	double tmp;
	if (((a * 120.0) <= -5e-132) || !((a * 120.0) <= 4e-95)) {
		tmp = fma((x / (z - t)), 60.0, (120.0 * a));
	} else {
		tmp = (x - y) * (60.0 / (z - t));
	}
	return tmp;
}
function code(x, y, z, t, a)
	tmp = 0.0
	if ((Float64(a * 120.0) <= -5e-132) || !(Float64(a * 120.0) <= 4e-95))
		tmp = fma(Float64(x / Float64(z - t)), 60.0, Float64(120.0 * a));
	else
		tmp = Float64(Float64(x - y) * Float64(60.0 / Float64(z - t)));
	end
	return tmp
end
code[x_, y_, z_, t_, a_] := If[Or[LessEqual[N[(a * 120.0), $MachinePrecision], -5e-132], N[Not[LessEqual[N[(a * 120.0), $MachinePrecision], 4e-95]], $MachinePrecision]], N[(N[(x / N[(z - t), $MachinePrecision]), $MachinePrecision] * 60.0 + N[(120.0 * a), $MachinePrecision]), $MachinePrecision], N[(N[(x - y), $MachinePrecision] * N[(60.0 / N[(z - t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;a \cdot 120 \leq -5 \cdot 10^{-132} \lor \neg \left(a \cdot 120 \leq 4 \cdot 10^{-95}\right):\\
\;\;\;\;\mathsf{fma}\left(\frac{x}{z - t}, 60, 120 \cdot a\right)\\

\mathbf{else}:\\
\;\;\;\;\left(x - y\right) \cdot \frac{60}{z - t}\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (*.f64 a #s(literal 120 binary64)) < -4.9999999999999999e-132 or 3.99999999999999996e-95 < (*.f64 a #s(literal 120 binary64))

    1. Initial program 99.3%

      \[\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \]
    2. Add Preprocessing
    3. Step-by-step derivation
      1. lift-+.f64N/A

        \[\leadsto \color{blue}{\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120} \]
      2. +-commutativeN/A

        \[\leadsto \color{blue}{a \cdot 120 + \frac{60 \cdot \left(x - y\right)}{z - t}} \]
      3. lift-*.f64N/A

        \[\leadsto \color{blue}{a \cdot 120} + \frac{60 \cdot \left(x - y\right)}{z - t} \]
      4. lower-fma.f6499.3

        \[\leadsto \color{blue}{\mathsf{fma}\left(a, 120, \frac{60 \cdot \left(x - y\right)}{z - t}\right)} \]
      5. lift-/.f64N/A

        \[\leadsto \mathsf{fma}\left(a, 120, \color{blue}{\frac{60 \cdot \left(x - y\right)}{z - t}}\right) \]
      6. lift-*.f64N/A

        \[\leadsto \mathsf{fma}\left(a, 120, \frac{\color{blue}{60 \cdot \left(x - y\right)}}{z - t}\right) \]
      7. *-commutativeN/A

        \[\leadsto \mathsf{fma}\left(a, 120, \frac{\color{blue}{\left(x - y\right) \cdot 60}}{z - t}\right) \]
      8. associate-/l*N/A

        \[\leadsto \mathsf{fma}\left(a, 120, \color{blue}{\left(x - y\right) \cdot \frac{60}{z - t}}\right) \]
      9. *-commutativeN/A

        \[\leadsto \mathsf{fma}\left(a, 120, \color{blue}{\frac{60}{z - t} \cdot \left(x - y\right)}\right) \]
      10. lower-*.f64N/A

        \[\leadsto \mathsf{fma}\left(a, 120, \color{blue}{\frac{60}{z - t} \cdot \left(x - y\right)}\right) \]
      11. lower-/.f6499.8

        \[\leadsto \mathsf{fma}\left(a, 120, \color{blue}{\frac{60}{z - t}} \cdot \left(x - y\right)\right) \]
    4. Applied rewrites99.8%

      \[\leadsto \color{blue}{\mathsf{fma}\left(a, 120, \frac{60}{z - t} \cdot \left(x - y\right)\right)} \]
    5. Taylor expanded in y around 0

      \[\leadsto \color{blue}{60 \cdot \frac{x}{z - t} + 120 \cdot a} \]
    6. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} + 120 \cdot a \]
      2. lower-fma.f64N/A

        \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{x}{z - t}, 60, 120 \cdot a\right)} \]
      3. lower-/.f64N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{x}{z - t}}, 60, 120 \cdot a\right) \]
      4. lower--.f64N/A

        \[\leadsto \mathsf{fma}\left(\frac{x}{\color{blue}{z - t}}, 60, 120 \cdot a\right) \]
      5. lower-*.f6483.8

        \[\leadsto \mathsf{fma}\left(\frac{x}{z - t}, 60, \color{blue}{120 \cdot a}\right) \]
    7. Applied rewrites83.8%

      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{x}{z - t}, 60, 120 \cdot a\right)} \]

    if -4.9999999999999999e-132 < (*.f64 a #s(literal 120 binary64)) < 3.99999999999999996e-95

    1. Initial program 99.7%

      \[\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \]
    2. Add Preprocessing
    3. Taylor expanded in a around 0

      \[\leadsto \color{blue}{60 \cdot \frac{x - y}{z - t}} \]
    4. Step-by-step derivation
      1. associate-*r/N/A

        \[\leadsto \color{blue}{\frac{60 \cdot \left(x - y\right)}{z - t}} \]
      2. *-commutativeN/A

        \[\leadsto \frac{\color{blue}{\left(x - y\right) \cdot 60}}{z - t} \]
      3. associate-/l*N/A

        \[\leadsto \color{blue}{\left(x - y\right) \cdot \frac{60}{z - t}} \]
      4. metadata-evalN/A

        \[\leadsto \left(x - y\right) \cdot \frac{\color{blue}{60 \cdot 1}}{z - t} \]
      5. associate-*r/N/A

        \[\leadsto \left(x - y\right) \cdot \color{blue}{\left(60 \cdot \frac{1}{z - t}\right)} \]
      6. lower-*.f64N/A

        \[\leadsto \color{blue}{\left(x - y\right) \cdot \left(60 \cdot \frac{1}{z - t}\right)} \]
      7. lower--.f64N/A

        \[\leadsto \color{blue}{\left(x - y\right)} \cdot \left(60 \cdot \frac{1}{z - t}\right) \]
      8. associate-*r/N/A

        \[\leadsto \left(x - y\right) \cdot \color{blue}{\frac{60 \cdot 1}{z - t}} \]
      9. metadata-evalN/A

        \[\leadsto \left(x - y\right) \cdot \frac{\color{blue}{60}}{z - t} \]
      10. lower-/.f64N/A

        \[\leadsto \left(x - y\right) \cdot \color{blue}{\frac{60}{z - t}} \]
      11. lower--.f6490.8

        \[\leadsto \left(x - y\right) \cdot \frac{60}{\color{blue}{z - t}} \]
    5. Applied rewrites90.8%

      \[\leadsto \color{blue}{\left(x - y\right) \cdot \frac{60}{z - t}} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification85.8%

    \[\leadsto \begin{array}{l} \mathbf{if}\;a \cdot 120 \leq -5 \cdot 10^{-132} \lor \neg \left(a \cdot 120 \leq 4 \cdot 10^{-95}\right):\\ \;\;\;\;\mathsf{fma}\left(\frac{x}{z - t}, 60, 120 \cdot a\right)\\ \mathbf{else}:\\ \;\;\;\;\left(x - y\right) \cdot \frac{60}{z - t}\\ \end{array} \]
  5. Add Preprocessing

Alternative 3: 75.8% accurate, 0.7× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;a \cdot 120 \leq -50 \lor \neg \left(a \cdot 120 \leq 10^{+25}\right):\\ \;\;\;\;120 \cdot a\\ \mathbf{else}:\\ \;\;\;\;\left(x - y\right) \cdot \frac{60}{z - t}\\ \end{array} \end{array} \]
(FPCore (x y z t a)
 :precision binary64
 (if (or (<= (* a 120.0) -50.0) (not (<= (* a 120.0) 1e+25)))
   (* 120.0 a)
   (* (- x y) (/ 60.0 (- z t)))))
double code(double x, double y, double z, double t, double a) {
	double tmp;
	if (((a * 120.0) <= -50.0) || !((a * 120.0) <= 1e+25)) {
		tmp = 120.0 * a;
	} else {
		tmp = (x - y) * (60.0 / (z - t));
	}
	return tmp;
}
real(8) function code(x, y, z, t, a)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8), intent (in) :: t
    real(8), intent (in) :: a
    real(8) :: tmp
    if (((a * 120.0d0) <= (-50.0d0)) .or. (.not. ((a * 120.0d0) <= 1d+25))) then
        tmp = 120.0d0 * a
    else
        tmp = (x - y) * (60.0d0 / (z - t))
    end if
    code = tmp
end function
public static double code(double x, double y, double z, double t, double a) {
	double tmp;
	if (((a * 120.0) <= -50.0) || !((a * 120.0) <= 1e+25)) {
		tmp = 120.0 * a;
	} else {
		tmp = (x - y) * (60.0 / (z - t));
	}
	return tmp;
}
def code(x, y, z, t, a):
	tmp = 0
	if ((a * 120.0) <= -50.0) or not ((a * 120.0) <= 1e+25):
		tmp = 120.0 * a
	else:
		tmp = (x - y) * (60.0 / (z - t))
	return tmp
function code(x, y, z, t, a)
	tmp = 0.0
	if ((Float64(a * 120.0) <= -50.0) || !(Float64(a * 120.0) <= 1e+25))
		tmp = Float64(120.0 * a);
	else
		tmp = Float64(Float64(x - y) * Float64(60.0 / Float64(z - t)));
	end
	return tmp
end
function tmp_2 = code(x, y, z, t, a)
	tmp = 0.0;
	if (((a * 120.0) <= -50.0) || ~(((a * 120.0) <= 1e+25)))
		tmp = 120.0 * a;
	else
		tmp = (x - y) * (60.0 / (z - t));
	end
	tmp_2 = tmp;
end
code[x_, y_, z_, t_, a_] := If[Or[LessEqual[N[(a * 120.0), $MachinePrecision], -50.0], N[Not[LessEqual[N[(a * 120.0), $MachinePrecision], 1e+25]], $MachinePrecision]], N[(120.0 * a), $MachinePrecision], N[(N[(x - y), $MachinePrecision] * N[(60.0 / N[(z - t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;a \cdot 120 \leq -50 \lor \neg \left(a \cdot 120 \leq 10^{+25}\right):\\
\;\;\;\;120 \cdot a\\

\mathbf{else}:\\
\;\;\;\;\left(x - y\right) \cdot \frac{60}{z - t}\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (*.f64 a #s(literal 120 binary64)) < -50 or 1.00000000000000009e25 < (*.f64 a #s(literal 120 binary64))

    1. Initial program 99.8%

      \[\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \]
    2. Add Preprocessing
    3. Taylor expanded in z around inf

      \[\leadsto \color{blue}{120 \cdot a} \]
    4. Step-by-step derivation
      1. lower-*.f6480.2

        \[\leadsto \color{blue}{120 \cdot a} \]
    5. Applied rewrites80.2%

      \[\leadsto \color{blue}{120 \cdot a} \]

    if -50 < (*.f64 a #s(literal 120 binary64)) < 1.00000000000000009e25

    1. Initial program 99.0%

      \[\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \]
    2. Add Preprocessing
    3. Taylor expanded in a around 0

      \[\leadsto \color{blue}{60 \cdot \frac{x - y}{z - t}} \]
    4. Step-by-step derivation
      1. associate-*r/N/A

        \[\leadsto \color{blue}{\frac{60 \cdot \left(x - y\right)}{z - t}} \]
      2. *-commutativeN/A

        \[\leadsto \frac{\color{blue}{\left(x - y\right) \cdot 60}}{z - t} \]
      3. associate-/l*N/A

        \[\leadsto \color{blue}{\left(x - y\right) \cdot \frac{60}{z - t}} \]
      4. metadata-evalN/A

        \[\leadsto \left(x - y\right) \cdot \frac{\color{blue}{60 \cdot 1}}{z - t} \]
      5. associate-*r/N/A

        \[\leadsto \left(x - y\right) \cdot \color{blue}{\left(60 \cdot \frac{1}{z - t}\right)} \]
      6. lower-*.f64N/A

        \[\leadsto \color{blue}{\left(x - y\right) \cdot \left(60 \cdot \frac{1}{z - t}\right)} \]
      7. lower--.f64N/A

        \[\leadsto \color{blue}{\left(x - y\right)} \cdot \left(60 \cdot \frac{1}{z - t}\right) \]
      8. associate-*r/N/A

        \[\leadsto \left(x - y\right) \cdot \color{blue}{\frac{60 \cdot 1}{z - t}} \]
      9. metadata-evalN/A

        \[\leadsto \left(x - y\right) \cdot \frac{\color{blue}{60}}{z - t} \]
      10. lower-/.f64N/A

        \[\leadsto \left(x - y\right) \cdot \color{blue}{\frac{60}{z - t}} \]
      11. lower--.f6477.5

        \[\leadsto \left(x - y\right) \cdot \frac{60}{\color{blue}{z - t}} \]
    5. Applied rewrites77.5%

      \[\leadsto \color{blue}{\left(x - y\right) \cdot \frac{60}{z - t}} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification78.8%

    \[\leadsto \begin{array}{l} \mathbf{if}\;a \cdot 120 \leq -50 \lor \neg \left(a \cdot 120 \leq 10^{+25}\right):\\ \;\;\;\;120 \cdot a\\ \mathbf{else}:\\ \;\;\;\;\left(x - y\right) \cdot \frac{60}{z - t}\\ \end{array} \]
  5. Add Preprocessing

Alternative 4: 75.8% accurate, 0.7× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;a \cdot 120 \leq -50 \lor \neg \left(a \cdot 120 \leq 10^{+25}\right):\\ \;\;\;\;120 \cdot a\\ \mathbf{else}:\\ \;\;\;\;\frac{x - y}{z - t} \cdot 60\\ \end{array} \end{array} \]
(FPCore (x y z t a)
 :precision binary64
 (if (or (<= (* a 120.0) -50.0) (not (<= (* a 120.0) 1e+25)))
   (* 120.0 a)
   (* (/ (- x y) (- z t)) 60.0)))
double code(double x, double y, double z, double t, double a) {
	double tmp;
	if (((a * 120.0) <= -50.0) || !((a * 120.0) <= 1e+25)) {
		tmp = 120.0 * a;
	} else {
		tmp = ((x - y) / (z - t)) * 60.0;
	}
	return tmp;
}
real(8) function code(x, y, z, t, a)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8), intent (in) :: t
    real(8), intent (in) :: a
    real(8) :: tmp
    if (((a * 120.0d0) <= (-50.0d0)) .or. (.not. ((a * 120.0d0) <= 1d+25))) then
        tmp = 120.0d0 * a
    else
        tmp = ((x - y) / (z - t)) * 60.0d0
    end if
    code = tmp
end function
public static double code(double x, double y, double z, double t, double a) {
	double tmp;
	if (((a * 120.0) <= -50.0) || !((a * 120.0) <= 1e+25)) {
		tmp = 120.0 * a;
	} else {
		tmp = ((x - y) / (z - t)) * 60.0;
	}
	return tmp;
}
def code(x, y, z, t, a):
	tmp = 0
	if ((a * 120.0) <= -50.0) or not ((a * 120.0) <= 1e+25):
		tmp = 120.0 * a
	else:
		tmp = ((x - y) / (z - t)) * 60.0
	return tmp
function code(x, y, z, t, a)
	tmp = 0.0
	if ((Float64(a * 120.0) <= -50.0) || !(Float64(a * 120.0) <= 1e+25))
		tmp = Float64(120.0 * a);
	else
		tmp = Float64(Float64(Float64(x - y) / Float64(z - t)) * 60.0);
	end
	return tmp
end
function tmp_2 = code(x, y, z, t, a)
	tmp = 0.0;
	if (((a * 120.0) <= -50.0) || ~(((a * 120.0) <= 1e+25)))
		tmp = 120.0 * a;
	else
		tmp = ((x - y) / (z - t)) * 60.0;
	end
	tmp_2 = tmp;
end
code[x_, y_, z_, t_, a_] := If[Or[LessEqual[N[(a * 120.0), $MachinePrecision], -50.0], N[Not[LessEqual[N[(a * 120.0), $MachinePrecision], 1e+25]], $MachinePrecision]], N[(120.0 * a), $MachinePrecision], N[(N[(N[(x - y), $MachinePrecision] / N[(z - t), $MachinePrecision]), $MachinePrecision] * 60.0), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;a \cdot 120 \leq -50 \lor \neg \left(a \cdot 120 \leq 10^{+25}\right):\\
\;\;\;\;120 \cdot a\\

\mathbf{else}:\\
\;\;\;\;\frac{x - y}{z - t} \cdot 60\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (*.f64 a #s(literal 120 binary64)) < -50 or 1.00000000000000009e25 < (*.f64 a #s(literal 120 binary64))

    1. Initial program 99.8%

      \[\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \]
    2. Add Preprocessing
    3. Taylor expanded in z around inf

      \[\leadsto \color{blue}{120 \cdot a} \]
    4. Step-by-step derivation
      1. lower-*.f6480.2

        \[\leadsto \color{blue}{120 \cdot a} \]
    5. Applied rewrites80.2%

      \[\leadsto \color{blue}{120 \cdot a} \]

    if -50 < (*.f64 a #s(literal 120 binary64)) < 1.00000000000000009e25

    1. Initial program 99.0%

      \[\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \]
    2. Add Preprocessing
    3. Step-by-step derivation
      1. lift-+.f64N/A

        \[\leadsto \color{blue}{\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120} \]
      2. +-commutativeN/A

        \[\leadsto \color{blue}{a \cdot 120 + \frac{60 \cdot \left(x - y\right)}{z - t}} \]
      3. lift-*.f64N/A

        \[\leadsto \color{blue}{a \cdot 120} + \frac{60 \cdot \left(x - y\right)}{z - t} \]
      4. lower-fma.f6499.0

        \[\leadsto \color{blue}{\mathsf{fma}\left(a, 120, \frac{60 \cdot \left(x - y\right)}{z - t}\right)} \]
      5. lift-/.f64N/A

        \[\leadsto \mathsf{fma}\left(a, 120, \color{blue}{\frac{60 \cdot \left(x - y\right)}{z - t}}\right) \]
      6. lift-*.f64N/A

        \[\leadsto \mathsf{fma}\left(a, 120, \frac{\color{blue}{60 \cdot \left(x - y\right)}}{z - t}\right) \]
      7. *-commutativeN/A

        \[\leadsto \mathsf{fma}\left(a, 120, \frac{\color{blue}{\left(x - y\right) \cdot 60}}{z - t}\right) \]
      8. associate-/l*N/A

        \[\leadsto \mathsf{fma}\left(a, 120, \color{blue}{\left(x - y\right) \cdot \frac{60}{z - t}}\right) \]
      9. *-commutativeN/A

        \[\leadsto \mathsf{fma}\left(a, 120, \color{blue}{\frac{60}{z - t} \cdot \left(x - y\right)}\right) \]
      10. lower-*.f64N/A

        \[\leadsto \mathsf{fma}\left(a, 120, \color{blue}{\frac{60}{z - t} \cdot \left(x - y\right)}\right) \]
      11. lower-/.f6499.7

        \[\leadsto \mathsf{fma}\left(a, 120, \color{blue}{\frac{60}{z - t}} \cdot \left(x - y\right)\right) \]
    4. Applied rewrites99.7%

      \[\leadsto \color{blue}{\mathsf{fma}\left(a, 120, \frac{60}{z - t} \cdot \left(x - y\right)\right)} \]
    5. Taylor expanded in a around 0

      \[\leadsto \color{blue}{60 \cdot \frac{x - y}{z - t}} \]
    6. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \color{blue}{\frac{x - y}{z - t} \cdot 60} \]
      2. lower-*.f64N/A

        \[\leadsto \color{blue}{\frac{x - y}{z - t} \cdot 60} \]
      3. lower-/.f64N/A

        \[\leadsto \color{blue}{\frac{x - y}{z - t}} \cdot 60 \]
      4. lower--.f64N/A

        \[\leadsto \frac{\color{blue}{x - y}}{z - t} \cdot 60 \]
      5. lower--.f6477.5

        \[\leadsto \frac{x - y}{\color{blue}{z - t}} \cdot 60 \]
    7. Applied rewrites77.5%

      \[\leadsto \color{blue}{\frac{x - y}{z - t} \cdot 60} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification78.8%

    \[\leadsto \begin{array}{l} \mathbf{if}\;a \cdot 120 \leq -50 \lor \neg \left(a \cdot 120 \leq 10^{+25}\right):\\ \;\;\;\;120 \cdot a\\ \mathbf{else}:\\ \;\;\;\;\frac{x - y}{z - t} \cdot 60\\ \end{array} \]
  5. Add Preprocessing

Alternative 5: 89.3% accurate, 0.8× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x \leq -4.3 \cdot 10^{+14}:\\ \;\;\;\;\mathsf{fma}\left(\frac{x}{z - t}, 60, 120 \cdot a\right)\\ \mathbf{elif}\;x \leq 1.06 \cdot 10^{+99}:\\ \;\;\;\;\mathsf{fma}\left(120, a, \frac{y}{z - t} \cdot -60\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{60 \cdot x}{z - t} + a \cdot 120\\ \end{array} \end{array} \]
(FPCore (x y z t a)
 :precision binary64
 (if (<= x -4.3e+14)
   (fma (/ x (- z t)) 60.0 (* 120.0 a))
   (if (<= x 1.06e+99)
     (fma 120.0 a (* (/ y (- z t)) -60.0))
     (+ (/ (* 60.0 x) (- z t)) (* a 120.0)))))
double code(double x, double y, double z, double t, double a) {
	double tmp;
	if (x <= -4.3e+14) {
		tmp = fma((x / (z - t)), 60.0, (120.0 * a));
	} else if (x <= 1.06e+99) {
		tmp = fma(120.0, a, ((y / (z - t)) * -60.0));
	} else {
		tmp = ((60.0 * x) / (z - t)) + (a * 120.0);
	}
	return tmp;
}
function code(x, y, z, t, a)
	tmp = 0.0
	if (x <= -4.3e+14)
		tmp = fma(Float64(x / Float64(z - t)), 60.0, Float64(120.0 * a));
	elseif (x <= 1.06e+99)
		tmp = fma(120.0, a, Float64(Float64(y / Float64(z - t)) * -60.0));
	else
		tmp = Float64(Float64(Float64(60.0 * x) / Float64(z - t)) + Float64(a * 120.0));
	end
	return tmp
end
code[x_, y_, z_, t_, a_] := If[LessEqual[x, -4.3e+14], N[(N[(x / N[(z - t), $MachinePrecision]), $MachinePrecision] * 60.0 + N[(120.0 * a), $MachinePrecision]), $MachinePrecision], If[LessEqual[x, 1.06e+99], N[(120.0 * a + N[(N[(y / N[(z - t), $MachinePrecision]), $MachinePrecision] * -60.0), $MachinePrecision]), $MachinePrecision], N[(N[(N[(60.0 * x), $MachinePrecision] / N[(z - t), $MachinePrecision]), $MachinePrecision] + N[(a * 120.0), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;x \leq -4.3 \cdot 10^{+14}:\\
\;\;\;\;\mathsf{fma}\left(\frac{x}{z - t}, 60, 120 \cdot a\right)\\

\mathbf{elif}\;x \leq 1.06 \cdot 10^{+99}:\\
\;\;\;\;\mathsf{fma}\left(120, a, \frac{y}{z - t} \cdot -60\right)\\

\mathbf{else}:\\
\;\;\;\;\frac{60 \cdot x}{z - t} + a \cdot 120\\


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if x < -4.3e14

    1. Initial program 99.7%

      \[\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \]
    2. Add Preprocessing
    3. Step-by-step derivation
      1. lift-+.f64N/A

        \[\leadsto \color{blue}{\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120} \]
      2. +-commutativeN/A

        \[\leadsto \color{blue}{a \cdot 120 + \frac{60 \cdot \left(x - y\right)}{z - t}} \]
      3. lift-*.f64N/A

        \[\leadsto \color{blue}{a \cdot 120} + \frac{60 \cdot \left(x - y\right)}{z - t} \]
      4. lower-fma.f6499.7

        \[\leadsto \color{blue}{\mathsf{fma}\left(a, 120, \frac{60 \cdot \left(x - y\right)}{z - t}\right)} \]
      5. lift-/.f64N/A

        \[\leadsto \mathsf{fma}\left(a, 120, \color{blue}{\frac{60 \cdot \left(x - y\right)}{z - t}}\right) \]
      6. lift-*.f64N/A

        \[\leadsto \mathsf{fma}\left(a, 120, \frac{\color{blue}{60 \cdot \left(x - y\right)}}{z - t}\right) \]
      7. *-commutativeN/A

        \[\leadsto \mathsf{fma}\left(a, 120, \frac{\color{blue}{\left(x - y\right) \cdot 60}}{z - t}\right) \]
      8. associate-/l*N/A

        \[\leadsto \mathsf{fma}\left(a, 120, \color{blue}{\left(x - y\right) \cdot \frac{60}{z - t}}\right) \]
      9. *-commutativeN/A

        \[\leadsto \mathsf{fma}\left(a, 120, \color{blue}{\frac{60}{z - t} \cdot \left(x - y\right)}\right) \]
      10. lower-*.f64N/A

        \[\leadsto \mathsf{fma}\left(a, 120, \color{blue}{\frac{60}{z - t} \cdot \left(x - y\right)}\right) \]
      11. lower-/.f6499.8

        \[\leadsto \mathsf{fma}\left(a, 120, \color{blue}{\frac{60}{z - t}} \cdot \left(x - y\right)\right) \]
    4. Applied rewrites99.8%

      \[\leadsto \color{blue}{\mathsf{fma}\left(a, 120, \frac{60}{z - t} \cdot \left(x - y\right)\right)} \]
    5. Taylor expanded in y around 0

      \[\leadsto \color{blue}{60 \cdot \frac{x}{z - t} + 120 \cdot a} \]
    6. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} + 120 \cdot a \]
      2. lower-fma.f64N/A

        \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{x}{z - t}, 60, 120 \cdot a\right)} \]
      3. lower-/.f64N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{x}{z - t}}, 60, 120 \cdot a\right) \]
      4. lower--.f64N/A

        \[\leadsto \mathsf{fma}\left(\frac{x}{\color{blue}{z - t}}, 60, 120 \cdot a\right) \]
      5. lower-*.f6487.7

        \[\leadsto \mathsf{fma}\left(\frac{x}{z - t}, 60, \color{blue}{120 \cdot a}\right) \]
    7. Applied rewrites87.7%

      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{x}{z - t}, 60, 120 \cdot a\right)} \]

    if -4.3e14 < x < 1.05999999999999999e99

    1. Initial program 99.2%

      \[\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \]
    2. Add Preprocessing
    3. Taylor expanded in x around 0

      \[\leadsto \color{blue}{-60 \cdot \frac{y}{z - t} + 120 \cdot a} \]
    4. Step-by-step derivation
      1. +-commutativeN/A

        \[\leadsto \color{blue}{120 \cdot a + -60 \cdot \frac{y}{z - t}} \]
      2. lower-fma.f64N/A

        \[\leadsto \color{blue}{\mathsf{fma}\left(120, a, -60 \cdot \frac{y}{z - t}\right)} \]
      3. *-commutativeN/A

        \[\leadsto \mathsf{fma}\left(120, a, \color{blue}{\frac{y}{z - t} \cdot -60}\right) \]
      4. lower-*.f64N/A

        \[\leadsto \mathsf{fma}\left(120, a, \color{blue}{\frac{y}{z - t} \cdot -60}\right) \]
      5. lower-/.f64N/A

        \[\leadsto \mathsf{fma}\left(120, a, \color{blue}{\frac{y}{z - t}} \cdot -60\right) \]
      6. lower--.f6496.4

        \[\leadsto \mathsf{fma}\left(120, a, \frac{y}{\color{blue}{z - t}} \cdot -60\right) \]
    5. Applied rewrites96.4%

      \[\leadsto \color{blue}{\mathsf{fma}\left(120, a, \frac{y}{z - t} \cdot -60\right)} \]

    if 1.05999999999999999e99 < x

    1. Initial program 99.8%

      \[\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \]
    2. Add Preprocessing
    3. Taylor expanded in x around inf

      \[\leadsto \frac{\color{blue}{60 \cdot x}}{z - t} + a \cdot 120 \]
    4. Step-by-step derivation
      1. lower-*.f6496.2

        \[\leadsto \frac{\color{blue}{60 \cdot x}}{z - t} + a \cdot 120 \]
    5. Applied rewrites96.2%

      \[\leadsto \frac{\color{blue}{60 \cdot x}}{z - t} + a \cdot 120 \]
  3. Recombined 3 regimes into one program.
  4. Final simplification94.6%

    \[\leadsto \begin{array}{l} \mathbf{if}\;x \leq -4.3 \cdot 10^{+14}:\\ \;\;\;\;\mathsf{fma}\left(\frac{x}{z - t}, 60, 120 \cdot a\right)\\ \mathbf{elif}\;x \leq 1.06 \cdot 10^{+99}:\\ \;\;\;\;\mathsf{fma}\left(120, a, \frac{y}{z - t} \cdot -60\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{60 \cdot x}{z - t} + a \cdot 120\\ \end{array} \]
  5. Add Preprocessing

Alternative 6: 89.4% accurate, 0.8× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x \leq -4.3 \cdot 10^{+14} \lor \neg \left(x \leq 1.06 \cdot 10^{+99}\right):\\ \;\;\;\;\mathsf{fma}\left(\frac{x}{z - t}, 60, 120 \cdot a\right)\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(120, a, \frac{y}{z - t} \cdot -60\right)\\ \end{array} \end{array} \]
(FPCore (x y z t a)
 :precision binary64
 (if (or (<= x -4.3e+14) (not (<= x 1.06e+99)))
   (fma (/ x (- z t)) 60.0 (* 120.0 a))
   (fma 120.0 a (* (/ y (- z t)) -60.0))))
double code(double x, double y, double z, double t, double a) {
	double tmp;
	if ((x <= -4.3e+14) || !(x <= 1.06e+99)) {
		tmp = fma((x / (z - t)), 60.0, (120.0 * a));
	} else {
		tmp = fma(120.0, a, ((y / (z - t)) * -60.0));
	}
	return tmp;
}
function code(x, y, z, t, a)
	tmp = 0.0
	if ((x <= -4.3e+14) || !(x <= 1.06e+99))
		tmp = fma(Float64(x / Float64(z - t)), 60.0, Float64(120.0 * a));
	else
		tmp = fma(120.0, a, Float64(Float64(y / Float64(z - t)) * -60.0));
	end
	return tmp
end
code[x_, y_, z_, t_, a_] := If[Or[LessEqual[x, -4.3e+14], N[Not[LessEqual[x, 1.06e+99]], $MachinePrecision]], N[(N[(x / N[(z - t), $MachinePrecision]), $MachinePrecision] * 60.0 + N[(120.0 * a), $MachinePrecision]), $MachinePrecision], N[(120.0 * a + N[(N[(y / N[(z - t), $MachinePrecision]), $MachinePrecision] * -60.0), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;x \leq -4.3 \cdot 10^{+14} \lor \neg \left(x \leq 1.06 \cdot 10^{+99}\right):\\
\;\;\;\;\mathsf{fma}\left(\frac{x}{z - t}, 60, 120 \cdot a\right)\\

\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(120, a, \frac{y}{z - t} \cdot -60\right)\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if x < -4.3e14 or 1.05999999999999999e99 < x

    1. Initial program 99.8%

      \[\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \]
    2. Add Preprocessing
    3. Step-by-step derivation
      1. lift-+.f64N/A

        \[\leadsto \color{blue}{\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120} \]
      2. +-commutativeN/A

        \[\leadsto \color{blue}{a \cdot 120 + \frac{60 \cdot \left(x - y\right)}{z - t}} \]
      3. lift-*.f64N/A

        \[\leadsto \color{blue}{a \cdot 120} + \frac{60 \cdot \left(x - y\right)}{z - t} \]
      4. lower-fma.f6499.8

        \[\leadsto \color{blue}{\mathsf{fma}\left(a, 120, \frac{60 \cdot \left(x - y\right)}{z - t}\right)} \]
      5. lift-/.f64N/A

        \[\leadsto \mathsf{fma}\left(a, 120, \color{blue}{\frac{60 \cdot \left(x - y\right)}{z - t}}\right) \]
      6. lift-*.f64N/A

        \[\leadsto \mathsf{fma}\left(a, 120, \frac{\color{blue}{60 \cdot \left(x - y\right)}}{z - t}\right) \]
      7. *-commutativeN/A

        \[\leadsto \mathsf{fma}\left(a, 120, \frac{\color{blue}{\left(x - y\right) \cdot 60}}{z - t}\right) \]
      8. associate-/l*N/A

        \[\leadsto \mathsf{fma}\left(a, 120, \color{blue}{\left(x - y\right) \cdot \frac{60}{z - t}}\right) \]
      9. *-commutativeN/A

        \[\leadsto \mathsf{fma}\left(a, 120, \color{blue}{\frac{60}{z - t} \cdot \left(x - y\right)}\right) \]
      10. lower-*.f64N/A

        \[\leadsto \mathsf{fma}\left(a, 120, \color{blue}{\frac{60}{z - t} \cdot \left(x - y\right)}\right) \]
      11. lower-/.f6499.8

        \[\leadsto \mathsf{fma}\left(a, 120, \color{blue}{\frac{60}{z - t}} \cdot \left(x - y\right)\right) \]
    4. Applied rewrites99.8%

      \[\leadsto \color{blue}{\mathsf{fma}\left(a, 120, \frac{60}{z - t} \cdot \left(x - y\right)\right)} \]
    5. Taylor expanded in y around 0

      \[\leadsto \color{blue}{60 \cdot \frac{x}{z - t} + 120 \cdot a} \]
    6. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} + 120 \cdot a \]
      2. lower-fma.f64N/A

        \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{x}{z - t}, 60, 120 \cdot a\right)} \]
      3. lower-/.f64N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{x}{z - t}}, 60, 120 \cdot a\right) \]
      4. lower--.f64N/A

        \[\leadsto \mathsf{fma}\left(\frac{x}{\color{blue}{z - t}}, 60, 120 \cdot a\right) \]
      5. lower-*.f6491.4

        \[\leadsto \mathsf{fma}\left(\frac{x}{z - t}, 60, \color{blue}{120 \cdot a}\right) \]
    7. Applied rewrites91.4%

      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{x}{z - t}, 60, 120 \cdot a\right)} \]

    if -4.3e14 < x < 1.05999999999999999e99

    1. Initial program 99.2%

      \[\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \]
    2. Add Preprocessing
    3. Taylor expanded in x around 0

      \[\leadsto \color{blue}{-60 \cdot \frac{y}{z - t} + 120 \cdot a} \]
    4. Step-by-step derivation
      1. +-commutativeN/A

        \[\leadsto \color{blue}{120 \cdot a + -60 \cdot \frac{y}{z - t}} \]
      2. lower-fma.f64N/A

        \[\leadsto \color{blue}{\mathsf{fma}\left(120, a, -60 \cdot \frac{y}{z - t}\right)} \]
      3. *-commutativeN/A

        \[\leadsto \mathsf{fma}\left(120, a, \color{blue}{\frac{y}{z - t} \cdot -60}\right) \]
      4. lower-*.f64N/A

        \[\leadsto \mathsf{fma}\left(120, a, \color{blue}{\frac{y}{z - t} \cdot -60}\right) \]
      5. lower-/.f64N/A

        \[\leadsto \mathsf{fma}\left(120, a, \color{blue}{\frac{y}{z - t}} \cdot -60\right) \]
      6. lower--.f6496.4

        \[\leadsto \mathsf{fma}\left(120, a, \frac{y}{\color{blue}{z - t}} \cdot -60\right) \]
    5. Applied rewrites96.4%

      \[\leadsto \color{blue}{\mathsf{fma}\left(120, a, \frac{y}{z - t} \cdot -60\right)} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification94.6%

    \[\leadsto \begin{array}{l} \mathbf{if}\;x \leq -4.3 \cdot 10^{+14} \lor \neg \left(x \leq 1.06 \cdot 10^{+99}\right):\\ \;\;\;\;\mathsf{fma}\left(\frac{x}{z - t}, 60, 120 \cdot a\right)\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(120, a, \frac{y}{z - t} \cdot -60\right)\\ \end{array} \]
  5. Add Preprocessing

Alternative 7: 58.2% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x \leq -6.8 \cdot 10^{+118} \lor \neg \left(x \leq 1.4 \cdot 10^{+135}\right):\\ \;\;\;\;x \cdot \frac{60}{z - t}\\ \mathbf{else}:\\ \;\;\;\;120 \cdot a\\ \end{array} \end{array} \]
(FPCore (x y z t a)
 :precision binary64
 (if (or (<= x -6.8e+118) (not (<= x 1.4e+135)))
   (* x (/ 60.0 (- z t)))
   (* 120.0 a)))
double code(double x, double y, double z, double t, double a) {
	double tmp;
	if ((x <= -6.8e+118) || !(x <= 1.4e+135)) {
		tmp = x * (60.0 / (z - t));
	} else {
		tmp = 120.0 * a;
	}
	return tmp;
}
real(8) function code(x, y, z, t, a)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8), intent (in) :: t
    real(8), intent (in) :: a
    real(8) :: tmp
    if ((x <= (-6.8d+118)) .or. (.not. (x <= 1.4d+135))) then
        tmp = x * (60.0d0 / (z - t))
    else
        tmp = 120.0d0 * a
    end if
    code = tmp
end function
public static double code(double x, double y, double z, double t, double a) {
	double tmp;
	if ((x <= -6.8e+118) || !(x <= 1.4e+135)) {
		tmp = x * (60.0 / (z - t));
	} else {
		tmp = 120.0 * a;
	}
	return tmp;
}
def code(x, y, z, t, a):
	tmp = 0
	if (x <= -6.8e+118) or not (x <= 1.4e+135):
		tmp = x * (60.0 / (z - t))
	else:
		tmp = 120.0 * a
	return tmp
function code(x, y, z, t, a)
	tmp = 0.0
	if ((x <= -6.8e+118) || !(x <= 1.4e+135))
		tmp = Float64(x * Float64(60.0 / Float64(z - t)));
	else
		tmp = Float64(120.0 * a);
	end
	return tmp
end
function tmp_2 = code(x, y, z, t, a)
	tmp = 0.0;
	if ((x <= -6.8e+118) || ~((x <= 1.4e+135)))
		tmp = x * (60.0 / (z - t));
	else
		tmp = 120.0 * a;
	end
	tmp_2 = tmp;
end
code[x_, y_, z_, t_, a_] := If[Or[LessEqual[x, -6.8e+118], N[Not[LessEqual[x, 1.4e+135]], $MachinePrecision]], N[(x * N[(60.0 / N[(z - t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(120.0 * a), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;x \leq -6.8 \cdot 10^{+118} \lor \neg \left(x \leq 1.4 \cdot 10^{+135}\right):\\
\;\;\;\;x \cdot \frac{60}{z - t}\\

\mathbf{else}:\\
\;\;\;\;120 \cdot a\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if x < -6.79999999999999973e118 or 1.40000000000000001e135 < x

    1. Initial program 99.8%

      \[\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \]
    2. Add Preprocessing
    3. Taylor expanded in x around inf

      \[\leadsto \color{blue}{60 \cdot \frac{x}{z - t}} \]
    4. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} \]
      2. lower-*.f64N/A

        \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} \]
      3. lower-/.f64N/A

        \[\leadsto \color{blue}{\frac{x}{z - t}} \cdot 60 \]
      4. lower--.f6475.2

        \[\leadsto \frac{x}{\color{blue}{z - t}} \cdot 60 \]
    5. Applied rewrites75.2%

      \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} \]
    6. Step-by-step derivation
      1. Applied rewrites75.3%

        \[\leadsto x \cdot \color{blue}{\frac{60}{z - t}} \]

      if -6.79999999999999973e118 < x < 1.40000000000000001e135

      1. Initial program 99.2%

        \[\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \]
      2. Add Preprocessing
      3. Taylor expanded in z around inf

        \[\leadsto \color{blue}{120 \cdot a} \]
      4. Step-by-step derivation
        1. lower-*.f6462.0

          \[\leadsto \color{blue}{120 \cdot a} \]
      5. Applied rewrites62.0%

        \[\leadsto \color{blue}{120 \cdot a} \]
    7. Recombined 2 regimes into one program.
    8. Final simplification65.6%

      \[\leadsto \begin{array}{l} \mathbf{if}\;x \leq -6.8 \cdot 10^{+118} \lor \neg \left(x \leq 1.4 \cdot 10^{+135}\right):\\ \;\;\;\;x \cdot \frac{60}{z - t}\\ \mathbf{else}:\\ \;\;\;\;120 \cdot a\\ \end{array} \]
    9. Add Preprocessing

    Alternative 8: 58.1% accurate, 1.0× speedup?

    \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x \leq -6.8 \cdot 10^{+118}:\\ \;\;\;\;x \cdot \frac{60}{z - t}\\ \mathbf{elif}\;x \leq 1.4 \cdot 10^{+135}:\\ \;\;\;\;120 \cdot a\\ \mathbf{else}:\\ \;\;\;\;\frac{x \cdot 60}{z - t}\\ \end{array} \end{array} \]
    (FPCore (x y z t a)
     :precision binary64
     (if (<= x -6.8e+118)
       (* x (/ 60.0 (- z t)))
       (if (<= x 1.4e+135) (* 120.0 a) (/ (* x 60.0) (- z t)))))
    double code(double x, double y, double z, double t, double a) {
    	double tmp;
    	if (x <= -6.8e+118) {
    		tmp = x * (60.0 / (z - t));
    	} else if (x <= 1.4e+135) {
    		tmp = 120.0 * a;
    	} else {
    		tmp = (x * 60.0) / (z - t);
    	}
    	return tmp;
    }
    
    real(8) function code(x, y, z, t, a)
        real(8), intent (in) :: x
        real(8), intent (in) :: y
        real(8), intent (in) :: z
        real(8), intent (in) :: t
        real(8), intent (in) :: a
        real(8) :: tmp
        if (x <= (-6.8d+118)) then
            tmp = x * (60.0d0 / (z - t))
        else if (x <= 1.4d+135) then
            tmp = 120.0d0 * a
        else
            tmp = (x * 60.0d0) / (z - t)
        end if
        code = tmp
    end function
    
    public static double code(double x, double y, double z, double t, double a) {
    	double tmp;
    	if (x <= -6.8e+118) {
    		tmp = x * (60.0 / (z - t));
    	} else if (x <= 1.4e+135) {
    		tmp = 120.0 * a;
    	} else {
    		tmp = (x * 60.0) / (z - t);
    	}
    	return tmp;
    }
    
    def code(x, y, z, t, a):
    	tmp = 0
    	if x <= -6.8e+118:
    		tmp = x * (60.0 / (z - t))
    	elif x <= 1.4e+135:
    		tmp = 120.0 * a
    	else:
    		tmp = (x * 60.0) / (z - t)
    	return tmp
    
    function code(x, y, z, t, a)
    	tmp = 0.0
    	if (x <= -6.8e+118)
    		tmp = Float64(x * Float64(60.0 / Float64(z - t)));
    	elseif (x <= 1.4e+135)
    		tmp = Float64(120.0 * a);
    	else
    		tmp = Float64(Float64(x * 60.0) / Float64(z - t));
    	end
    	return tmp
    end
    
    function tmp_2 = code(x, y, z, t, a)
    	tmp = 0.0;
    	if (x <= -6.8e+118)
    		tmp = x * (60.0 / (z - t));
    	elseif (x <= 1.4e+135)
    		tmp = 120.0 * a;
    	else
    		tmp = (x * 60.0) / (z - t);
    	end
    	tmp_2 = tmp;
    end
    
    code[x_, y_, z_, t_, a_] := If[LessEqual[x, -6.8e+118], N[(x * N[(60.0 / N[(z - t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[x, 1.4e+135], N[(120.0 * a), $MachinePrecision], N[(N[(x * 60.0), $MachinePrecision] / N[(z - t), $MachinePrecision]), $MachinePrecision]]]
    
    \begin{array}{l}
    
    \\
    \begin{array}{l}
    \mathbf{if}\;x \leq -6.8 \cdot 10^{+118}:\\
    \;\;\;\;x \cdot \frac{60}{z - t}\\
    
    \mathbf{elif}\;x \leq 1.4 \cdot 10^{+135}:\\
    \;\;\;\;120 \cdot a\\
    
    \mathbf{else}:\\
    \;\;\;\;\frac{x \cdot 60}{z - t}\\
    
    
    \end{array}
    \end{array}
    
    Derivation
    1. Split input into 3 regimes
    2. if x < -6.79999999999999973e118

      1. Initial program 99.8%

        \[\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \]
      2. Add Preprocessing
      3. Taylor expanded in x around inf

        \[\leadsto \color{blue}{60 \cdot \frac{x}{z - t}} \]
      4. Step-by-step derivation
        1. *-commutativeN/A

          \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} \]
        2. lower-*.f64N/A

          \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} \]
        3. lower-/.f64N/A

          \[\leadsto \color{blue}{\frac{x}{z - t}} \cdot 60 \]
        4. lower--.f6472.4

          \[\leadsto \frac{x}{\color{blue}{z - t}} \cdot 60 \]
      5. Applied rewrites72.4%

        \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} \]
      6. Step-by-step derivation
        1. Applied rewrites72.5%

          \[\leadsto x \cdot \color{blue}{\frac{60}{z - t}} \]

        if -6.79999999999999973e118 < x < 1.40000000000000001e135

        1. Initial program 99.2%

          \[\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \]
        2. Add Preprocessing
        3. Taylor expanded in z around inf

          \[\leadsto \color{blue}{120 \cdot a} \]
        4. Step-by-step derivation
          1. lower-*.f6462.0

            \[\leadsto \color{blue}{120 \cdot a} \]
        5. Applied rewrites62.0%

          \[\leadsto \color{blue}{120 \cdot a} \]

        if 1.40000000000000001e135 < x

        1. Initial program 99.8%

          \[\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \]
        2. Add Preprocessing
        3. Taylor expanded in x around inf

          \[\leadsto \color{blue}{60 \cdot \frac{x}{z - t}} \]
        4. Step-by-step derivation
          1. *-commutativeN/A

            \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} \]
          2. lower-*.f64N/A

            \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} \]
          3. lower-/.f64N/A

            \[\leadsto \color{blue}{\frac{x}{z - t}} \cdot 60 \]
          4. lower--.f6478.0

            \[\leadsto \frac{x}{\color{blue}{z - t}} \cdot 60 \]
        5. Applied rewrites78.0%

          \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} \]
        6. Step-by-step derivation
          1. Applied rewrites78.1%

            \[\leadsto \frac{x \cdot 60}{\color{blue}{z - t}} \]
        7. Recombined 3 regimes into one program.
        8. Add Preprocessing

        Alternative 9: 58.2% accurate, 1.0× speedup?

        \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x \leq -6.8 \cdot 10^{+118}:\\ \;\;\;\;x \cdot \frac{60}{z - t}\\ \mathbf{elif}\;x \leq 1.4 \cdot 10^{+135}:\\ \;\;\;\;120 \cdot a\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{z - t} \cdot 60\\ \end{array} \end{array} \]
        (FPCore (x y z t a)
         :precision binary64
         (if (<= x -6.8e+118)
           (* x (/ 60.0 (- z t)))
           (if (<= x 1.4e+135) (* 120.0 a) (* (/ x (- z t)) 60.0))))
        double code(double x, double y, double z, double t, double a) {
        	double tmp;
        	if (x <= -6.8e+118) {
        		tmp = x * (60.0 / (z - t));
        	} else if (x <= 1.4e+135) {
        		tmp = 120.0 * a;
        	} else {
        		tmp = (x / (z - t)) * 60.0;
        	}
        	return tmp;
        }
        
        real(8) function code(x, y, z, t, a)
            real(8), intent (in) :: x
            real(8), intent (in) :: y
            real(8), intent (in) :: z
            real(8), intent (in) :: t
            real(8), intent (in) :: a
            real(8) :: tmp
            if (x <= (-6.8d+118)) then
                tmp = x * (60.0d0 / (z - t))
            else if (x <= 1.4d+135) then
                tmp = 120.0d0 * a
            else
                tmp = (x / (z - t)) * 60.0d0
            end if
            code = tmp
        end function
        
        public static double code(double x, double y, double z, double t, double a) {
        	double tmp;
        	if (x <= -6.8e+118) {
        		tmp = x * (60.0 / (z - t));
        	} else if (x <= 1.4e+135) {
        		tmp = 120.0 * a;
        	} else {
        		tmp = (x / (z - t)) * 60.0;
        	}
        	return tmp;
        }
        
        def code(x, y, z, t, a):
        	tmp = 0
        	if x <= -6.8e+118:
        		tmp = x * (60.0 / (z - t))
        	elif x <= 1.4e+135:
        		tmp = 120.0 * a
        	else:
        		tmp = (x / (z - t)) * 60.0
        	return tmp
        
        function code(x, y, z, t, a)
        	tmp = 0.0
        	if (x <= -6.8e+118)
        		tmp = Float64(x * Float64(60.0 / Float64(z - t)));
        	elseif (x <= 1.4e+135)
        		tmp = Float64(120.0 * a);
        	else
        		tmp = Float64(Float64(x / Float64(z - t)) * 60.0);
        	end
        	return tmp
        end
        
        function tmp_2 = code(x, y, z, t, a)
        	tmp = 0.0;
        	if (x <= -6.8e+118)
        		tmp = x * (60.0 / (z - t));
        	elseif (x <= 1.4e+135)
        		tmp = 120.0 * a;
        	else
        		tmp = (x / (z - t)) * 60.0;
        	end
        	tmp_2 = tmp;
        end
        
        code[x_, y_, z_, t_, a_] := If[LessEqual[x, -6.8e+118], N[(x * N[(60.0 / N[(z - t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[x, 1.4e+135], N[(120.0 * a), $MachinePrecision], N[(N[(x / N[(z - t), $MachinePrecision]), $MachinePrecision] * 60.0), $MachinePrecision]]]
        
        \begin{array}{l}
        
        \\
        \begin{array}{l}
        \mathbf{if}\;x \leq -6.8 \cdot 10^{+118}:\\
        \;\;\;\;x \cdot \frac{60}{z - t}\\
        
        \mathbf{elif}\;x \leq 1.4 \cdot 10^{+135}:\\
        \;\;\;\;120 \cdot a\\
        
        \mathbf{else}:\\
        \;\;\;\;\frac{x}{z - t} \cdot 60\\
        
        
        \end{array}
        \end{array}
        
        Derivation
        1. Split input into 3 regimes
        2. if x < -6.79999999999999973e118

          1. Initial program 99.8%

            \[\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \]
          2. Add Preprocessing
          3. Taylor expanded in x around inf

            \[\leadsto \color{blue}{60 \cdot \frac{x}{z - t}} \]
          4. Step-by-step derivation
            1. *-commutativeN/A

              \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} \]
            2. lower-*.f64N/A

              \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} \]
            3. lower-/.f64N/A

              \[\leadsto \color{blue}{\frac{x}{z - t}} \cdot 60 \]
            4. lower--.f6472.4

              \[\leadsto \frac{x}{\color{blue}{z - t}} \cdot 60 \]
          5. Applied rewrites72.4%

            \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} \]
          6. Step-by-step derivation
            1. Applied rewrites72.5%

              \[\leadsto x \cdot \color{blue}{\frac{60}{z - t}} \]

            if -6.79999999999999973e118 < x < 1.40000000000000001e135

            1. Initial program 99.2%

              \[\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \]
            2. Add Preprocessing
            3. Taylor expanded in z around inf

              \[\leadsto \color{blue}{120 \cdot a} \]
            4. Step-by-step derivation
              1. lower-*.f6462.0

                \[\leadsto \color{blue}{120 \cdot a} \]
            5. Applied rewrites62.0%

              \[\leadsto \color{blue}{120 \cdot a} \]

            if 1.40000000000000001e135 < x

            1. Initial program 99.8%

              \[\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \]
            2. Add Preprocessing
            3. Taylor expanded in x around inf

              \[\leadsto \color{blue}{60 \cdot \frac{x}{z - t}} \]
            4. Step-by-step derivation
              1. *-commutativeN/A

                \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} \]
              2. lower-*.f64N/A

                \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} \]
              3. lower-/.f64N/A

                \[\leadsto \color{blue}{\frac{x}{z - t}} \cdot 60 \]
              4. lower--.f6478.0

                \[\leadsto \frac{x}{\color{blue}{z - t}} \cdot 60 \]
            5. Applied rewrites78.0%

              \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} \]
          7. Recombined 3 regimes into one program.
          8. Add Preprocessing

          Alternative 10: 51.6% accurate, 1.1× speedup?

          \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x \leq -6.8 \cdot 10^{+118} \lor \neg \left(x \leq 9.8 \cdot 10^{+154}\right):\\ \;\;\;\;x \cdot \frac{-60}{t}\\ \mathbf{else}:\\ \;\;\;\;120 \cdot a\\ \end{array} \end{array} \]
          (FPCore (x y z t a)
           :precision binary64
           (if (or (<= x -6.8e+118) (not (<= x 9.8e+154)))
             (* x (/ -60.0 t))
             (* 120.0 a)))
          double code(double x, double y, double z, double t, double a) {
          	double tmp;
          	if ((x <= -6.8e+118) || !(x <= 9.8e+154)) {
          		tmp = x * (-60.0 / t);
          	} else {
          		tmp = 120.0 * a;
          	}
          	return tmp;
          }
          
          real(8) function code(x, y, z, t, a)
              real(8), intent (in) :: x
              real(8), intent (in) :: y
              real(8), intent (in) :: z
              real(8), intent (in) :: t
              real(8), intent (in) :: a
              real(8) :: tmp
              if ((x <= (-6.8d+118)) .or. (.not. (x <= 9.8d+154))) then
                  tmp = x * ((-60.0d0) / t)
              else
                  tmp = 120.0d0 * a
              end if
              code = tmp
          end function
          
          public static double code(double x, double y, double z, double t, double a) {
          	double tmp;
          	if ((x <= -6.8e+118) || !(x <= 9.8e+154)) {
          		tmp = x * (-60.0 / t);
          	} else {
          		tmp = 120.0 * a;
          	}
          	return tmp;
          }
          
          def code(x, y, z, t, a):
          	tmp = 0
          	if (x <= -6.8e+118) or not (x <= 9.8e+154):
          		tmp = x * (-60.0 / t)
          	else:
          		tmp = 120.0 * a
          	return tmp
          
          function code(x, y, z, t, a)
          	tmp = 0.0
          	if ((x <= -6.8e+118) || !(x <= 9.8e+154))
          		tmp = Float64(x * Float64(-60.0 / t));
          	else
          		tmp = Float64(120.0 * a);
          	end
          	return tmp
          end
          
          function tmp_2 = code(x, y, z, t, a)
          	tmp = 0.0;
          	if ((x <= -6.8e+118) || ~((x <= 9.8e+154)))
          		tmp = x * (-60.0 / t);
          	else
          		tmp = 120.0 * a;
          	end
          	tmp_2 = tmp;
          end
          
          code[x_, y_, z_, t_, a_] := If[Or[LessEqual[x, -6.8e+118], N[Not[LessEqual[x, 9.8e+154]], $MachinePrecision]], N[(x * N[(-60.0 / t), $MachinePrecision]), $MachinePrecision], N[(120.0 * a), $MachinePrecision]]
          
          \begin{array}{l}
          
          \\
          \begin{array}{l}
          \mathbf{if}\;x \leq -6.8 \cdot 10^{+118} \lor \neg \left(x \leq 9.8 \cdot 10^{+154}\right):\\
          \;\;\;\;x \cdot \frac{-60}{t}\\
          
          \mathbf{else}:\\
          \;\;\;\;120 \cdot a\\
          
          
          \end{array}
          \end{array}
          
          Derivation
          1. Split input into 2 regimes
          2. if x < -6.79999999999999973e118 or 9.8000000000000003e154 < x

            1. Initial program 99.8%

              \[\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \]
            2. Add Preprocessing
            3. Taylor expanded in x around inf

              \[\leadsto \color{blue}{60 \cdot \frac{x}{z - t}} \]
            4. Step-by-step derivation
              1. *-commutativeN/A

                \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} \]
              2. lower-*.f64N/A

                \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} \]
              3. lower-/.f64N/A

                \[\leadsto \color{blue}{\frac{x}{z - t}} \cdot 60 \]
              4. lower--.f6476.6

                \[\leadsto \frac{x}{\color{blue}{z - t}} \cdot 60 \]
            5. Applied rewrites76.6%

              \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} \]
            6. Taylor expanded in z around 0

              \[\leadsto -60 \cdot \color{blue}{\frac{x}{t}} \]
            7. Step-by-step derivation
              1. Applied rewrites51.0%

                \[\leadsto \frac{x}{t} \cdot \color{blue}{-60} \]
              2. Step-by-step derivation
                1. Applied rewrites51.1%

                  \[\leadsto x \cdot \frac{-60}{\color{blue}{t}} \]

                if -6.79999999999999973e118 < x < 9.8000000000000003e154

                1. Initial program 99.3%

                  \[\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \]
                2. Add Preprocessing
                3. Taylor expanded in z around inf

                  \[\leadsto \color{blue}{120 \cdot a} \]
                4. Step-by-step derivation
                  1. lower-*.f6461.8

                    \[\leadsto \color{blue}{120 \cdot a} \]
                5. Applied rewrites61.8%

                  \[\leadsto \color{blue}{120 \cdot a} \]
              3. Recombined 2 regimes into one program.
              4. Final simplification59.0%

                \[\leadsto \begin{array}{l} \mathbf{if}\;x \leq -6.8 \cdot 10^{+118} \lor \neg \left(x \leq 9.8 \cdot 10^{+154}\right):\\ \;\;\;\;x \cdot \frac{-60}{t}\\ \mathbf{else}:\\ \;\;\;\;120 \cdot a\\ \end{array} \]
              5. Add Preprocessing

              Alternative 11: 51.6% accurate, 1.1× speedup?

              \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x \leq -6.8 \cdot 10^{+118}:\\ \;\;\;\;x \cdot \frac{-60}{t}\\ \mathbf{elif}\;x \leq 9.8 \cdot 10^{+154}:\\ \;\;\;\;120 \cdot a\\ \mathbf{else}:\\ \;\;\;\;\frac{-60 \cdot x}{t}\\ \end{array} \end{array} \]
              (FPCore (x y z t a)
               :precision binary64
               (if (<= x -6.8e+118)
                 (* x (/ -60.0 t))
                 (if (<= x 9.8e+154) (* 120.0 a) (/ (* -60.0 x) t))))
              double code(double x, double y, double z, double t, double a) {
              	double tmp;
              	if (x <= -6.8e+118) {
              		tmp = x * (-60.0 / t);
              	} else if (x <= 9.8e+154) {
              		tmp = 120.0 * a;
              	} else {
              		tmp = (-60.0 * x) / t;
              	}
              	return tmp;
              }
              
              real(8) function code(x, y, z, t, a)
                  real(8), intent (in) :: x
                  real(8), intent (in) :: y
                  real(8), intent (in) :: z
                  real(8), intent (in) :: t
                  real(8), intent (in) :: a
                  real(8) :: tmp
                  if (x <= (-6.8d+118)) then
                      tmp = x * ((-60.0d0) / t)
                  else if (x <= 9.8d+154) then
                      tmp = 120.0d0 * a
                  else
                      tmp = ((-60.0d0) * x) / t
                  end if
                  code = tmp
              end function
              
              public static double code(double x, double y, double z, double t, double a) {
              	double tmp;
              	if (x <= -6.8e+118) {
              		tmp = x * (-60.0 / t);
              	} else if (x <= 9.8e+154) {
              		tmp = 120.0 * a;
              	} else {
              		tmp = (-60.0 * x) / t;
              	}
              	return tmp;
              }
              
              def code(x, y, z, t, a):
              	tmp = 0
              	if x <= -6.8e+118:
              		tmp = x * (-60.0 / t)
              	elif x <= 9.8e+154:
              		tmp = 120.0 * a
              	else:
              		tmp = (-60.0 * x) / t
              	return tmp
              
              function code(x, y, z, t, a)
              	tmp = 0.0
              	if (x <= -6.8e+118)
              		tmp = Float64(x * Float64(-60.0 / t));
              	elseif (x <= 9.8e+154)
              		tmp = Float64(120.0 * a);
              	else
              		tmp = Float64(Float64(-60.0 * x) / t);
              	end
              	return tmp
              end
              
              function tmp_2 = code(x, y, z, t, a)
              	tmp = 0.0;
              	if (x <= -6.8e+118)
              		tmp = x * (-60.0 / t);
              	elseif (x <= 9.8e+154)
              		tmp = 120.0 * a;
              	else
              		tmp = (-60.0 * x) / t;
              	end
              	tmp_2 = tmp;
              end
              
              code[x_, y_, z_, t_, a_] := If[LessEqual[x, -6.8e+118], N[(x * N[(-60.0 / t), $MachinePrecision]), $MachinePrecision], If[LessEqual[x, 9.8e+154], N[(120.0 * a), $MachinePrecision], N[(N[(-60.0 * x), $MachinePrecision] / t), $MachinePrecision]]]
              
              \begin{array}{l}
              
              \\
              \begin{array}{l}
              \mathbf{if}\;x \leq -6.8 \cdot 10^{+118}:\\
              \;\;\;\;x \cdot \frac{-60}{t}\\
              
              \mathbf{elif}\;x \leq 9.8 \cdot 10^{+154}:\\
              \;\;\;\;120 \cdot a\\
              
              \mathbf{else}:\\
              \;\;\;\;\frac{-60 \cdot x}{t}\\
              
              
              \end{array}
              \end{array}
              
              Derivation
              1. Split input into 3 regimes
              2. if x < -6.79999999999999973e118

                1. Initial program 99.8%

                  \[\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \]
                2. Add Preprocessing
                3. Taylor expanded in x around inf

                  \[\leadsto \color{blue}{60 \cdot \frac{x}{z - t}} \]
                4. Step-by-step derivation
                  1. *-commutativeN/A

                    \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} \]
                  2. lower-*.f64N/A

                    \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} \]
                  3. lower-/.f64N/A

                    \[\leadsto \color{blue}{\frac{x}{z - t}} \cdot 60 \]
                  4. lower--.f6472.4

                    \[\leadsto \frac{x}{\color{blue}{z - t}} \cdot 60 \]
                5. Applied rewrites72.4%

                  \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} \]
                6. Taylor expanded in z around 0

                  \[\leadsto -60 \cdot \color{blue}{\frac{x}{t}} \]
                7. Step-by-step derivation
                  1. Applied rewrites50.3%

                    \[\leadsto \frac{x}{t} \cdot \color{blue}{-60} \]
                  2. Step-by-step derivation
                    1. Applied rewrites50.5%

                      \[\leadsto x \cdot \frac{-60}{\color{blue}{t}} \]

                    if -6.79999999999999973e118 < x < 9.8000000000000003e154

                    1. Initial program 99.3%

                      \[\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \]
                    2. Add Preprocessing
                    3. Taylor expanded in z around inf

                      \[\leadsto \color{blue}{120 \cdot a} \]
                    4. Step-by-step derivation
                      1. lower-*.f6461.8

                        \[\leadsto \color{blue}{120 \cdot a} \]
                    5. Applied rewrites61.8%

                      \[\leadsto \color{blue}{120 \cdot a} \]

                    if 9.8000000000000003e154 < x

                    1. Initial program 99.7%

                      \[\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \]
                    2. Add Preprocessing
                    3. Taylor expanded in x around inf

                      \[\leadsto \color{blue}{60 \cdot \frac{x}{z - t}} \]
                    4. Step-by-step derivation
                      1. *-commutativeN/A

                        \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} \]
                      2. lower-*.f64N/A

                        \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} \]
                      3. lower-/.f64N/A

                        \[\leadsto \color{blue}{\frac{x}{z - t}} \cdot 60 \]
                      4. lower--.f6481.3

                        \[\leadsto \frac{x}{\color{blue}{z - t}} \cdot 60 \]
                    5. Applied rewrites81.3%

                      \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} \]
                    6. Taylor expanded in z around 0

                      \[\leadsto -60 \cdot \color{blue}{\frac{x}{t}} \]
                    7. Step-by-step derivation
                      1. Applied rewrites51.8%

                        \[\leadsto \frac{x}{t} \cdot \color{blue}{-60} \]
                      2. Step-by-step derivation
                        1. Applied rewrites51.8%

                          \[\leadsto \frac{-60 \cdot x}{t} \]
                      3. Recombined 3 regimes into one program.
                      4. Add Preprocessing

                      Alternative 12: 51.6% accurate, 1.1× speedup?

                      \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x \leq -6.8 \cdot 10^{+118}:\\ \;\;\;\;x \cdot \frac{-60}{t}\\ \mathbf{elif}\;x \leq 9.8 \cdot 10^{+154}:\\ \;\;\;\;120 \cdot a\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{t} \cdot -60\\ \end{array} \end{array} \]
                      (FPCore (x y z t a)
                       :precision binary64
                       (if (<= x -6.8e+118)
                         (* x (/ -60.0 t))
                         (if (<= x 9.8e+154) (* 120.0 a) (* (/ x t) -60.0))))
                      double code(double x, double y, double z, double t, double a) {
                      	double tmp;
                      	if (x <= -6.8e+118) {
                      		tmp = x * (-60.0 / t);
                      	} else if (x <= 9.8e+154) {
                      		tmp = 120.0 * a;
                      	} else {
                      		tmp = (x / t) * -60.0;
                      	}
                      	return tmp;
                      }
                      
                      real(8) function code(x, y, z, t, a)
                          real(8), intent (in) :: x
                          real(8), intent (in) :: y
                          real(8), intent (in) :: z
                          real(8), intent (in) :: t
                          real(8), intent (in) :: a
                          real(8) :: tmp
                          if (x <= (-6.8d+118)) then
                              tmp = x * ((-60.0d0) / t)
                          else if (x <= 9.8d+154) then
                              tmp = 120.0d0 * a
                          else
                              tmp = (x / t) * (-60.0d0)
                          end if
                          code = tmp
                      end function
                      
                      public static double code(double x, double y, double z, double t, double a) {
                      	double tmp;
                      	if (x <= -6.8e+118) {
                      		tmp = x * (-60.0 / t);
                      	} else if (x <= 9.8e+154) {
                      		tmp = 120.0 * a;
                      	} else {
                      		tmp = (x / t) * -60.0;
                      	}
                      	return tmp;
                      }
                      
                      def code(x, y, z, t, a):
                      	tmp = 0
                      	if x <= -6.8e+118:
                      		tmp = x * (-60.0 / t)
                      	elif x <= 9.8e+154:
                      		tmp = 120.0 * a
                      	else:
                      		tmp = (x / t) * -60.0
                      	return tmp
                      
                      function code(x, y, z, t, a)
                      	tmp = 0.0
                      	if (x <= -6.8e+118)
                      		tmp = Float64(x * Float64(-60.0 / t));
                      	elseif (x <= 9.8e+154)
                      		tmp = Float64(120.0 * a);
                      	else
                      		tmp = Float64(Float64(x / t) * -60.0);
                      	end
                      	return tmp
                      end
                      
                      function tmp_2 = code(x, y, z, t, a)
                      	tmp = 0.0;
                      	if (x <= -6.8e+118)
                      		tmp = x * (-60.0 / t);
                      	elseif (x <= 9.8e+154)
                      		tmp = 120.0 * a;
                      	else
                      		tmp = (x / t) * -60.0;
                      	end
                      	tmp_2 = tmp;
                      end
                      
                      code[x_, y_, z_, t_, a_] := If[LessEqual[x, -6.8e+118], N[(x * N[(-60.0 / t), $MachinePrecision]), $MachinePrecision], If[LessEqual[x, 9.8e+154], N[(120.0 * a), $MachinePrecision], N[(N[(x / t), $MachinePrecision] * -60.0), $MachinePrecision]]]
                      
                      \begin{array}{l}
                      
                      \\
                      \begin{array}{l}
                      \mathbf{if}\;x \leq -6.8 \cdot 10^{+118}:\\
                      \;\;\;\;x \cdot \frac{-60}{t}\\
                      
                      \mathbf{elif}\;x \leq 9.8 \cdot 10^{+154}:\\
                      \;\;\;\;120 \cdot a\\
                      
                      \mathbf{else}:\\
                      \;\;\;\;\frac{x}{t} \cdot -60\\
                      
                      
                      \end{array}
                      \end{array}
                      
                      Derivation
                      1. Split input into 3 regimes
                      2. if x < -6.79999999999999973e118

                        1. Initial program 99.8%

                          \[\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \]
                        2. Add Preprocessing
                        3. Taylor expanded in x around inf

                          \[\leadsto \color{blue}{60 \cdot \frac{x}{z - t}} \]
                        4. Step-by-step derivation
                          1. *-commutativeN/A

                            \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} \]
                          2. lower-*.f64N/A

                            \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} \]
                          3. lower-/.f64N/A

                            \[\leadsto \color{blue}{\frac{x}{z - t}} \cdot 60 \]
                          4. lower--.f6472.4

                            \[\leadsto \frac{x}{\color{blue}{z - t}} \cdot 60 \]
                        5. Applied rewrites72.4%

                          \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} \]
                        6. Taylor expanded in z around 0

                          \[\leadsto -60 \cdot \color{blue}{\frac{x}{t}} \]
                        7. Step-by-step derivation
                          1. Applied rewrites50.3%

                            \[\leadsto \frac{x}{t} \cdot \color{blue}{-60} \]
                          2. Step-by-step derivation
                            1. Applied rewrites50.5%

                              \[\leadsto x \cdot \frac{-60}{\color{blue}{t}} \]

                            if -6.79999999999999973e118 < x < 9.8000000000000003e154

                            1. Initial program 99.3%

                              \[\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \]
                            2. Add Preprocessing
                            3. Taylor expanded in z around inf

                              \[\leadsto \color{blue}{120 \cdot a} \]
                            4. Step-by-step derivation
                              1. lower-*.f6461.8

                                \[\leadsto \color{blue}{120 \cdot a} \]
                            5. Applied rewrites61.8%

                              \[\leadsto \color{blue}{120 \cdot a} \]

                            if 9.8000000000000003e154 < x

                            1. Initial program 99.7%

                              \[\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \]
                            2. Add Preprocessing
                            3. Taylor expanded in x around inf

                              \[\leadsto \color{blue}{60 \cdot \frac{x}{z - t}} \]
                            4. Step-by-step derivation
                              1. *-commutativeN/A

                                \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} \]
                              2. lower-*.f64N/A

                                \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} \]
                              3. lower-/.f64N/A

                                \[\leadsto \color{blue}{\frac{x}{z - t}} \cdot 60 \]
                              4. lower--.f6481.3

                                \[\leadsto \frac{x}{\color{blue}{z - t}} \cdot 60 \]
                            5. Applied rewrites81.3%

                              \[\leadsto \color{blue}{\frac{x}{z - t} \cdot 60} \]
                            6. Taylor expanded in z around 0

                              \[\leadsto -60 \cdot \color{blue}{\frac{x}{t}} \]
                            7. Step-by-step derivation
                              1. Applied rewrites51.8%

                                \[\leadsto \frac{x}{t} \cdot \color{blue}{-60} \]
                            8. Recombined 3 regimes into one program.
                            9. Add Preprocessing

                            Alternative 13: 51.5% accurate, 5.2× speedup?

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

                              \[\frac{60 \cdot \left(x - y\right)}{z - t} + a \cdot 120 \]
                            2. Add Preprocessing
                            3. Taylor expanded in z around inf

                              \[\leadsto \color{blue}{120 \cdot a} \]
                            4. Step-by-step derivation
                              1. lower-*.f6451.4

                                \[\leadsto \color{blue}{120 \cdot a} \]
                            5. Applied rewrites51.4%

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

                            Developer Target 1: 99.8% accurate, 0.8× speedup?

                            \[\begin{array}{l} \\ \frac{60}{\frac{z - t}{x - y}} + a \cdot 120 \end{array} \]
                            (FPCore (x y z t a)
                             :precision binary64
                             (+ (/ 60.0 (/ (- z t) (- x y))) (* a 120.0)))
                            double code(double x, double y, double z, double t, double a) {
                            	return (60.0 / ((z - t) / (x - y))) + (a * 120.0);
                            }
                            
                            real(8) function code(x, y, z, t, a)
                                real(8), intent (in) :: x
                                real(8), intent (in) :: y
                                real(8), intent (in) :: z
                                real(8), intent (in) :: t
                                real(8), intent (in) :: a
                                code = (60.0d0 / ((z - t) / (x - y))) + (a * 120.0d0)
                            end function
                            
                            public static double code(double x, double y, double z, double t, double a) {
                            	return (60.0 / ((z - t) / (x - y))) + (a * 120.0);
                            }
                            
                            def code(x, y, z, t, a):
                            	return (60.0 / ((z - t) / (x - y))) + (a * 120.0)
                            
                            function code(x, y, z, t, a)
                            	return Float64(Float64(60.0 / Float64(Float64(z - t) / Float64(x - y))) + Float64(a * 120.0))
                            end
                            
                            function tmp = code(x, y, z, t, a)
                            	tmp = (60.0 / ((z - t) / (x - y))) + (a * 120.0);
                            end
                            
                            code[x_, y_, z_, t_, a_] := N[(N[(60.0 / N[(N[(z - t), $MachinePrecision] / N[(x - y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(a * 120.0), $MachinePrecision]), $MachinePrecision]
                            
                            \begin{array}{l}
                            
                            \\
                            \frac{60}{\frac{z - t}{x - y}} + a \cdot 120
                            \end{array}
                            

                            Reproduce

                            ?
                            herbie shell --seed 2024326 
                            (FPCore (x y z t a)
                              :name "Data.Colour.RGB:hslsv from colour-2.3.3, B"
                              :precision binary64
                            
                              :alt
                              (! :herbie-platform default (+ (/ 60 (/ (- z t) (- x y))) (* a 120)))
                            
                              (+ (/ (* 60.0 (- x y)) (- z t)) (* a 120.0)))