我无法在名为dist的示例中运行通过apt-get安装的GLPK求解器(glpsol)。它引发以下内容:

$ glpsol dist.mod
GLPSOL: GLPK LP/MIP Solver, v4.60
Parameter(s) specified in the command line:
 dist.mod
Reading problem data from 'dist.mod'...
dist.mod:1: invalid indicator record
MPS file processing error

编辑:使用-m运行会返回不同的错误:
172 lines were read
Generating cost...
dist.mod:103: fact contains w02 which not within specified set; see (1)
MathProg model processing error

最佳答案

您必须指定以哪种符号编写模型文件(GLPK支持多种问题格式)。
默认情况下,它尝试读取一个freemps-problem-file,但在示例mathprog-problem-file上失败。

尝试使用glpsol -m dist.mod处理mathprog示例。

关于ubuntu - 示例中的GLPK无效指示器错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41066509/

10-15 07:57