Skip to content

Commit

Permalink
fix: missing progressbar
Browse files Browse the repository at this point in the history
  • Loading branch information
Quentin62 committed Mar 7, 2022
1 parent 749556b commit 82605d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/encoding.R
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ computeVmatrix <- function(data, basisobj, K, uniqueId, nCores, verbose, ...) {

if (verbose) {
cat("---- Compute V matrix:\n")
pbo <- pboptions(char = "=")
pbo <- pboptions(type = "timer", char = "=")
} else {
pboptions(type = "none")
}
Expand Down Expand Up @@ -276,7 +276,7 @@ computeUmatrix <- function(data, basisobj, K, uniqueId, nCores, verbose, ...) {
t3 <- proc.time()
if (verbose) {
cat(paste0("---- Compute U matrix:\n"))
pbo <- pboptions(char = "=")
pbo <- pboptions(type = "timer", char = "=")
} else {
pbo <- pboptions(type = "none")
}
Expand Down

0 comments on commit 82605d3

Please sign in to comment.