private
DecaySchedule
— type
DecaySchedule <: AbstractSchedule
An abstract type for all decay schedules.
Such schedules conform to a formula:
s(t) = λ * g(t)
where s(t)
is the schedule output, λ
is the base value, and g(t)
is the decay function.
Concrete subtypes must implment basevalue
and decay
.