diff options
author | Niels Möller <nisse@lysator.liu.se> | 2010-03-10 16:47:01 +0100 |
---|---|---|
committer | Niels Möller <nisse@lysator.liu.se> | 2010-03-10 16:47:01 +0100 |
commit | bc9c2bf58d79b955734d24dac6b79e733d3ff0e1 (patch) | |
tree | 364c7e4f4ec0ffd695217429852a640ba8a639a9 /tune/jacbase4.c | |
parent | 7b3f3d06b58d0fead49adb6f68a6ba176023e62f (diff) | |
download | gmp-bc9c2bf58d79b955734d24dac6b79e733d3ff0e1.tar.gz |
New variant for mpn_jacobi_base.
Diffstat (limited to 'tune/jacbase4.c')
-rw-r--r-- | tune/jacbase4.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tune/jacbase4.c b/tune/jacbase4.c new file mode 100644 index 000000000..19fe25114 --- /dev/null +++ b/tune/jacbase4.c @@ -0,0 +1,27 @@ +/* mpn/generic/jacbase.c method 4. + +Copyright 2002, 2010 Free Software Foundation, Inc. + +This file is part of the GNU MP Library. + +The GNU MP Library is free software; you can redistribute it and/or modify +it under the terms of the GNU Lesser General Public License as published by +the Free Software Foundation; either version 3 of the License, or (at your +option) any later version. + +The GNU MP Library 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 Lesser General Public +License for more details. + +You should have received a copy of the GNU Lesser General Public License +along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. */ + +#include "gmp.h" +#include "gmp-impl.h" + +#undef JACOBI_BASE_METHOD +#define JACOBI_BASE_METHOD 4 +#define __gmpn_jacobi_base mpn_jacobi_base_4 + +#include "mpn/generic/jacbase.c" |