]> AND Private Git Repository - Cipher_code.git/blob - IDA_new/jerasure/Examples/test_galois.c
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
new
[Cipher_code.git] / IDA_new / jerasure / Examples / test_galois.c
1 #include <assert.h>
2 #include "galois.h"
3
4 int main(int argc, char **argv)
5 {
6   assert(galois_init_default_field(4) == 0);
7   assert(galois_uninit_field(4) == 0);
8   assert(galois_init_default_field(4) == 0);
9   assert(galois_uninit_field(4) == 0);
10
11   assert(galois_init_default_field(8) == 0);
12   assert(galois_uninit_field(8) == 0);
13   assert(galois_init_default_field(8) == 0);
14   assert(galois_uninit_field(8) == 0);
15
16   return 0;
17 }
18 /*
19  * Local Variables:
20  * compile-command: "make test_galois && 
21  *    libtool --mode=execute valgrind --tool=memcheck --leak-check=full ./test_galois"
22  * End:
23  */