简体   繁体   中英

Facility location Optimization packages for R?

I am trying to solve a optimization problem. How can i find facility location optimization packages in R? Could anyone can help me about it?

Facility location problems are often optimized using mixed integer programming (MIP).

See the optimization packages ROI: http://roi.r-forge.r-project.org/

and ompr: https://dirkschumacher.github.io/ompr/

You can formulate MIP optimization models directly in ROI. ROI can link to a collection of solvers. ompr is a model management package for building models. It then calls ROI functions for solving. Model construction using ompr is somewhat easier that using ROI only.

Here is an example warehouse location model formulated using ompr and the glpk solver:

https://dirkschumacher.github.io/ompr/articles/problem-warehouse-location.html

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM