R/makeNullMonitor.r

Defines functions makeNullMonitor

Documented in makeNullMonitor

#' @title No monitoring at all.
#'
#' @return [\code{AntsMonitor}]
#'
#' @export
# nocov start
makeNullMonitor = function() {
  makeMonitor(
    before = function(envir = parent.frame()) {},
    step = function(envir = parent.frame()) {},
    after = function(envir = parent.frame()) {}
  )
}
# nocov end
jakobbossek/acotsp documentation built on May 18, 2019, 9:08 a.m.