作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我刚刚继承了一段代码,它使用 OR 工具解决了一个混合整数规划问题。将 OR 工具集成到 VS 2019 本身就是一件令人头疼的事情(好吧,我不太习惯 C++)。现在程序正在运行,但我得到:
Access violation reading location 0x0000000000000020
根据调试器,看起来 solver.MutableObjective()
正在返回 null。
MakeRowConstraint
等其他函数似乎工作正常,但它们不会返回 null。知道发生了什么事吗?可能是我在安装库时配置错误吗?
MPSolver solver("simple_mip_program", MPSolver::SCIP_MIXED_INTEGER_PROGRAMMING);
//...
MPObjective* FObj = solver.MutableObjective(); // <-- NULL
//therefore the below throws exception.
//The arrays `variables` and `F` are populated as expected
for (int i = 0; i < n; i++) FObj->SetCoefficient(variables[i], F[i]);
FObj->SetMaximization();
编辑:更多细节,我在 Windows 10 和 Visual Studio 2019 上使用 ORTools 64bit_v8.1.8487。
我还尝试运行 sample MIP problem from GitHub , 并且在第 54 行出现了同样的错误。
最佳答案
我有完全相同的设置:ORTools 64bit_v8.1.8487,在 Windows 10 和 Visual Studio 2019 上。
要重现问题,请在 Visual Studio 2019 中运行示例代码“examples/cpp/linear_programming_example.cc”。(属性中包含 .lib 和 includes/。)
我通过-解决问题-
关于c++ - OR 工具 C++ : solver. MutableObjective() 返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66020741/
我是一名优秀的程序员,十分优秀!