
(FPCore (x) :precision binary64 (- 1.0 (* x (+ 0.253 (* x 0.12)))))
double code(double x) {
return 1.0 - (x * (0.253 + (x * 0.12)));
}
real(8) function code(x)
real(8), intent (in) :: x
code = 1.0d0 - (x * (0.253d0 + (x * 0.12d0)))
end function
public static double code(double x) {
return 1.0 - (x * (0.253 + (x * 0.12)));
}
def code(x): return 1.0 - (x * (0.253 + (x * 0.12)))
function code(x) return Float64(1.0 - Float64(x * Float64(0.253 + Float64(x * 0.12)))) end
function tmp = code(x) tmp = 1.0 - (x * (0.253 + (x * 0.12))); end
code[x_] := N[(1.0 - N[(x * N[(0.253 + N[(x * 0.12), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
1 - x \cdot \left(0.253 + x \cdot 0.12\right)
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 6 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (x) :precision binary64 (- 1.0 (* x (+ 0.253 (* x 0.12)))))
double code(double x) {
return 1.0 - (x * (0.253 + (x * 0.12)));
}
real(8) function code(x)
real(8), intent (in) :: x
code = 1.0d0 - (x * (0.253d0 + (x * 0.12d0)))
end function
public static double code(double x) {
return 1.0 - (x * (0.253 + (x * 0.12)));
}
def code(x): return 1.0 - (x * (0.253 + (x * 0.12)))
function code(x) return Float64(1.0 - Float64(x * Float64(0.253 + Float64(x * 0.12)))) end
function tmp = code(x) tmp = 1.0 - (x * (0.253 + (x * 0.12))); end
code[x_] := N[(1.0 - N[(x * N[(0.253 + N[(x * 0.12), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
1 - x \cdot \left(0.253 + x \cdot 0.12\right)
\end{array}
(FPCore (x) :precision binary64 (fma x (- (* x -0.12) 0.253) 1.0))
double code(double x) {
return fma(x, ((x * -0.12) - 0.253), 1.0);
}
function code(x) return fma(x, Float64(Float64(x * -0.12) - 0.253), 1.0) end
code[x_] := N[(x * N[(N[(x * -0.12), $MachinePrecision] - 0.253), $MachinePrecision] + 1.0), $MachinePrecision]
\begin{array}{l}
\\
\mathsf{fma}\left(x, x \cdot -0.12 - 0.253, 1\right)
\end{array}
Initial program 99.9%
sub-neg99.9%
+-commutative99.9%
distribute-rgt-neg-in99.9%
fma-def99.9%
+-commutative99.9%
distribute-neg-in99.9%
distribute-rgt-neg-in99.9%
metadata-eval99.9%
metadata-eval99.9%
fma-def99.9%
metadata-eval99.9%
metadata-eval99.9%
Simplified99.9%
Taylor expanded in x around 0 99.9%
Final simplification99.9%
(FPCore (x) :precision binary64 (if (or (<= x -4.2) (not (<= x 2.0))) (* -0.12 (* x x)) 1.0))
double code(double x) {
double tmp;
if ((x <= -4.2) || !(x <= 2.0)) {
tmp = -0.12 * (x * x);
} else {
tmp = 1.0;
}
return tmp;
}
real(8) function code(x)
real(8), intent (in) :: x
real(8) :: tmp
if ((x <= (-4.2d0)) .or. (.not. (x <= 2.0d0))) then
tmp = (-0.12d0) * (x * x)
else
tmp = 1.0d0
end if
code = tmp
end function
public static double code(double x) {
double tmp;
if ((x <= -4.2) || !(x <= 2.0)) {
tmp = -0.12 * (x * x);
} else {
tmp = 1.0;
}
return tmp;
}
def code(x): tmp = 0 if (x <= -4.2) or not (x <= 2.0): tmp = -0.12 * (x * x) else: tmp = 1.0 return tmp
function code(x) tmp = 0.0 if ((x <= -4.2) || !(x <= 2.0)) tmp = Float64(-0.12 * Float64(x * x)); else tmp = 1.0; end return tmp end
function tmp_2 = code(x) tmp = 0.0; if ((x <= -4.2) || ~((x <= 2.0))) tmp = -0.12 * (x * x); else tmp = 1.0; end tmp_2 = tmp; end
code[x_] := If[Or[LessEqual[x, -4.2], N[Not[LessEqual[x, 2.0]], $MachinePrecision]], N[(-0.12 * N[(x * x), $MachinePrecision]), $MachinePrecision], 1.0]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq -4.2 \lor \neg \left(x \leq 2\right):\\
\;\;\;\;-0.12 \cdot \left(x \cdot x\right)\\
\mathbf{else}:\\
\;\;\;\;1\\
\end{array}
\end{array}
if x < -4.20000000000000018 or 2 < x Initial program 99.8%
Taylor expanded in x around inf 99.7%
unpow299.7%
Simplified99.7%
if -4.20000000000000018 < x < 2Initial program 100.0%
Taylor expanded in x around 0 97.3%
Final simplification98.5%
(FPCore (x) :precision binary64 (if (<= x -4.2) (* x (* x -0.12)) (if (<= x 2.0) 1.0 (* -0.12 (* x x)))))
double code(double x) {
double tmp;
if (x <= -4.2) {
tmp = x * (x * -0.12);
} else if (x <= 2.0) {
tmp = 1.0;
} else {
tmp = -0.12 * (x * x);
}
return tmp;
}
real(8) function code(x)
real(8), intent (in) :: x
real(8) :: tmp
if (x <= (-4.2d0)) then
tmp = x * (x * (-0.12d0))
else if (x <= 2.0d0) then
tmp = 1.0d0
else
tmp = (-0.12d0) * (x * x)
end if
code = tmp
end function
public static double code(double x) {
double tmp;
if (x <= -4.2) {
tmp = x * (x * -0.12);
} else if (x <= 2.0) {
tmp = 1.0;
} else {
tmp = -0.12 * (x * x);
}
return tmp;
}
def code(x): tmp = 0 if x <= -4.2: tmp = x * (x * -0.12) elif x <= 2.0: tmp = 1.0 else: tmp = -0.12 * (x * x) return tmp
function code(x) tmp = 0.0 if (x <= -4.2) tmp = Float64(x * Float64(x * -0.12)); elseif (x <= 2.0) tmp = 1.0; else tmp = Float64(-0.12 * Float64(x * x)); end return tmp end
function tmp_2 = code(x) tmp = 0.0; if (x <= -4.2) tmp = x * (x * -0.12); elseif (x <= 2.0) tmp = 1.0; else tmp = -0.12 * (x * x); end tmp_2 = tmp; end
code[x_] := If[LessEqual[x, -4.2], N[(x * N[(x * -0.12), $MachinePrecision]), $MachinePrecision], If[LessEqual[x, 2.0], 1.0, N[(-0.12 * N[(x * x), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq -4.2:\\
\;\;\;\;x \cdot \left(x \cdot -0.12\right)\\
\mathbf{elif}\;x \leq 2:\\
\;\;\;\;1\\
\mathbf{else}:\\
\;\;\;\;-0.12 \cdot \left(x \cdot x\right)\\
\end{array}
\end{array}
if x < -4.20000000000000018Initial program 99.8%
Taylor expanded in x around inf 99.7%
unpow299.7%
*-commutative99.7%
associate-*l*99.8%
Simplified99.8%
if -4.20000000000000018 < x < 2Initial program 100.0%
Taylor expanded in x around 0 97.3%
if 2 < x Initial program 99.7%
Taylor expanded in x around inf 99.8%
unpow299.8%
Simplified99.8%
Final simplification98.5%
(FPCore (x) :precision binary64 (if (<= x -4.2) (* x (* x -0.12)) (if (<= x 2.0) (- 1.0 (* x 0.253)) (* -0.12 (* x x)))))
double code(double x) {
double tmp;
if (x <= -4.2) {
tmp = x * (x * -0.12);
} else if (x <= 2.0) {
tmp = 1.0 - (x * 0.253);
} else {
tmp = -0.12 * (x * x);
}
return tmp;
}
real(8) function code(x)
real(8), intent (in) :: x
real(8) :: tmp
if (x <= (-4.2d0)) then
tmp = x * (x * (-0.12d0))
else if (x <= 2.0d0) then
tmp = 1.0d0 - (x * 0.253d0)
else
tmp = (-0.12d0) * (x * x)
end if
code = tmp
end function
public static double code(double x) {
double tmp;
if (x <= -4.2) {
tmp = x * (x * -0.12);
} else if (x <= 2.0) {
tmp = 1.0 - (x * 0.253);
} else {
tmp = -0.12 * (x * x);
}
return tmp;
}
def code(x): tmp = 0 if x <= -4.2: tmp = x * (x * -0.12) elif x <= 2.0: tmp = 1.0 - (x * 0.253) else: tmp = -0.12 * (x * x) return tmp
function code(x) tmp = 0.0 if (x <= -4.2) tmp = Float64(x * Float64(x * -0.12)); elseif (x <= 2.0) tmp = Float64(1.0 - Float64(x * 0.253)); else tmp = Float64(-0.12 * Float64(x * x)); end return tmp end
function tmp_2 = code(x) tmp = 0.0; if (x <= -4.2) tmp = x * (x * -0.12); elseif (x <= 2.0) tmp = 1.0 - (x * 0.253); else tmp = -0.12 * (x * x); end tmp_2 = tmp; end
code[x_] := If[LessEqual[x, -4.2], N[(x * N[(x * -0.12), $MachinePrecision]), $MachinePrecision], If[LessEqual[x, 2.0], N[(1.0 - N[(x * 0.253), $MachinePrecision]), $MachinePrecision], N[(-0.12 * N[(x * x), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq -4.2:\\
\;\;\;\;x \cdot \left(x \cdot -0.12\right)\\
\mathbf{elif}\;x \leq 2:\\
\;\;\;\;1 - x \cdot 0.253\\
\mathbf{else}:\\
\;\;\;\;-0.12 \cdot \left(x \cdot x\right)\\
\end{array}
\end{array}
if x < -4.20000000000000018Initial program 99.8%
Taylor expanded in x around inf 99.7%
unpow299.7%
*-commutative99.7%
associate-*l*99.8%
Simplified99.8%
if -4.20000000000000018 < x < 2Initial program 100.0%
Taylor expanded in x around 0 98.8%
*-commutative98.8%
Simplified98.8%
if 2 < x Initial program 99.7%
Taylor expanded in x around inf 99.8%
unpow299.8%
Simplified99.8%
Final simplification99.2%
(FPCore (x) :precision binary64 (- 1.0 (* x (+ 0.253 (* x 0.12)))))
double code(double x) {
return 1.0 - (x * (0.253 + (x * 0.12)));
}
real(8) function code(x)
real(8), intent (in) :: x
code = 1.0d0 - (x * (0.253d0 + (x * 0.12d0)))
end function
public static double code(double x) {
return 1.0 - (x * (0.253 + (x * 0.12)));
}
def code(x): return 1.0 - (x * (0.253 + (x * 0.12)))
function code(x) return Float64(1.0 - Float64(x * Float64(0.253 + Float64(x * 0.12)))) end
function tmp = code(x) tmp = 1.0 - (x * (0.253 + (x * 0.12))); end
code[x_] := N[(1.0 - N[(x * N[(0.253 + N[(x * 0.12), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
1 - x \cdot \left(0.253 + x \cdot 0.12\right)
\end{array}
Initial program 99.9%
Final simplification99.9%
(FPCore (x) :precision binary64 1.0)
double code(double x) {
return 1.0;
}
real(8) function code(x)
real(8), intent (in) :: x
code = 1.0d0
end function
public static double code(double x) {
return 1.0;
}
def code(x): return 1.0
function code(x) return 1.0 end
function tmp = code(x) tmp = 1.0; end
code[x_] := 1.0
\begin{array}{l}
\\
1
\end{array}
Initial program 99.9%
Taylor expanded in x around 0 49.8%
Final simplification49.8%
herbie shell --seed 2023279
(FPCore (x)
:name "Numeric.SpecFunctions:invIncompleteGamma from math-functions-0.1.5.2, A"
:precision binary64
(- 1.0 (* x (+ 0.253 (* x 0.12)))))