Collection of single objective optimization test problems for R.
Run this in R to install the current GitHub version (requires the devtools
package):
library("devtools")
install_github("opsani/soobench")
If you make changes, before you submit a PR, please help me out by running
./do check
to ensure the changes will be accepted by the CRAN team.
To check using the gcc10 -fno-common
requirement,
use
withr::with_makevars(
c(
"CFLAGS"="-Wall -pedantic -fdiagnostics-color=always -fno-common"
),
devtools::check()
)