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