1 #ifndef PQCLEAN_MCELIECE348864_AVX_BM_H
2 #define PQCLEAN_MCELIECE348864_AVX_BM_H
3 /*
4   This file is for the inversion-free Berlekamp-Massey algorithm
5   see https://ieeexplore.ieee.org/document/87857
6 */
7 
8 
9 #include "vec128.h"
10 
11 void PQCLEAN_MCELIECE348864_AVX_bm(uint64_t * /*out*/, vec128 * /*in*/);
12 
13 #endif
14 
15