aboutsummaryrefslogtreecommitdiff
path: root/ic-reals-6.3/math-lib/math-lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'ic-reals-6.3/math-lib/math-lib.h')
-rw-r--r--ic-reals-6.3/math-lib/math-lib.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/ic-reals-6.3/math-lib/math-lib.h b/ic-reals-6.3/math-lib/math-lib.h
new file mode 100644
index 0000000..51c25be
--- /dev/null
+++ b/ic-reals-6.3/math-lib/math-lib.h
@@ -0,0 +1,18 @@
+/*
+ * 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.
+ */
+
+/*
+ * This is the structure holding the closure data for those functions
+ * which use the standard tensor continuation.
+ */
+
+typedef struct {
+ int n;
+ Real x;
+ TenXY *(*nextTensor)(Real, Real, int);
+} ClsData;