Files
Claunia.ReedSolomon/ReedSolomonBenchmark/Program.cs

14 lines
306 B
C#

/**
* Benchmark of Reed-Solomon encoding.
*
* Copyright 2015, Backblaze, Inc. All rights reserved.
* Copyright © 2019 Natalia Portillo
*/
namespace ReedSolomonBenchmark
{
internal class Program
{
public static void Main(string[] args) => new ReedSolomonBenchmark().Run();
}
}