mirror of
https://github.com/claunia/Claunia.ReedSolomon.git
synced 2025-12-16 19:24:45 +00:00
14 lines
306 B
C#
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();
|
|
}
|
|
} |