5 lines
113 B
C
5 lines
113 B
C
#ifndef _MILLER_RABIN_H_
|
|
#define _MILLER_RABIN_H
|
|
#include <gmp.h>
|
|
bool miller_rabin_test(mpz_t n, int j);
|
|
#endif
|