Skip to content

Commit 1007f0b

Browse files
authored
Merge pull request #153 from louisaslett/master
Fix documentation errors for CRAN
2 parents 4a10acb + 84b9ae0 commit 1007f0b

File tree

181 files changed

+258
-192
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

181 files changed

+258
-192
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ Suggests:
4848
covr
4949
ByteCompile: yes
5050
LinkingTo: Rcpp, RcppArmadillo
51-
RoxygenNote: 7.2.3
51+
RoxygenNote: 7.3.3
5252
Encoding: UTF-8

R/addCountingWrapper.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#' @title
2-
#' Return a function which counts its function evaluations.
2+
#' Return a function which counts its function evaluations
33
#'
44
#' @description
55
#' This is a counting wrapper for a \code{smoof_function}, i.e., the returned function

R/addLoggingWrapper.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#' @title
2-
#' Return a function which internally stores x or y values.
2+
#' Return a function which internally stores x or y values
33
#'
44
#' @description
55
#' Often it is desired and useful to store the optimization path, i.e., the evaluated

R/computeExpectedRunningTime.R

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
#' @title
2-
#' Compute the Expected Running Time (ERT) performance measure.
2+
#' Compute the Expected Running Time (ERT) performance measure
33
#'
44
#' @description
55
#' The functions can be called in two different ways
66
#' \itemize{
7-
#' \item{1. Pass a vector of function evaluations and a logical vector which
8-
#' indicates which runs were successful (see details).}
9-
#' \item{2. Pass a vector of function evaluation, a vector of reached target
7+
#' \item 1. Pass a vector of function evaluations and a logical vector which
8+
#' indicates which runs were successful (see details).
9+
#' \item 2. Pass a vector of function evaluation, a vector of reached target
1010
#' values and a single target value. In this case the logical vector of
11-
#' option 1. is computed internally.}
11+
#' option 1. is computed internally.
1212
#' }
1313
#'
1414
#' @details The Expected Running Time (ERT) is one of the most popular performance

R/conversion.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#' @title
2-
#' Conversion between minimization and maximization problems.
2+
#' Conversion between minimization and maximization problems
33
#'
44
#' @description
55
#' We can minimize f by maximizing -f. The majority of predefined objective functions

R/doesCountEvaluations.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#' @title
2-
#' Check whether the function is counting its function evaluations.
2+
#' Check whether the function is counting its function evaluations
33
#'
44
#' @description
55
#' In this case, the function is of type \code{smoof_counting_function} or it

R/filterFunctionsByTags.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#' @title
2-
#' Get a list of implemented test functions with specific tags.
2+
#' Get a list of implemented test functions with specific tags
33
#'
44
#' @description
55
#' Single objective functions can be tagged, e.g., as unimodal. Searching for all

R/getAvailableTags.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#' @title
2-
#' Returns a character vector of possible function tags.
2+
#' Returns a character vector of possible function tags
33
#'
44
#' @description
55
#' Test function are frequently distinguished by characteristic high-level properties,

R/getBoxConstraints.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#' Returns lower box constraints for a Smoof function.
1+
#' Returns lower box constraints for a Smoof function
22
#'
33
#' @template arg_smoof_function
44
#' @return [\code{numeric}]
@@ -18,7 +18,7 @@ getLowerBoxConstraints.smoof_wrapped_function = function(fn) {
1818
return(getLowerBoxConstraints(getWrappedFunction(fn)))
1919
}
2020

21-
#' Return upper box constaints.
21+
#' Return upper box constraints
2222
#'
2323
#' @template arg_smoof_function
2424
#' @return [\code{numeric}]

R/getDescription.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#' Returns the description of the function.
1+
#' Returns the description of the function
22
#'
33
#' @template arg_smoof_function
44
#' @return [\code{character(1)}]

0 commit comments

Comments
 (0)