Exemplo n.º 1
0
 /// <summary>Deep copy constructor.</summary>
 private Bucket(Bucket bucket)
 {
     LowerBound = bucket.LowerBound;
     UpperBound = bucket.UpperBound;
     Depth      = bucket.Depth;
 }
Exemplo n.º 2
0
 /// <summary>Adds a <c>Bucket</c> to the <c>Histogram</c>.</summary>
 public void Add(Bucket bucket)
 {
     _buckets.Add(bucket);
     _areBucketsSorted = false;
 }