Displaying 5 results from an estimated 5 matches for "devel_2007".
Did you mean:
devel_2005
2007 Aug 13
1
Compilation error with R-devel_2007-08-12.tar.gz snapshot
Hi,
I get a compilation error with last available R devel
snapshot (R-devel_2007-08-12.tar.gz, r42483):
==================== CONFIGURE ====================
hpages at wilson1:~/R-2.6.broken> ~/src/R-2.6.r42483/configure
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
[...]
R is now configured for x86_64-unknown-l...
2007 Dec 14
1
windows rtools missing gfortran.exe?
Hi,
I replaced my Rtools today as posted at
http://www.murdoch-sutherland.com/Rtools/Rtools.exe
Trying to build R-devel_2007-12-13.tar.gz without modifying MkRules
gives the gfortran command not found error below. I am wondering if
gfortran.exe is missing from (recent?) Rtools.exe or I am doing
something wrong.
Thanks to hints at Duncan's site, I worked around the error by adding
"GCC4_SUFF=-sjlj" in MkRul...
2007 Feb 05
1
Build error with last R-devel tarball
Hi,
On Windows, with last R-devel tarball (r40647) from
ftp://ftp.stat.math.ethz.ch/Software/R/R-devel_2007-02-04.tar.gz
I get the following build error:
E:\biocbld\bbs-2.0-bioc\R\src\gnuwin32> make
...
...
---------- Making package utils ------------
adding build stamp to DESCRIPTION
installing NAMESPACE file and metadata
installing R files
Error in namespaceExport(ns, exports) : undefined exp...
2007 Oct 23
0
API for optimization with Simulated annealing
...use of the data.
Any change of API makes current users of the API unhappy. Still, I would
like to suggest the patch below for consideration, since, in my opinion, the
current samin API is not used frequently due to the problems described above.
Jakub Dvorak
And here is the patch:
--- R-devel_2007-10-22/src/include/R_ext/Applic.h 2007-08-31 17:53:41.000000000 +0200
+++ R-devel_my_source/src/include/R_ext/Applic.h 2007-10-23 23:02:43.397529120 +0200
@@ -65,6 +65,7 @@
/* main/optim.c */
typedef double optimfn(int, double *, void *);
typedef void optimgr(int, double *, double *, void *);
+ty...
2007 Sep 23
0
initial scrambling of seed in do_setseed / RNG_Init
I would like to suggest a modification of initial scrambling of the
seed in RNG_Init (called from do_setseed). The modified code is
equivalent, but faster. Patch against R-devel_2007-09-22 follows
--- R-devel-orig/src/main/RNG.c 2007-09-02 07:49:35.000000000 +0200
+++ R-devel-modif/src/main/RNG.c 2007-09-23 10:51:59.234566440 +0200
@@ -216,8 +216,8 @@
BM_norm_keep = 0.0; /* zap Box-Muller history */
/* Initial scrambling */
- for(j = 0; j < 50; j++)
- seed =...