Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,8 @@
/rsc/
/wfx/
/zfx/

#artifacts of R CMD build/check
*.Rcheck
*.tar.gz

7 changes: 4 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,11 @@ Description: Basic infrastructure and several algorithms for 1d-4d bin packing
The item can be rotated into any orthogonal direction, and no further
restrictions implied.
License: MIT + file LICENSE
Depends: R (>= 3.0.0),
magrittr, data.table
Depends: R (>= 3.0.2),
magrittr
Imports: methods,
Rcpp (>= 0.12.7)
Rcpp (>= 0.12.7),
data.table
Suggests: testthat,
knitr, rmarkdown, rgl
LinkingTo: Rcpp, RcppArmadillo (>= 0.7.400.2.0)
Expand Down
3 changes: 2 additions & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
useDynLib(gbp)
importFrom(data.table, data.table, copy)
importFrom(Rcpp, evalCpp)
import(methods, magrittr, data.table, Rcpp)
import(methods, magrittr, Rcpp)
exportPattern("^[[:alpha:]]+")
4 changes: 3 additions & 1 deletion R/bpp_viewer.r
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,9 @@ bpp_viewer <- function(
#' @family bpp_viewer
#' @rdname bpp_viewer_single
#' @export
.N = NULL
`:=` = function(...) NULL

bpp_viewer_single <- function(
it, bn, title = NULL, subtitle = NULL, it_rgl_control = NULL, bn_rgl_control = NULL, label_it = TRUE, label_bn = TRUE
) {
Expand Down Expand Up @@ -337,4 +340,3 @@ create_bn_rgl_control <- function() {

}
#------------------------------------------------------------------------------#