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