#' @include Forecaster.R #' #' Zero Forecaster #' #' Return 0 (and then adjust). Inherits \code{\link{Forecaster}} ZeroForecaster = R6::R6Class("ZeroForecaster", inherit = "Forecaster", public = list( predictShape = function(today, memory, horizon, ...) rep(0., horizon) ) )