diff --git a/DESCRIPTION b/DESCRIPTION index 1d86af31..bb854ecd 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -64,7 +64,7 @@ Encoding: UTF-8 Language: en-US NeedsCompilation: no Roxygen: list(markdown = TRUE) -RoxygenNote: 7.1.1 +RoxygenNote: 7.1.2 Collate: 'Archive.R' 'ArchiveBest.R' diff --git a/R/helper.R b/R/helper.R index 137d44df..4386bda0 100644 --- a/R/helper.R +++ b/R/helper.R @@ -11,8 +11,7 @@ terminated_error = function(optim_instance) { #' @title Calculate which points are dominated #' @description -#' Calculates which points are not dominated, -#' i.e. points that belong to the Pareto front. +#' Returns which points from a set are dominated by another point in the set. #' #' @param ymat (`matrix()`) \cr #' A numeric matrix. Each column (!) contains one point. diff --git a/man/is_dominated.Rd b/man/is_dominated.Rd index d3931de2..0315d104 100644 --- a/man/is_dominated.Rd +++ b/man/is_dominated.Rd @@ -11,6 +11,5 @@ is_dominated(ymat) A numeric matrix. Each column (!) contains one point.} } \description{ -Calculates which points are not dominated, -i.e. points that belong to the Pareto front. +Returns which points from a set are dominated by another point in the set. }