summaryrefslogtreecommitdiff
path: root/tune/hgcd_lehmer.c
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2010-02-20 20:44:12 +0100
committerNiels Möller <nisse@lysator.liu.se>2010-02-20 20:44:12 +0100
commit9de23ffb0f4bfcab7cd9ed3d241bd19da2548e6c (patch)
treebe6840a471a3e51085893e1e4719723da3e5bb6c /tune/hgcd_lehmer.c
parent2203139564a3e4fcfb807101769d571296dfd578 (diff)
downloadgmp-9de23ffb0f4bfcab7cd9ed3d241bd19da2548e6c.tar.gz
Deleted function mpn_hgcd_lehmer.
Diffstat (limited to 'tune/hgcd_lehmer.c')
-rw-r--r--tune/hgcd_lehmer.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/tune/hgcd_lehmer.c b/tune/hgcd_lehmer.c
new file mode 100644
index 000000000..7e2e00f72
--- /dev/null
+++ b/tune/hgcd_lehmer.c
@@ -0,0 +1,33 @@
+/* mpn/generic/hgcd.c forced to use Lehmer's quadratic algorithm. */
+
+/*
+Copyright 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 HGCD_THRESHOLD
+#define HGCD_THRESHOLD MP_SIZE_T_MAX
+#define __gmpn_hgcd mpn_hgcd_lehmer
+#define __gmpn_hgcd_itch mpn_hgcd_lehmer_itch
+/* Same functions, needed to avoid linking collisions. FIXME: Move to
+ * separate file? */
+#define __gmpn_hgcd_matrix_init mpn_hgcd_lehmer_matrix_init
+#define __gmpn_hgcd_matrix_adjust mpn_hgcd_lehmer_matrix_adjust
+#define __gmpn_hgcd_matrix_mul mpn_hgcd_lehmer_matrix_mul
+#include "../mpn/generic/hgcd.c"