Index: Ringtoets/Common/src/Ringtoets.Common.Data/Probabilistics/IVariationCoefficientDistribution.cs
===================================================================
diff -u -r332fd224ce5cd9c737e72f945271c52ae6d64c0d -rab330857f161d3f884db508d80a2dd0ade36434f
--- Ringtoets/Common/src/Ringtoets.Common.Data/Probabilistics/IVariationCoefficientDistribution.cs (.../IVariationCoefficientDistribution.cs) (revision 332fd224ce5cd9c737e72f945271c52ae6d64c0d)
+++ Ringtoets/Common/src/Ringtoets.Common.Data/Probabilistics/IVariationCoefficientDistribution.cs (.../IVariationCoefficientDistribution.cs) (revision ab330857f161d3f884db508d80a2dd0ade36434f)
@@ -28,21 +28,21 @@
/// This object represents a probabilistic distribution.
///
///
- public interface IVariationCoefficientDistribution : ICloneable
+ public interface IVariationCoefficientDistribution : IDistributionBase
{
///
/// Gets or sets the mean (expected value, E(X)) of the distribution.
///
/// As cannot be negative, the absolute
/// value of the mean is used when the standard deviation needs to be calculated.
- RoundedDouble Mean { get; set; }
+ new RoundedDouble Mean { get; set; }
///
/// Gets or sets the coefficient of variation (CV, also known as relative standard
/// deviation (SRD). Defined as standard deviation / |E(X)|) of the distribution.
///
/// Thrown when coefficient of variation
/// is less than 0.
- RoundedDouble CoefficientOfVariation { get; set; }
+ new RoundedDouble CoefficientOfVariation { get; set; }
}
}
\ No newline at end of file