From 11da511c784eca003deb90c23570f0873954e0de Mon Sep 17 00:00:00 2001 From: Duncan Wilkie Date: Sat, 18 Nov 2023 06:11:09 -0600 Subject: Initial commit. --- ic-reals-6.3/tests/exp_QInt.c | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 ic-reals-6.3/tests/exp_QInt.c (limited to 'ic-reals-6.3/tests/exp_QInt.c') diff --git a/ic-reals-6.3/tests/exp_QInt.c b/ic-reals-6.3/tests/exp_QInt.c new file mode 100644 index 0000000..3424a99 --- /dev/null +++ b/ic-reals-6.3/tests/exp_QInt.c @@ -0,0 +1,32 @@ +#include +#include "real.h" +#include + +/* + * Tests the exp_QInt when applied to an int rational. + */ +main(int argc, char *argv[]) +{ + Real x, y; + int a, b; + double f; + Real makeRealSignCNQInt(Sign, char *, int, int, int); + + MyName = argv[0]; + + if (argc != 4) { + fprintf(stderr, "%s \n", MyName); + exit(1); + } + + initReals(); + + a = atoi(argv[1]); + b = atoi(argv[2]); + + x = exp_QInt(a, b); + + print_R_Dec(x, atoi(argv[3])); + printf("\n"); + printf("exp(x)=%f\n", exp(f)); +} -- cgit v1.2.3