aboutsummaryrefslogtreecommitdiff
path: root/ic-reals-6.3/tests/tan_R_digit.c
blob: 18bdc2e2cff388c3fb13c86663c6bd21e5b9f6c2 (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
#include <stdio.h>
#include "real.h"
#include <math.h>

/*
 * This is the same as the tan_R test but shows how to retrieve digits
 * from a real incrementally.
 */
main(int argc, char *argv[])
{
	Real x, y;
	double f;
	Real makeRealSignCNQInt(Sign, char *, int, int, int);
	mpz_t digits;
	Sign sign;
	Digit digit;
	int count;

	MyName = argv[0];

	if (argc != 7) {
		fprintf(stderr, "%s <sign> <c> <n> <a> <b> <ndigits>\n", MyName);
		exit(1);
	}

	initReals();

	y = makeRealSignCNQInt(
				atoi(argv[1]),	/* sign */
				argv[2],		/* c */
				atoi(argv[3]), 	/* n */
				atoi(argv[4]),	/* a */
				atoi(argv[5]));	/* b */

	print_R_Dec(y, atoi(argv[6]));
	printf("\n");
	f = realToDouble(y);
	printf("x=%f\n",f);

	x = tan_R(y);

	print_R_Dec(x, atoi(argv[6]));
	printf("\n");
	printf("tan(x)=%f\n", tan(f));

	mpz_init(digits);
	retrieveInfo(x, &sign, &count, digits);

	printf("%s ", signToString(sign));
	while (count > 0) {
		digit = takeDigit(&count, digits);
		printf("%s ", digitToString(digit));
	}
	printf("\n");
}