reorganize folder
[talweg.git] / R / F_Zero.R
diff --git a/R/F_Zero.R b/R/F_Zero.R
deleted file mode 100644 (file)
index 247ab04..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#' @include Forecaster.R
-#'
-#' @title Zero Forecaster
-#'
-#' @description Return 0 (and then adjust). Inherits \code{\link{Forecaster}}
-ZeroForecaster = setRefClass(
-       Class = "ZeroForecaster",
-       contains = "Forecaster",
-
-       methods = list(
-               initialize = function(...)
-               {
-                       callSuper(...)
-               },
-               predictShape = function(today, memory, horizon, ...)
-               {
-                       rep(0., horizon)
-               }
-       )
-)