get_constraints {restoptr} | R Documentation |
Retrieve the constraints of a restopt problem.
Description
Retrieve the constraints of a restopt problem.
Usage
get_constraints(problem)
Arguments
problem |
|
Value
list
The constraints of the restopt problem.
Examples
#' # load data
habitat_data <- rast(
system.file("extdata", "habitat_hi_res.tif", package = "restoptr")
)
# create problem
problem <- restopt_problem(
existing_habitat = habitat_data,
aggregation_factor = 4,
habitat_threshold = 0.7
)
get_constraints(problem)
[Package restoptr version 1.0.6 Index]