Skip to content

Commit 6d39f55

Browse files
committed
Remove stray print statements.
1 parent 9746cfb commit 6d39f55

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

packages/nimbleSMC/R/BootstrapFilter.R

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -361,17 +361,14 @@ buildBootstrapFilter <- nimbleFunction(
361361
if(logL == Inf) {lastLogLik <<- -Inf; return(-Inf)}
362362
}
363363
lastLogLik <<- logL
364-
nimCat("lastLogLik is ", logL, "\n")
365364
return(logL)
366365
},
367366
methods = list(
368367
getLastLogLik = function() {
369-
nimCat("getting lastLogLik as ", lastLogLik, "\n")
370368
return(lastLogLik)
371369
returnType(double())
372370
},
373371
setLastLogLik = function(lll = double()) {
374-
nimCat("setting lastLogLik as ", lll, "\n")
375372
lastLogLik <<- lll
376373
},
377374
returnESS = function(){

0 commit comments

Comments
 (0)