Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 C# api。给定一个 gurobi 模型
GRBModel model = new GRBModel(env);
在填充约束、给出目标函数并执行之后
model.Optimize();
有没有办法确定模型是否可行?
求解模型后需要查看优化状态码。在大多数情况下,您只需要测试状态是否为OPTIMAL。例如,mip2_cs.cs在examples\c#子目录中查看。
OPTIMAL
mip2_cs.cs
examples\c#