Skip to content

Commit 5355f68

Browse files
committed
Version 0.9.8.1
Specified previous version of set.seed sampler with RNGversion() calls, to ensure CRAN devel check compatibility
1 parent e52913a commit 5355f68

File tree

115 files changed

+1024
-1012
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+1024
-1012
lines changed

.Rbuildignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
^Meta$
22
^doc$
3+
^vignettes/only_pkgdown$
4+
^vignettes/only_pkgdown.*
35
^demo/working_directory$
46
^demo/working_directory.*
57
contextual.Rproj

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: contextual
22
Type: Package
33
Title: Simulation and Analysis of Contextual Multi-Armed Bandit Policies
4-
Version: 0.9.8
4+
Version: 0.9.8.1
55
Authors@R: c(person("Robin", "van Emden", role = c("aut", "cre"),
66
comment = c(ORCID = "0000-0001-5820-8638"), email = "robinvanemden@gmail.com"),
77
person("Maurits", "Kaptein", role = "ctb", email = "m.c.kaptein@tilburguniversity.edu",

NEWS.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
contextual 0.9.8.1
2+
==================
3+
4+
* Specified previous version of set.seed sampler with RNGversion() calls
5+
16
contextual 0.9.8
27
================
38

R/functions_utility.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ get_full_context <- function(context, select_features = NULL, prepend_arm_matrix
421421
if(is.vector(X)) Xm <- X[select_features]
422422
else Xm <- X[select_features,]
423423
}
424-
if(isTRUE(prepend_arm_vector)) Xv <- rbind(diag(k),Xv)
424+
if(isTRUE(prepend_arm_matrix)) Xv <- rbind(diag(k),Xv)
425425
return(Xm)
426426
}
427427

cran-comments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
New submission.
1+
Minor update adding "suppressWarnings(RNGversion("3.5.0"))" to ensure CRAN devel compatibility
22

33
## Test environments
44

docs/articles/cmabs.html

Lines changed: 22 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)