gpt4 book ai didi

c++ - 如何调用复杂求解器?

转载 作者:行者123 更新时间:2023-11-28 08:05:45 26 4
gpt4 key购买 nike

我正在写一个算法 c++我有一个主问题和一个子问题。所以我两次调用 cplex 求解器。第一次是我称之为解决主要问题,这是我的代码:

IloModel model_master(env);

definition of obj and constraints

IloCplex cplex_master(env);
cplex_master.extract(model_master);
cplex_master.setParam(IloCplex::EpGap,0.0001);
cplex_master.solve();
LB=cplex_master.getObjValue();

但是没用!当我把 cout<<"1" << endl;IloCplex cplex_master(env); 之后它不打印它。

最佳答案

将函数调用包装在 try/catch block 中。

try {
// ...
} catch (IloException &ex) {
cerr << ex << endl;
}

您可能没有在尝试运行 cplex 的机器上设置 Ilm key 。

关于c++ - 如何调用复杂求解器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10327340/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com