SCIPcalcCumulativeDistribution

Function SCIPcalcCumulativeDistribution 

Source
pub unsafe extern "C" fn SCIPcalcCumulativeDistribution(
    scip: *mut SCIP,
    mean: f64,
    variance: f64,
    value: f64,
) -> f64
Expand description

calculates the cumulative distribution P(-infinity <= x <= value) that a normally distributed random variable x takes a value between -infinity and parameter \p value.

The distribution is given by the respective mean and deviation. This implementation uses the error function erf().