Displaying 2 results from an estimated 2 matches for "masterbayes".
2007 Aug 08
0
Use of __FUNCTION__ and__PRETTY_FUNCTION__ is not portable
...e, so they should be conditionalized on
__GNUC__ (or tested for by configure). For example, SunPro C++ supports
__func__ as a (non-default) extension:
http://docs.sun.com/app/docs/doc/819-5267/6n7c46dpc?a=view
so probably configure should be used to test what is available.
[1] GOSim MCMCpack MasterBayes RGtk2 rcom smoothSurv
--
Brian D. Ripley, ripley at stats.ox.ac.uk
Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/
University of Oxford, Tel: +44 1865 272861 (self)
1 South Parks Road, +44 1865 272866 (PA)
Oxford OX1 3TG, UK...
2007 Aug 02
0
Package portability issues
...of C++ issues even after changing the R
headers.)
1) One common error message is
An integer constant expression is required within the array subscript
operator.
Here is an example:
double data[(*nrow)+2*env][(*ncol)+2*env];
This affects at least packages
GammaTest MCMCpack MasterBayes clusterSim dprep edci epsi knnFinder pbatR
rmetasim zicounts
2) Including C header files is fraught with difficulties. Unfortunately
that includes the R header files, because they in turn include system C
headers.
The checking of which features were available was done using the C
compiler w...