Description Usage Arguments Value Examples
Model to solve the problem of Aircraft Selection and Allocation (ASA) for the containment of a wildfire in a heuristic way.
1 2 | heuristic_model(data, M_prime = 1e+06, niters = 10, solver = "gurobi",
solver_params = list(TimeLimit = 600, OutputFlag = 0), verbose = 0)
|
data |
a list with the needed information about aircrafts and wildfire. For more information see |
M_prime |
penalization for the breach of the minimum aircrafts on a wildfire. |
niters |
maximum number of iterations. |
solver |
solver name, 'gurobi', 'Rsymphony' or 'lpSolve'. |
solver_params |
list of gurobi options. Defaults to list(TimeLimit=600, OutputFlag = 0). |
verbose |
logging level information. If 0 no information. |
information about the selection and allocation of the aircrafts.
1 2 | data <- example_data()
asa::heuristic_model(data, solver="lpSolveAPI")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.