-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for the extended bi-objective BBOB #146
Conversation
The extended bi-objective BBOB adds FIDs 56-92. Resolves Issue jakobbossek#140
Thanks Lennart! That’s great. |
I added some simple tests that run through in moofuns_test.R similar to the BBOB functions in soofuns_test.R. Do you have any additional tests in mind I should add? Cheers |
R/makeBiObjBBOBFunction.R
Outdated
@@ -25,6 +26,8 @@ | |||
#' for a detailed description of the bi-objective BBOB functions. | |||
#' An overview of which pair of single-objective BBOB functions creates | |||
#' which of the 55 bi-objective BBOB functions can be found \href{http://numbbo.github.io/coco-doc/bbob-biobj/functions/#the-bbob-biobj-test-functions-and-their-properties}{here}. | |||
#' A full description of the extended suite with 92 functions can be found | |||
#' \href{http://numbbo.github.io/coco-doc/bbob-biobj/functions/#the-extended-bbob-biobj-ext-test-suite-and-its-functions}{here}. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add "speaking links", i.e., ... can be found in the official documentation.
R/makeBiObjBBOBFunction.R
Outdated
for (group in list(1L:5L, 6L:9L, 10L:14L, setdiff(15L:19L, 16L), 20L:24L)) { | ||
group.grid = expand.grid(fids1 = group, fids2 = group) | ||
group.grid = group.grid[group.grid[, 1L] < group.grid[, 2L], ] | ||
group.grid = group.grid[order(group.grid[, 1L]),] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add a whitespace after the last comma
Thanks! Merged. |
The extended bi-objective BBOB adds FIDs 56-92. Resolves Issue #140