action_names {oppr} | R Documentation |
Action names
Description
Extract the names of the actions in an object.
Usage
action_names(x)
## S4 method for signature 'ProjectProblem'
action_names(x)
Arguments
x |
Value
character
action names.
Examples
# load data
data(sim_projects, sim_features, sim_actions)
# build problem with default solver
p <- problem(sim_projects, sim_actions, sim_features,
"name", "success", "name", "cost", "name") %>%
add_max_richness_objective(budget = 200) %>%
add_binary_decisions() %>%
add_default_solver()
# print problem
print(p)
# print action names
action_names(p)
[Package oppr version 1.0.4 Index]