简体   繁体   English

R 的设施位置优化包?

[英]Facility location Optimization packages for R?

I am trying to solve a optimization problem.我正在尝试解决优化问题。 How can i find facility location optimization packages in R?如何在 R 中找到设施位置优化包? Could anyone can help me about it?任何人都可以帮助我吗?

Facility location problems are often optimized using mixed integer programming (MIP).设施位置问题通常使用混合 integer 编程 (MIP) 进行优化。

See the optimization packages ROI: http://roi.r-forge.r-project.org/查看优化包 ROI: http://roi.r-forge.r-project.org/

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

You can formulate MIP optimization models directly in ROI.您可以直接在 ROI 中制定 MIP 优化模型。 ROI can link to a collection of solvers. ROI 可以链接到一组求解器。 ompr is a model management package for building models. ompr 是用于构建模型的 model 管理 package。 It then calls ROI functions for solving.然后它调用 ROI 函数进行求解。 Model construction using ompr is somewhat easier that using ROI only.使用 ompr 构建 Model 比仅使用 ROI 更容易一些。

Here is an example warehouse location model formulated using ompr and the glpk solver:这是使用 ompr 和 glpk 求解器制定的示例仓库位置 model:

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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