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

/*
 * Tests the cos_R when applied to a rational a real expressed
 * by a sign, a characteristic pair and a vector.
 */
main(int argc, char *argv[])
{
	Real x, y, z;
	double f;
	Real makeRealSignCNQInt(Sign, char *, int, int, int);

	MyName = argv[0];

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

	initReals();

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

	y = vector_Int(atoi(argv[4]), atoi(argv[5]));

	print_R_Dec(y, atoi(argv[6]));
	printf("\n");

	f = realToDouble(y);
	printf("x=%f\n",f);

	x = cos_R(y);
	x = mul_R_R(x, x);

	z = sin_R(y);
	z = mul_R_R(z, z);

	x = add_R_R(x, z);
	x = sqrt_R(x);

	print_R_Dec(x, atoi(argv[6]));
	printf("\n");
	printf("t1(x)=%f\n", sqrt(cos(f)*cos(f) + sin(f)*sin(f)));
}