Esempio n. 1
0
        /// <summary>
        /// A hash of the distribution parameter values
        /// </summary>
        /// <returns></returns>
        /// <exclude/>
        public override int GetHashCode()
        {
            int hash = Gaussian.GetHashCode();

            hash = Hash.Combine(hash, LowerBound);
            hash = Hash.Combine(hash, UpperBound);
            return(hash);
        }
Esempio n. 2
0
 /// <summary>
 /// A hash of the distribution parameter values
 /// </summary>
 /// <returns></returns>
 public override int GetHashCode()
 {
     return(Hash.Combine(Gaussian.GetHashCode(), Period.GetHashCode()));
 }