R/class_algo_or.R

library(R6);

#' @rdname algo_0111
#' @export
algo_or <- R6Class(
  "algo_or",
  inherit = algo_0111,
  public = list(
    initialize = function(
      algo_id = NULL,
      label = NULL,
      ...) {
      if(is.null(label)){ label <- "OR"; };
      super$initialize(
        algo_id,
        label,
        ...
      );
    },
    do_randomize_outputs = function() {
      stop("Not supported");
    }
  )
)
daviddoret/haricot documentation built on May 21, 2019, 1:42 a.m.