summaryrefslogtreecommitdiff
path: root/tests/tatan2u.c
blob: e99d4eedbc2dc7a42bb8078b3617282ba3580ed9 (plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
/* Test file for mpfr_atan2u.

Copyright 2021 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
https://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"

#define TEST_FUNCTION mpfr_atan2u
#define THREE_ARGS
#include "tgeneric.c"

/* Special cases from IEEE 754-2019 (page 63) */
static void
check_ieee754 (void)
{
  mpfr_t x, y, z;
  int i;
  mpfr_prec_t prec = 2; /* we need at least 2 so that 3/4 is exact */

  mpfr_init2 (x, prec);
  mpfr_init2 (y, prec);
  mpfr_init2 (z, prec);

  /* atan2Pi(±0, −0) is ±1 */
  mpfr_set_zero (x, -1);
  mpfr_set_zero (y, +1);
  mpfr_atan2u (z, y, x, 2, MPFR_RNDN);
  if (mpfr_cmp_ui (z, 1) != 0)
    {
      printf ("Error for atan2u(+0,-0,2)\n");
      printf ("expected 1\n");
      printf ("got     "); mpfr_dump (z);
      exit (1);
    }
  mpfr_set_zero (y, -1);
  mpfr_atan2u (z, y, x, 2, MPFR_RNDN);
  if (mpfr_cmp_si (z, -1) != 0)
    {
      printf ("Error for atan2u(-0,-0,2)\n");
      printf ("expected -1\n");
      printf ("got     "); mpfr_dump (z);
      exit (1);
    }

  /* atan2Pi(±0, +0) is ±0 */
  mpfr_set_zero (x, +1);
  mpfr_set_zero (y, +1);
  mpfr_atan2u (z, y, x, 2, MPFR_RNDN);
  if (!MPFR_IS_ZERO(z) || MPFR_IS_NEG(z))
    {
      printf ("Error for atan2u(+0,+0,2)\n");
      printf ("expected +0\n");
      printf ("got     "); mpfr_dump (z);
      exit (1);
    }
  mpfr_set_zero (y, -1);
  mpfr_atan2u (z, y, x, 2, MPFR_RNDN);
  if (!MPFR_IS_ZERO(z) || MPFR_IS_POS(z))
    {
      printf ("Error for atan2u(-0,+0,2)\n");
      printf ("expected -0\n");
      printf ("got     "); mpfr_dump (z);
      exit (1);
    }

  /* atan2Pi(±0, x) is ±1 for x < 0 (including x=-Inf) */
  for (i = 0; i < 2; i++)
    {
      if (i == 0)
        mpfr_set_si (x, -1, MPFR_RNDN);
      else
        mpfr_set_inf (x, -1);
      mpfr_set_zero (y, +1);
      mpfr_atan2u (z, y, x, 2, MPFR_RNDN);
      if (mpfr_cmp_ui (z, 1) != 0)
        {
          printf ("Error for atan2u(+0,x,2)\nwith x = ");
          mpfr_dump (x);
          printf ("expected 1\n");
          printf ("got     "); mpfr_dump (z);
          exit (1);
        }
      mpfr_set_zero (y, -1);
      mpfr_atan2u (z, y, x, 2, MPFR_RNDN);
      if (mpfr_cmp_si (z, -1) != 0)
        {
          printf ("Error for atan2u(-0,x,2)\nwith x = ");
          mpfr_dump (x);
          printf ("expected -1\n");
          printf ("got     "); mpfr_dump (z);
          exit (1);
        }
    }

  /* atan2Pi(±0, x) is ±0 for x > 0 (including x=+Inf) */
  for (i = 0; i < 2; i++)
    {
      if (i == 0)
          mpfr_set_ui (x, 1, MPFR_RNDN);
      else
        mpfr_set_inf (x, 1);
      mpfr_set_zero (y, +1);
      mpfr_atan2u (z, y, x, 2, MPFR_RNDN);
      if (!MPFR_IS_ZERO(z) || MPFR_IS_NEG(z))
        {
          printf ("Error for atan2u(+0,x,2)\nwith x = ");
          mpfr_dump (x);
          printf ("expected +0\n");
          printf ("got     "); mpfr_dump (z);
          exit (1);
        }
      mpfr_set_zero (y, -1);
      mpfr_atan2u (z, y, x, 2, MPFR_RNDN);
      if (!MPFR_IS_ZERO(z) || MPFR_IS_POS(z))
        {
          printf ("Error for atan2u(-0,x,2)\nwith x = ");
          mpfr_dump (x);
          printf ("expected -0\n");
          printf ("got     "); mpfr_dump (z);
          exit (1);
        }
    }

  /* atan2Pi(y, ±0) is −½ for y < 0 */
  mpfr_set_si (y, -1, MPFR_RNDN);
  mpfr_set_zero (x, 1);
  mpfr_atan2u (z, y, x, 2, MPFR_RNDN);
  if (mpfr_cmp_si_2exp (z, -1, -1) != 0)
    {
      printf ("Error for atan2u(-1,+0,2)\n");
      printf ("expected -1/2\n");
      printf ("got     "); mpfr_dump (z);
      exit (1);
    }
  mpfr_set_zero (x, -1);
  mpfr_atan2u (z, y, x, 2, MPFR_RNDN);
  if (mpfr_cmp_si_2exp (z, -1, -1) != 0)
    {
      printf ("Error for atan2u(-1,-0,2)\n");
      printf ("expected -1/2\n");
      printf ("got     "); mpfr_dump (z);
      exit (1);
    }

  /* atan2Pi(y, ±0) is +½ for y > 0 */
  mpfr_set_ui (y, 1, MPFR_RNDN);
  mpfr_set_zero (x, 1);
  mpfr_atan2u (z, y, x, 2, MPFR_RNDN);
  if (mpfr_cmp_ui_2exp (z, 1, -1) != 0)
    {
      printf ("Error for atan2u(1,+0,2)\n");
      printf ("expected 1/2\n");
      printf ("got     "); mpfr_dump (z);
      exit (1);
    }
  mpfr_set_zero (x, -1);
  mpfr_atan2u (z, y, x, 2, MPFR_RNDN);
  if (mpfr_cmp_ui_2exp (z, 1, -1) != 0)
    {
      printf ("Error for atan2u(-1,-0,2)\n");
      printf ("expected 1/2\n");
      printf ("got     "); mpfr_dump (z);
      exit (1);
    }

  /* atan2Pi(±y, −∞) is ±1 for finite y > 0 */
  mpfr_set_inf (x, -1);
  mpfr_set_ui (y, 1, MPFR_RNDN);
  mpfr_atan2u (z, y, x, 2, MPFR_RNDN);
  if (mpfr_cmp_ui (z, 1) != 0)
    {
      printf ("Error for atan2u(1,-Inf,2)\n");
      printf ("expected 1\n");
      printf ("got     "); mpfr_dump (z);
      exit (1);
    }
  mpfr_set_si (y, -1, MPFR_RNDN);
  mpfr_atan2u (z, y, x, 2, MPFR_RNDN);
  if (mpfr_cmp_si (z, -1) != 0)
    {
      printf ("Error for atan2u(-1,-Inf,2)\n");
      printf ("expected -1\n");
      printf ("got     "); mpfr_dump (z);
      exit (1);
    }

  /* atan2Pi(±y, +∞) is ±0 for finite y > 0 */
  mpfr_set_inf (x, +1);
  mpfr_set_ui (y, 1, MPFR_RNDN);
  mpfr_atan2u (z, y, x, 2, MPFR_RNDN);
  if (!MPFR_IS_ZERO(z) || MPFR_IS_NEG(z))
    {
      printf ("Error for atan2u(1,+Inf,2)\n");
      printf ("expected +0\n");
      printf ("got     "); mpfr_dump (z);
      exit (1);
    }
  mpfr_set_si (y, -1, MPFR_RNDN);
  mpfr_atan2u (z, y, x, 2, MPFR_RNDN);
  if (!MPFR_IS_ZERO(z) || MPFR_IS_POS(z))
    {
      printf ("Error for atan2u(-1,+Inf,2)\n");
      printf ("expected -0\n");
      printf ("got     "); mpfr_dump (z);
      exit (1);
    }

  /* atan2Pi(±∞, x) is ±½ for finite x */
  for (i = 0; i < 4; i++)
    {
      if (i == 0)
        mpfr_set_ui (x, 1, MPFR_RNDN);
      else if (i == 1)
        mpfr_set_zero (x, 1);
      else if (i == 2)
        mpfr_set_zero (x, -1);
      else
        mpfr_set_si (x, -1, MPFR_RNDN);
      mpfr_set_inf (y, 1);
      mpfr_atan2u (z, y, x, 2, MPFR_RNDN);
      if (mpfr_cmp_ui_2exp (z, 1, -1) != 0)
        {
          printf ("Error for atan2u(+Inf,x,2)\nwith x = ");
          mpfr_dump (x);
          printf ("expected 1/2\n");
          printf ("got     "); mpfr_dump (z);
          exit (1);
        }
      mpfr_set_inf (y, -1);
      mpfr_atan2u (z, y, x, 2, MPFR_RNDN);
      if (mpfr_cmp_si_2exp (z, -1, -1) != 0)
        {
          printf ("Error for atan2u(-Inf,x,2)\nwith x = ");
          mpfr_dump (x);
          printf ("expected -1/2\n");
          printf ("got     "); mpfr_dump (z);
          exit (1);
        }
    }

  /* atan2Pi(±∞, −∞) is ±¾ */
  mpfr_set_inf (x, -1);
  mpfr_set_inf (y, 1);
  mpfr_atan2u (z, y, x, 2, MPFR_RNDN);
  if (mpfr_cmp_ui_2exp (z, 3, -2) != 0)
    {
      printf ("Error for atan2u(+Inf,-Inf,2)\n");
      printf ("expected 3/4\n");
      printf ("got     "); mpfr_dump (z);
      exit (1);
    }
  mpfr_set_inf (y, -1);
  mpfr_atan2u (z, y, x, 2, MPFR_RNDN);
  if (mpfr_cmp_si_2exp (z, -3, -2) != 0)
    {
      printf ("Error for atan2u(+Inf,-Inf,2)\n");
      printf ("expected -3/4\n");
      printf ("got     "); mpfr_dump (z);
      exit (1);
    }

  /* atan2Pi(±∞, +∞) is ±¼ */
  mpfr_set_inf (x, 1);
  mpfr_set_inf (y, 1);
  mpfr_atan2u (z, y, x, 2, MPFR_RNDN);
  if (mpfr_cmp_ui_2exp (z, 1, -2) != 0)
    {
      printf ("Error for atan2u(+Inf,+Inf,2)\n");
      printf ("expected 1/4\n");
      printf ("got     "); mpfr_dump (z);
      exit (1);
    }
  mpfr_set_inf (y, -1);
  mpfr_atan2u (z, y, x, 2, MPFR_RNDN);
  if (mpfr_cmp_si_2exp (z, -1, -2) != 0)
    {
      printf ("Error for atan2u(+Inf,+Inf,2)\n");
      printf ("expected -1/4\n");
      printf ("got     "); mpfr_dump (z);
      exit (1);
    }

  mpfr_clear (x);
  mpfr_clear (y);
  mpfr_clear (z);
}

/* Special cases from LIA-2 (5.3.9.15) not covered by IEEE 754-2019.
   Warning: in LIA-2, the order of arguments is reversed:
   arcu (u,x,y) corresponds to atan2u (y,x,u). */
static void
check_lia2 (void)
{
  mpfr_t x, y, z;
  mpfr_prec_t prec = 9; /* 3*99 must be exactly representable */
  unsigned long u;
  int r, inex;

  mpfr_init2 (x, prec);
  mpfr_init2 (y, prec);
  mpfr_init2 (z, prec);

  /* arcu (u, x, x) = u/8 for x > 0 */
  for (u = 1; u < 100; u++)
     RND_LOOP (r)
       {
         mpfr_set_ui (x, 1, MPFR_RNDN); /* exact */
         mpfr_set_ui (y, 1, MPFR_RNDN); /* exact */
         mpfr_atan2u (z, y, x, u, (mpfr_rnd_t) r);
         inex = mpfr_set_ui (x, u, MPFR_RNDN);
         MPFR_ASSERTN(inex == 0);
         inex = mpfr_div_ui (x, x, 8, (mpfr_rnd_t) r);
         if ((r != MPFR_RNDF || inex == 0) && !mpfr_equal_p (x, z))
           {
             printf ("Error: atan2u(1,1,u) != u/8 for u=%lu and rnd=%s\n",
                     u, mpfr_print_rnd_mode ((mpfr_rnd_t) r));
             printf ("got: "); mpfr_dump (z);
             exit (1);
           }
       }

  /* arcu (u, x, -x) = -u/8 for x > 0 */
  for (u = 1; u < 100; u++)
     RND_LOOP (r)
       {
         mpfr_set_ui (x, 1, MPFR_RNDN); /* exact */
         mpfr_set_si (y, -1, MPFR_RNDN); /* exact */
         mpfr_atan2u (z, y, x, u, (mpfr_rnd_t) r);
         inex = mpfr_set_ui (x, u, MPFR_RNDN);
         MPFR_ASSERTN(inex == 0);
         inex = mpfr_div_si (x, x, -8, (mpfr_rnd_t) r);
         if ((r != MPFR_RNDF || inex == 0) && !mpfr_equal_p (x, z))
           {
             printf ("Error: atan2u(-1,1,u) != -u/8 for u=%lu and rnd=%s\n",
                     u, mpfr_print_rnd_mode ((mpfr_rnd_t) r));
             printf ("got: "); mpfr_dump (z);
             exit (1);
           }
       }

  /* arcu (u, x, −x) = 3 · u/8 for x < 0 */
  for (u = 1; u < 100; u++)
     RND_LOOP (r)
       {
         mpfr_set_si (x, -1, MPFR_RNDN); /* exact */
         mpfr_set_ui (y, 1, MPFR_RNDN); /* exact */
         mpfr_atan2u (z, y, x, u, (mpfr_rnd_t) r);
         inex = mpfr_set_ui (x, 3 * u, MPFR_RNDN);
         MPFR_ASSERTN(inex == 0);
         inex = mpfr_div_ui (x, x, 8, (mpfr_rnd_t) r);
         if ((r != MPFR_RNDF || inex == 0) && !mpfr_equal_p (x, z))
           {
             printf ("Error: atan2u(1,-1,u) != 3u/8 for u=%lu and rnd=%s\n",
                     u, mpfr_print_rnd_mode ((mpfr_rnd_t) r));
             printf ("got: "); mpfr_dump (z);
             exit (1);
           }
       }

  /* arcu (u, x, x) = -3 · u/8 for x < 0 */
  for (u = 1; u < 100; u++)
     RND_LOOP (r)
       {
         mpfr_set_si (x, -1, MPFR_RNDN); /* exact */
         mpfr_set_si (y, -1, MPFR_RNDN); /* exact */
         mpfr_atan2u (z, y, x, u, (mpfr_rnd_t) r);
         inex = mpfr_set_ui (x, 3 * u, MPFR_RNDN);
         MPFR_ASSERTN(inex == 0);
         inex = mpfr_div_si (x, x, -8, (mpfr_rnd_t) r);
         if ((r != MPFR_RNDF || inex == 0) && !mpfr_equal_p (x, z))
           {
             printf ("Error: atan2u(-1,-1,u) != -3u/8 for u=%lu and rnd=%s\n",
                     u, mpfr_print_rnd_mode ((mpfr_rnd_t) r));
             printf ("got: "); mpfr_dump (z);
             exit (1);
           }
       }

  mpfr_clear (x);
  mpfr_clear (y);
  mpfr_clear (z);
}

static void
check_random (void)
{
  mpfr_t x, y, z;
  long i, j, B = 20;
  unsigned long u;
  int r;

  mpfr_init2 (x, 53);
  mpfr_init2 (y, 53);
  mpfr_init2 (z, 53);

  /* hard-coded values */

  /* first quadrant */
  mpfr_set_ui (x, 17, MPFR_RNDN);
  mpfr_set_ui (y, 42, MPFR_RNDN);
  mpfr_atan2u (z, y, x, 360, MPFR_RNDN); /* in degrees */
  mpfr_set_str (x, "4.3f6b9d4ccd754p+4", 16, MPFR_RNDN);
  if (!mpfr_equal_p (z, x))
    {
      printf ("Error for atan2u(42,17,360)\n");
      printf ("expected "); mpfr_dump (x);
      printf ("got      "); mpfr_dump (z);
      exit (1);
    }

  /* second quadrant */
  mpfr_set_si (x, -17, MPFR_RNDN);
  mpfr_set_ui (y, 42, MPFR_RNDN);
  mpfr_atan2u (z, y, x, 360, MPFR_RNDN); /* in degrees */
  mpfr_set_str (x, "7.009462b3328acp+4", 16, MPFR_RNDN);
  if (!mpfr_equal_p (z, x))
    {
      printf ("Error for atan2u(42,-17,360)\n");
      printf ("expected "); mpfr_dump (x);
      printf ("got      "); mpfr_dump (z);
      exit (1);
    }

  /* third quadrant */
  mpfr_set_si (x, -17, MPFR_RNDN);
  mpfr_set_si (y, -42, MPFR_RNDN);
  mpfr_atan2u (z, y, x, 360, MPFR_RNDN); /* in degrees */
  mpfr_set_str (x, "-7.009462b3328acp+4", 16, MPFR_RNDN);
  if (!mpfr_equal_p (z, x))
    {
      printf ("Error for atan2u(-42,-17,360)\n");
      printf ("expected "); mpfr_dump (x);
      printf ("got      "); mpfr_dump (z);
      exit (1);
    }

  /* fourth quadrant */
  mpfr_set_ui (x, 17, MPFR_RNDN);
  mpfr_set_si (y, -42, MPFR_RNDN);
  mpfr_atan2u (z, y, x, 360, MPFR_RNDN); /* in degrees */
  mpfr_set_str (x, "-4.3f6b9d4ccd754p+4", 16, MPFR_RNDN);
  if (!mpfr_equal_p (z, x))
    {
      printf ("Error for atan2u(-42,17,360)\n");
      printf ("expected "); mpfr_dump (x);
      printf ("got      "); mpfr_dump (z);
      exit (1);
    }

  /* case u=0 with x > 0 */
  mpfr_set_ui (x, 17, MPFR_RNDN);
  mpfr_set_ui (y, 42, MPFR_RNDN);
  mpfr_atan2u (z, y, x, 0, MPFR_RNDN);
  if (!MPFR_IS_ZERO(z) || MPFR_IS_NEG(z))
    {
      printf ("Error for atan2u(42,17,0)\n");
      printf ("expected +0\n");
      printf ("got     "); mpfr_dump (z);
      exit (1);
    }
  mpfr_set_si (y, -42, MPFR_RNDN);
  mpfr_atan2u (z, y, x, 0, MPFR_RNDN);
  if (!MPFR_IS_ZERO(z) || MPFR_IS_POS(z))
    {
      printf ("Error for atan2u(-42,17,0)\n");
      printf ("expected -0\n");
      printf ("got     "); mpfr_dump (z);
      exit (1);
    }

  /* case u=0 with x < 0 */
  mpfr_set_si (x, -17, MPFR_RNDN);
  mpfr_set_ui (y, 42, MPFR_RNDN);
  mpfr_atan2u (z, y, x, 0, MPFR_RNDN);
  if (mpfr_cmp_ui (z, 1) != 0)
    {
      printf ("Error for atan2u(42,-17,0)\n");
      printf ("expected +1\n");
      printf ("got     "); mpfr_dump (z);
      exit (1);
    }
  mpfr_set_si (y, -42, MPFR_RNDN);
  mpfr_atan2u (z, y, x, 0, MPFR_RNDN);
  if (mpfr_cmp_si (z, -1) != 0)
    {
      printf ("Error for atan2u(-42,-17,0)\n");
      printf ("expected -1\n");
      printf ("got     "); mpfr_dump (z);
      exit (1);
    }

  for (i = -B; i <= B; i++)
    {
      mpfr_set_si (x, i, MPFR_RNDN);
      for (j = -B; j <= B; j++)
        {
          mpfr_set_si (y, j, MPFR_RNDN);
          for (u = 0; u <= B; u++)
            RND_LOOP (r)
              mpfr_atan2u (z, y, x, u, (mpfr_rnd_t) r);
        }
    }

  mpfr_clear (x);
  mpfr_clear (y);
  mpfr_clear (z);
}

/* bug found with GMP_CHECK_RANDOMIZE=1612368173909457 */
static void
bug20210203 (void)
{
  /* The "#if" makes sure that 64-bit constants are supported, avoiding
     a compilation failure. The "if" makes sure that the constant is
     representable in an unsigned long (this would not be the case with
     32-bit unsigned long and 64-bit limb). */

#if GMP_NUMB_BITS >= 64 || MPFR_PREC_BITS >= 64
  mpfr_t x, y, z;
  unsigned long u = 13484982567905493265U;

  if (u == 13484982567905493265U)
    {
      mpfr_init2 (x, 12);
      mpfr_init2 (y, 12);
      mpfr_init2 (z, 28);
      mpfr_set_str_binary (y, "-0.111101100000E-66");
      mpfr_set_str_binary (x, "0.111011100000E0");
      mpfr_atan2u (z, y, x, u, MPFR_RNDN);
      mpfr_set_prec (x, 28);
      mpfr_set_str_binary (x, "-0.1111011001001001000110001010E-5");
      if (!mpfr_equal_p (z, x))
        {
          printf ("Error in bug20210203\n");
          printf ("expected "); mpfr_dump (x);
          printf ("got      "); mpfr_dump (z);
          exit (1);
        }
      mpfr_clear (x);
      mpfr_clear (y);
      mpfr_clear (z);
    }
#endif
}

int
main (void)
{
  tests_start_mpfr ();

  bug20210203 ();

  check_ieee754 ();

  check_lia2 ();

  check_random ();

  test_generic (MPFR_PREC_MIN, 100, 100);

  tests_end_mpfr ();
  return 0;
}