1

非常基本的问题,但是我在哪里可以找到 Pyomo 的求解器日志文件?我在 Ubuntu 机器上本地安装了 COIN-OR 求解器。

这发生在 Jupyter 笔记本中,但是当我从终端运行 .py 文件时,我收到了相同的错误消息。

solverpath_exe='~/COIN-OR/bin/couenne' 
opt = SolverFactory('couenne', executable = solverpath_exe)
opt.solve(model,tee=True) 

---------------------------------------------------------------------------
ApplicationError                          Traceback (most recent call last)
<ipython-input-41-48380298846e> in <module>()
     29 #instance = model.create_instance()
     30 opt = SolverFactory('couenne', executable = solverpath_exe)
---> 31 opt.solve(model,tee=True)
     32 #solver=SolverFactory(solvername,executable=solverpath_exe)

/home/ralphasher/.local/lib/python3.6/site-packages/pyomo/opt/base/solvers.py in solve(self, *args, **kwds)
    598                     logger.error("Solver log:\n" + str(_status.log))
    599                 raise pyutilib.common.ApplicationError(
--> 600                     "Solver (%s) did not exit normally" % self.name)
    601             solve_completion_time = time.time()
    602             if self._report_timing:

ApplicationError: Solver (asl) did not exit normally

4

1 回答 1

2

要保留求解器日志文件,您需要指定在调用模型求解时要保留它们。

opt.solve(model, tee=True, keepfiles=True)

生成的文件将位于您的主要可执行文件旁边。

您还可以使用特定名称记录文件

opt.solve(model, tee=True, logfile="some_file_name.log")
于 2019-06-17T16:30:11.457 回答