Skip to content

Commit

Permalink
* R/race.R: fix false assert failure.
Browse files Browse the repository at this point in the history
  • Loading branch information
MLopez-Ibanez committed Mar 3, 2024
1 parent 94c6986 commit b117347
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/race.R
Original file line number Diff line number Diff line change
Expand Up @@ -1065,7 +1065,7 @@ elitist_race <- function(maxExp = 0,
vtimes,
if (is.null(final.bounds)) NA else final.bounds[which.exe]))

irace.assert(anyDuplicated(experimentLog[, c("instance", "configuration")]) == 0L,
irace.assert(anyDuplicated(experimentLog[, c("instance", "configuration"), drop = FALSE]) == 0L,
eval.after = {
print(experimentLog)
print(mget(ls()))
Expand Down

0 comments on commit b117347

Please sign in to comment.