Used to set a lower-bound budget for all lineups

# S4 method for optimizer
set_min_budget(object, min_budget)

Arguments

object

An optimizer object

min_budget

The minimum budget value

Value

Updated optimizer object

Examples

if (FALSE) {
# Set the minimum budget to 40000
opt <- opt %>%
  set_min_budget(40000)
}