inverse-Qp

Specification

?
\[e^{-BrA \cdot v} \]
(FPCore (BrA v)
  :precision binary64
  :pre TRUE
  (exp (- (* BrA v))))
double code(double BrA, double v) {
	return exp(-(BrA * v));
}
real(8) function code(bra, v)
use fmin_fmax_functions
    real(8), intent (in) :: bra
    real(8), intent (in) :: v
    code = exp(-(bra * v))
end function
public static double code(double BrA, double v) {
	return Math.exp(-(BrA * v));
}
def code(BrA, v):
	return math.exp(-(BrA * v))
function code(BrA, v)
	return exp(Float64(-Float64(BrA * v)))
end
function tmp = code(BrA, v)
	tmp = exp(-(BrA * v));
end
code[BrA_, v_] := N[Exp[(-N[(BrA * v), $MachinePrecision])], $MachinePrecision]
f(BrA, v):
	BrA in [-inf, +inf],
	v in [-inf, +inf]
code: THEORY
BEGIN
f(BrA, v: real): real =
	exp((- (BrA * v)))
END code
e^{-BrA \cdot v}

Timeout after 2.5min

Use the --timeout flag to change the timeout.