0
是否可以通過預編譯的二進制文件(交互式shell)解決QP?SCIP:通過交互式shell解決QP
我試了幾個樣品,沒有工作。我錯過了什麼?
Minimize
obj: a + b + [ a^2 + 4 a * b + 7 b^2 ]
Subject To
c1: a + b >= 10
End
在這其中,我得到以下信息:
[src/scip/reader_lp.c:147] ERROR: Syntax error in line 3 ('Subject'): expected '/2' or '/ 2' after end of quadratic part in objective.
input: Subject To
^
[src/scip/reader_lp.c:3362] ERROR: Error <-2> in function cal
又如:
Maximize
obj: x1 + 2 x2 + 3 x3 + x4
Subject To
c1: - x1 * x3 + x2 + x3 + 10 x4 <= 20
c2: x1 - 3 x2 + x3 <= 30
c3: x2 - 3.5 x4 = 0
Bounds
0 <= x1 <= 40
2 <= x4 <= 3
General
x4
End
,這裏是輸出味精這裏:
[src/scip/reader_lp.c:147] ERROR: Syntax error in line 4 ('x3'): expected sign ('+' or '-') or sense ('<' or '>').
input: c1: - x1 x3 + x2 + x3 + 10 x4 <= 20
^
[src/scip/reader_lp.c:3362] ERROR: Error <-2> in function call
error reading file <sample.lp>
很棒的建議! Quadratics現在可以工作! – Daniel