-
Notifications
You must be signed in to change notification settings - Fork 31
/
schifra_reed_solomon_speed_evaluation.cpp
31 lines (27 loc) · 1.53 KB
/
schifra_reed_solomon_speed_evaluation.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
(**************************************************************************)
(* *)
(* Schifra *)
(* Reed-Solomon Error Correcting Code Library *)
(* *)
(* Release Version 0.0.1 *)
(* http://www.schifra.com *)
(* Copyright (c) 2000-2020 Arash Partow, All Rights Reserved. *)
(* *)
(* The Schifra Reed-Solomon error correcting code library and all its *)
(* components are supplied under the terms of the General Schifra License *)
(* agreement. The contents of the Schifra Reed-Solomon error correcting *)
(* code library and all its components may not be copied or disclosed *)
(* except in accordance with the terms of that agreement. *)
(* *)
(* URL: http://www.schifra.com/license.html *)
(* *)
(**************************************************************************)
*/
#include "schifra_reed_solomon_speed_evaluator.hpp"
int main()
{
schifra::reed_solomon::speed_test_00();
schifra::reed_solomon::speed_test_01();
return 0;
}