Python-ELMO is a Python library which offers an encapsulation of the binary tool ELMO, in order to manipulate it easily in Python and SageMath script.
Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- #ifndef NTT_H
- #define NTT_H
-
- #include <stdint.h>
-
- extern int16_t zetas[128];
-
- void ntt(int16_t *poly);
-
- #endif
|