summaryrefslogtreecommitdiff
path: root/tests/tdot.c
diff options
context:
space:
mode:
authorzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2018-04-19 14:21:48 +0000
committerzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2018-04-19 14:21:48 +0000
commit20ce200047074bd4a0ee7f2f8709bfa8a25771cc (patch)
treeb940dad5adc636165a141019303f8c1187fbbfb1 /tests/tdot.c
parentd4f02c68ba342dab815fd8e944d2db1e8681ff91 (diff)
downloadmpfr-20ce200047074bd4a0ee7f2f8709bfa8a25771cc.tar.gz
added mpfr_dot
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@12633 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tdot.c')
-rw-r--r--tests/tdot.c144
1 files changed, 144 insertions, 0 deletions
diff --git a/tests/tdot.c b/tests/tdot.c
new file mode 100644
index 000000000..122b47b74
--- /dev/null
+++ b/tests/tdot.c
@@ -0,0 +1,144 @@
+/* tdot -- test file for mpfr_dot
+
+Copyright 2018 Free Software Foundation, Inc.
+Contributed by the AriC and Caramba projects, INRIA.
+
+This file is part of the GNU MPFR Library.
+
+The GNU MPFR 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 MPFR 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 MPFR Library; see the file COPYING.LESSER. If not, see
+http://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc.,
+51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */
+
+#include "mpfr-test.h"
+
+static
+void check_simple (void)
+{
+ mpfr_t tab[3], r;
+ mpfr_ptr tabp[3];
+ int i;
+
+ mpfr_init2 (r, 16);
+ for (i = 0; i < 3; i++)
+ {
+ mpfr_init2 (tab[i], 16);
+ mpfr_set_ui (tab[i], 1, MPFR_RNDN);
+ tabp[i] = tab[i];
+ }
+
+ i = mpfr_dot (r, tabp, tabp, 3, MPFR_RNDN);
+ if (mpfr_cmp_ui (r, 3) || i != 0)
+ {
+ printf ("Error in check_simple\n");
+ exit (1);
+ }
+
+ mpfr_clears (tab[0], tab[1], tab[2], r, (mpfr_ptr) 0);
+}
+
+static
+void check_special (void)
+{
+ mpfr_t tab[3], r;
+ mpfr_ptr tabp[3];
+ int i;
+
+ mpfr_inits2 (53, tab[0], tab[1], tab[2], r, (mpfr_ptr) 0);
+ tabp[0] = tab[0];
+ tabp[1] = tab[1];
+ tabp[2] = tab[2];
+
+ i = mpfr_dot (r, tabp, tabp, 0, MPFR_RNDN);
+ if (!MPFR_IS_ZERO (r) || !MPFR_IS_POS (r) || i != 0)
+ {
+ printf ("Special case n==0 failed!\n");
+ exit (1);
+ }
+
+ mpfr_set_ui (tab[0], 42, MPFR_RNDN);
+ i = mpfr_dot (r, tabp, tabp, 1, MPFR_RNDN);
+ if (mpfr_cmp_ui (r, 42*42) || i != 0)
+ {
+ printf ("Special case n==1 failed!\n");
+ exit (1);
+ }
+
+ mpfr_set_ui (tab[1], 17, MPFR_RNDN);
+ MPFR_SET_NAN (tab[2]);
+ i = mpfr_dot (r, tabp, tabp, 3, MPFR_RNDN);
+ if (!MPFR_IS_NAN (r) || i != 0)
+ {
+ printf ("Special case NAN failed!\n");
+ exit (1);
+ }
+
+ MPFR_SET_INF (tab[2]);
+ MPFR_SET_POS (tab[2]);
+ i = mpfr_dot (r, tabp, tabp, 3, MPFR_RNDN);
+ if (!MPFR_IS_INF (r) || !MPFR_IS_POS (r) || i != 0)
+ {
+ printf ("Special case +INF failed!\n");
+ exit (1);
+ }
+
+ MPFR_SET_INF (tab[2]);
+ MPFR_SET_NEG (tab[2]);
+ i = mpfr_dot (r, tabp, tabp, 3, MPFR_RNDN);
+ if (!MPFR_IS_INF (r) || !MPFR_IS_POS (r) || i != 0)
+ {
+ printf ("Special case -INF failed!\n");
+ exit (1);
+ }
+
+ MPFR_SET_ZERO (tab[1]);
+ i = mpfr_dot (r, tabp, tabp, 2, MPFR_RNDN);
+ if (mpfr_cmp_ui (r, 42*42) || i != 0)
+ {
+ printf ("Special case 42+0 failed!\n");
+ exit (1);
+ }
+
+ MPFR_SET_NAN (tab[0]);
+ i = mpfr_dot (r, tabp, tabp, 3, MPFR_RNDN);
+ if (!MPFR_IS_NAN (r) || i != 0)
+ {
+ printf ("Special case NAN+0+-INF failed!\n");
+ exit (1);
+ }
+
+ mpfr_set_inf (tab[0], 1);
+ mpfr_set_inf (tab[0], 1);
+ mpfr_set_inf (tab[2], -1);
+ i = mpfr_dot (r, tabp, tabp + 1, 2, MPFR_RNDN);
+ if (!MPFR_IS_NAN (r) || i != 0)
+ {
+ printf ("Special case inf*inf-inf*inf failed!\n");
+ exit (1);
+ }
+
+ mpfr_clears (tab[0], tab[1], tab[2], r, (mpfr_ptr) 0);
+}
+
+int
+main (int argc, char *argv[])
+{
+ tests_start_mpfr ();
+
+ check_simple ();
+ check_special ();
+
+ tests_end_mpfr ();
+
+ return 0;
+}