aboutsummaryrefslogtreecommitdiff
path: root/ic-reals-6.3/math-lib/atanh_Q.c
blob: d66cf147669f887fd77e9330352d0249bae7f179 (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
/*
 * Copyright (C) 2000, Imperial College
 *
 * This file is part of the Imperial College Exact Real Arithmetic Library.
 * See the copyright notice included in the distribution for conditions
 * of use.
 */

#include <stdio.h>
#include "real.h"

/*
 * These will be specialized in a later version.
 */
Real
atanh_QInt(int a, int b)
{
	Real r;

	r = vector_Int(a, b);
	return atanh_R(r);
}

Real
atanh_QZ(mpz_t a, mpz_t b)
{
	Real r;

	r = vector_Z(a, b);
	return atanh_R(r);
}