1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
#' @title Check whether parameter set contains a certain type.
#'
#' @description `TRUE` if the parameter set contains at least one parameter of
#' the mentioned type x. Type x always subsumes x and x-vector.
#'
#' @template arg_parset
#' @template arg_include_int
#' @template arg_include_logical
#' @return `logical(1)`
#' @name hasType
#' @rdname hasType
NULL
#' @export
#' @rdname hasType
hasDiscrete = function(par.set, include.logical = TRUE) {
assertClass(par.set, "ParamSet")
hasSomeParamsOfTypes(par.set, types = getTypeStringsDiscrete(include.logical = include.logical))
}
#' @export
#' @rdname hasType
hasInteger = function(par.set) {
assertClass(par.set, "ParamSet")
hasSomeParamsOfTypes(par.set, types = getTypeStringsInteger())
}
#' @export
#' @rdname hasType
hasLogical = function(par.set) {
assertClass(par.set, "ParamSet")
hasSomeParamsOfTypes(par.set, types = getTypeStringsLogical())
}
#' @export
#' @rdname hasType
hasCharacter = function(par.set) {
assertClass(par.set, "ParamSet")
hasSomeParamsOfTypes(par.set, types = getTypeStringsCharacter())
}
#' @export
#' @rdname hasType
hasNumeric = function(par.set, include.int = TRUE) {
assertClass(par.set, "ParamSet")
hasSomeParamsOfTypes(par.set, types = getTypeStringsNumeric(include.int = include.int))
}
##### helpers
# is at least one of types somewhere in par.set?
hasSomeParamsOfTypes = function(par.set, types) {
any(getParamTypes(par.set, df.cols = FALSE, with.nr = FALSE, use.names = FALSE) %fin% types)
}
# are all param types contained in 'types'
hasAllParamsOfTypes = function(par.set, types) {
all(getParamTypes(par.set, df.cols = FALSE, with.nr = FALSE, use.names = FALSE) %fin% types)
}
|