updated to solve some inconsistencies between imported dependencies
to avoid conflicts with S3 generics, now the NAMESPACE is exporting only the functions directly called by the spp user
2) solved several mismatches between documentation and code + other formatting issues in documentation
3) in C/C++ source code we replaced all cout/cerr with Rprintf/REprintf as required by R CMD check
4) incorporation of libraries + updates of config files for compilers
incorporation of Rcpp headers where missing
configure.ac: a few updates… see file
spp_init.c, has been created as its absence caused a WARNING for dynlib
loading. Afterwards this led to a conflict between pre-registered
symbols in R and CPP. The functions in question are lwcc and wtd. So
lwcc and wtd in this scope have been converted into spp_lwcc and
spp_wtd.
C code issue in maqmap.c where an exit(3) command was replaced with a return, to comply with R CRAN requirements that the calls to C subroutines should never be able to cause R termination with exit.
SUMMARY OF REVISIONS:
1) changes in NAMESPACE/DESCRIPTION files:
2) solved several mismatches between documentation and code + other formatting issues in documentation
3) in C/C++ source code we replaced all cout/cerr with Rprintf/REprintf as required by R CMD check
4) incorporation of libraries + updates of config files for compilers
5) other things