aboutsummaryrefslogtreecommitdiff
path: root/ic-reals-6.3/math-lib/log_Q.c
diff options
context:
space:
mode:
Diffstat (limited to 'ic-reals-6.3/math-lib/log_Q.c')
-rw-r--r--ic-reals-6.3/math-lib/log_Q.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/ic-reals-6.3/math-lib/log_Q.c b/ic-reals-6.3/math-lib/log_Q.c
new file mode 100644
index 0000000..0e8d1b7
--- /dev/null
+++ b/ic-reals-6.3/math-lib/log_Q.c
@@ -0,0 +1,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
+log_QInt(int a, int b)
+{
+ Real r;
+
+ r = vector_Int(a, b);
+ return log_R(r);
+}
+
+Real
+log_QZ(mpz_t a, mpz_t b)
+{
+ Real r;
+
+ r = vector_Z(a, b);
+ return log_R(r);
+}