Beispiel #1
0
 public Cluster(IEnumerable <SmartCoin> coins)
 {
     Lock     = new object();
     Coins    = coins.ToList();
     CoinsSet = Coins.ToHashSet();
     _labels  = SmartLabel.Merge(Coins.Select(x => x.Label));
 }