Пример #1
0
 public BlobKeeperInvalidReplaceAssignment(string tag, int historyCount, double penalty) : base(tag, historyCount)
 {
     matrix = new SquareMatrix(penalty);
 }
Пример #2
0
 public BlobKeeperRevalidatingAssignment(int revalidateThreshold, string tag, int historyCount, double penalty) : base(tag, historyCount)
 {
     matrix    = new SquareMatrix(penalty);
     threshold = revalidateThreshold;
 }
Пример #3
0
 public BlobKeeperInvalidReplaceAssignment(IEnumerable <Blob> items, string tag, int historyCount, double penalty) : base(items, tag, historyCount)
 {
     matrix = new SquareMatrix(penalty);
 }