How to enforce the optimization solver to include some particular x's
2 次查看(过去 30 天)
显示 更早的评论
I am working on Mixed-Integer Linear Programming problem using "intlinprog" solver. I want the solver to include some places (let's say place x1) in its solution and find the optimal placement for the rest of the nodes. So, the final solution (x) of the optimization is expected to include some particular x's specified before running the solver as an array. Any way to do so? Thanks
0 个评论
回答(1 个)
Alan Weiss
2016-12-12
You have some problem formulation in mind that includes a set of "places" or nodes. I suggest that you remove the variables that you want to have at fixed values, and optimize over the rest. That means that you will have to write your objective function to include the fixed places.
If this is too hard, then you can set lower and upper bounds to be equal at the fixed places.
Alan Weiss
MATLAB mathematical toolbox documentation
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Problem-Based Optimization Setup 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!