* (2020-09-24) openMP pragmas enclosed, to improve portability
* (2020-09-18) conversion of variogram models of class CompLinModCoReg -> LMCAnisCompo -> variogramModel(List)
* (2020-09-18) `gsi.gstatCokriging2compo()` and `gsi.gstatCokriging2rmult()` now work with systems of 3 components resp. 2 variables (systems of 2 components or 1 variable still fail)
Please correct before 2020-10-03 to safely retain your package on CRAN.
Best regards,
CRAN teams' auto-check service
The CRAN Team
```
Actions:
... the sympthom being an error while #include <omp.h> in r-release-macos-x86_64, we identified the problem as a lack of appropriate linkage of OpenMP.
All errors are bound to calls to getTellus(), a function to download and preprocess an illustration data set.
Solution:
1.- the header inclusion and all usages of #pragma directives were enclosed in conditional structures
#ifdef _OPENMP
...
#endif
--> all calls to getTellus() are now encased in \dontrun{}. These were originally in \donttest{} environments, which were "fred" after request from CRAN maintaner (taking less than 5ms). We did not realise that downloading files might be problematic. Apologies.
--> package was re-tested under all environments mentioned above, producing only one "NOTE: this is a new submission".
2.`$(SHLIB_OPENMP_CFLAGS)` was added to PKG_CFLAGS and PKG_LIBS fields in Makevars files
3.- as mentioned in `Test environments`, the new code was tested under MacOS as well.