Skip to content

Commit

Permalink
* R/testing.R: Use rep.int when possible.
Browse files Browse the repository at this point in the history
  • Loading branch information
MLopez-Ibanez committed Dec 9, 2024
1 parent 7c8cd1b commit 8aa203e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/testing.R
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ testConfigurations <- function(configurations, scenario)
# Create experiment list
experiments <- createExperimentList(configurations, parameters = scenario$parameters,
instances = testInstances, instances_ID = instances_id, seeds = instanceSeed,
bounds = rep(scenario$boundMax, nrow(configurations)))
bounds = rep.int(scenario$boundMax, nrow(configurations)))
race_state <- RaceState$new(scenario)
if (scenario$debugLevel >= 3L) {
irace.note ("Memory used before execute_experiments() in testConfigurations():\n")
Expand Down

0 comments on commit 8aa203e

Please sign in to comment.