Nothing
#' @title Get ids of problems in registry.
#'
#' @description
#' Get problem ids for jobs.
#'
#' @param reg [\code{\link{ExperimentRegistry}}]\cr
#' Registry.
#' @param ids [code{integer}]\cr
#' Job ids to restrict returned problem ids to.
#' @return [\code{character}].
#' @family get
#' @export
getProblemIds = function(reg, ids) {
checkExperimentRegistry(reg, strict = TRUE, writeable = FALSE)
if (missing(ids))
return(dbGetAllProblemIds(reg))
checkIds(reg, ids)
unique(dbGetProblemIds(reg, ids))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.