Table of Contents

Method Decorrelate

Namespace
Eon
Assembly
Eon.dll

Decorrelate(double, int?)

Transforms the Schedule by de-correlating each of the Duration both up and down in a jittered way

[Pure]
public static ScheduleTransformer Decorrelate(double factor = 0.1, int? seed = null)

Parameters

factor double

jitter factor based on the returned delay

seed int?

optional seed

Returns

ScheduleTransformer

Remarks

Given a Linear(Duration, double) starting at 100. (100, 200, 300...) Adding de-correlation to it might produce a result like this, (103.2342, 97.123, 202.3213, 197.321...) The overall Schedule runs twice as long but should be less correlated when used in parallel.