You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when compressing a large list (500.000 items) of only negative numbers, the compression algorithm crashes with an out of bounds exception. Simple sample program:
static void Main(string[] args)
{
var intCompressor = new IntCompressor();
var list = new List<int>();
for(int i = 0; i < 500000; i++)
{
list.Add(-i);
}
var z = intCompressor.compress(list.ToArray());
}
The text was updated successfully, but these errors were encountered:
Dear,
when compressing a large list (500.000 items) of only negative numbers, the compression algorithm crashes with an out of bounds exception. Simple sample program:
The text was updated successfully, but these errors were encountered: