Skip to content

Commit

Permalink
same idea for predCI.tol
Browse files Browse the repository at this point in the history
  • Loading branch information
philchalmers committed Nov 25, 2024
1 parent 2de89fa commit f69e477
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion R/SimSolve.R
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,10 @@ SimSolve <- function(design, interval, b, generate, analyse, summarise,
on.exit(options(org.opts), add = TRUE)
if(is.null(control$print_RAM)) control$print_RAM <- FALSE
burnin.iter <- 15L
if(!is.null(wait.time) && maxiter == 100L) maxiter <- 3000L
if(!is.null(wait.time) && maxiter == 100L){
maxiter <- 3000L
predCI.tol <- 0
}
if(is.list(replications)){
if(is.null(replications$burnin.iter)) replications$burnin.iter <- burnin.iter else
burnin.iter <- replications$burnin.iter
Expand Down

0 comments on commit f69e477

Please sign in to comment.