sequence_exists
replacesstrictly_increasing_sequence_exists
/strictly_decreasing_sequence_exists
.- When resampling using sequential constraints, the quantiles used to truncate distributions now have to be given
to the constructors of the sequential constraints, i.e.
resample(x, StrictlyIncreasing(lq = 0.1, uq = 0.9)
instead ofresample(x, StrictlyIncreasing(), 0.1, 0.9)
.
- Fixed bug that could occasionally occur for certain types of data when performing resampling with the
StrictlyIncreasing
/StrictlyDecreasing
sequential constraints.
- Fixed bug where indices were sampled instead of values for the method
resample(x::UncertainIndexValueDataset, constraint::SamplingConstraint, sequential_constraint::Union{StrictlyDecreasing, StrictlyDecreasing}
.