Skip to content

Commit be5370b

Browse files
committed
Add CRAN comments + fix test
1 parent 1865ca3 commit be5370b

8 files changed

+17
-19
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
RSCRIPT = "$(R_HOME)/bin/Rscript"
33

44
all:
5-
${RSCRIPT} -e "RLumBuild::build_package(exclude = c('module_check_ReverseDependencies', 'module_add_RLumTeam'), as_cran = FALSE, write_Rbuildignore = TRUE)"
5+
${RSCRIPT} -e "RLumBuild::build_package(exclude = c('module_check_ReverseDependencies', 'module_add_RLumTeam'), as_cran = TRUE, write_Rbuildignore = TRUE)"

README.html

+2-2
Large diffs are not rendered by default.
Binary file not shown.
0 Bytes
Binary file not shown.
523 Bytes
Binary file not shown.

cran-comments.md

+11-13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
Dear CRAN-Team,
22

3-
XXX
3+
This is a bugfix release to replace RLumCarlo v0.1.5 on CRAN.
4+
5+
Thank you very much for support and all you efforts
6+
to keep CRAN alive.
7+
8+
On behalf of the package authors, best regards,
9+
10+
11+
## CRAN status
12+
13+
0 errors | 0 warnings | 0 note
414

515
## R CMD check --as-cran results
616

@@ -10,15 +20,3 @@ XXX
1020

1121
### *winbuilder*
1222

13-
## Test environments
14-
* local macOS Catalina 10.15.5, Xcode 11.5, R-devel
15-
* on AppVeyor CI
16-
* i386-w64-mingw32/i386 (32-bit), R-devel
17-
* x86_64_w64-mingw32/64 (64-bit), R-devel
18-
* x86_64_w64-mingw32/64 (64-bit), R 4.0.0 (2020-04-24)
19-
* i386-w64-mingw32/i386 (32-bit), R 4.0.0 (2020-04-24)
20-
* on Travis CI
21-
* Ubuntu 16.04.6 LTS, oldrel
22-
* Ubuntu 16.04.6 LTS, release
23-
* Ubuntu 16.04.6 LTS, devel
24-
* macOS Sierra 10.13.6, Xcode 9.4.1, release
741 Bytes
Loading

tests/testthat/test_benchmark_models.R

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ test_that("basic run", {
88
## RLumCarlo
99
TL110 <- RLumCarlo::run_MC_TL_DELOC(
1010
s = 5e12, E = 0.97, R = 5e-10, times = seq(20,400,2),
11-
N_e = output$`conc. level 1 (TL)`[1,2]/1e5, method = "seq")
11+
N_e = 78, method = "seq")
1212

1313
TL230 <- RLumCarlo::run_MC_TL_DELOC(
1414
s = 5e14, E = 1.55, R = 5e-10, times = seq(20,400,2),
15-
N_e = output$`conc. level 2 (TL)`[1,2]/1e5, method = "seq")
15+
N_e = 52, method = "seq")
1616

1717
TL325 <- RLumCarlo::run_MC_TL_DELOC(
1818
s = 5e13, E = 1.7, R = 5e-10, times = seq(20,400,2),
19-
N_e = output$`conc. level 3 (TL)`[1,2]/1e5, method = "seq")
19+
N_e = 1909, method = "seq")
2020

2121
## combine
2222
object <- c(TL110, TL230, TL325)

0 commit comments

Comments
 (0)