pub fn average_delay(
    delta: f64,
    number_of_jobs: N64,
    mean_job_duration: N64
) -> N64
Expand description

Average delay of a job processed on a server handling a total of $number_of_jobs$ jobs with average duration $mean_job_duration$ using the model of a M/GI/1 Processor Sharing Queue. $\delta$ is the duration of a time slot. Referred to as $d$ in the paper.