-
Notifications
You must be signed in to change notification settings - Fork 0
/
miller_rabin.h
33 lines (26 loc) · 1.02 KB
/
miller_rabin.h
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
/* miller_rabin.h -- GMP implementation of the Miller-Rabin test
*
* Copyright 2014 by Colin Benner <[email protected]>
*
* This file is part of frobenius-test.
*
* frobenius-test is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* frobenius-test is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with frobenius-test. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef MILLER_RABIN_H
#define MILLER_RABIN_H
#include <gmp.h>
#include "common.h"
Primality miller_rabin_base(const mpz_t n, const mpz_t a);
Primality miller_rabin(const mpz_t n, const unsigned k);
#endif