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