on the way back without realtime
[talweg.git] / pkg / R / F_Zero.R
index f5d6b89..ac970c4 100644 (file)
@@ -1,5 +1,3 @@
-#' @include Forecaster.R
-#'
 #' Zero Forecaster
 #'
 #' Return 0 (and then adjust). Inherits \code{\link{Forecaster}}
@@ -9,6 +7,6 @@ ZeroForecaster = R6::R6Class("ZeroForecaster",
 
        public = list(
                predictShape = function(data, today, memory, horizon, ...)
-                       rep(0., horizon)
+                       rep(0, horizon)
        )
 )