On 30 October 2006 at 21:19, Dirk Eddelbuettel wrote:
| I don't immediately see why that would be wrong -- isn't that simply the old
| 'pointer-pointer to point' method of cramming 2d matrices into vectors of
| vectors?
|
| Are sure that this will land a defect under amd64 and ia64?
Got it a few moments later -- simple case of include file not being
loaded. The simple patch below uncomments the already existing include
statements for the two .c files. Fixed package has been uploaded.
Diethelm: Any reason that couldn't be the default?
Thanks, Dirk
--- fseries-240.10068.orig/src/5A-ChaoticTimeSeries.c
+++ fseries-240.10068/src/5A-ChaoticTimeSeries.c
@@ -4,14 +4,13 @@
#define tseriesChaos_h
#include <math.h>
-/* #include <R.h> */
+#include <R.h>
#define sqr(a) (a)*(a)
#define MIN(a,b) (a)<(b) ? (a) : (b)
#define MAX(a,b) (a)>(b) ? (a) : (b)
#endif
-
/* --------------------------------------------------------------------------
*/
--- fseries-240.10068.orig/src/5B-TimeSeriesTests.c
+++ fseries-240.10068/src/5B-TimeSeriesTests.c
@@ -24,9 +24,9 @@
#include <stdio.h>
#include <math.h>
-/*
+
#include <R.h>
-*/
+
/* NBITS is the number of useable bits per word entry. Technically
on the sun this should be 32, as the sun uses 4 byte integers.
--
Hell, there are no rules here - we're trying to accomplish something.
-- Thomas A. Edison
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]