This repository has been archived by the owner on Dec 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
broken when switching from quadratic to linear objective #26
Comments
What kind of "mayhem" exactly? |
getobjectivevalue(m) = 3.0489213312228895e-9
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="OSrL.xslt"?>
<osrl xmlns="os.optimizationservices.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="os.optimizationservices.org http://www.optimizationservices.org/schemas/2.0/OSrL.xsd" >
<general>
<generalStatus type="error">
</generalStatus>
<message>syntax error, unexpected ENDOFELEMENT, expecting GREATERTHAN</message>
</general>
</osrl>
WARNING: /home/mlubin/.julia/v0.5/CoinOptServices/.osil/results.osrl is empty
WARNING: Not solved to optimality, status: Error
getobjectivevalue(m) = 3.0489213312228895e-9
|
This seems like a related issue: using JuMP, CoinOptServices
m = Model(solver=OsilBonminSolver())
@variable(m, 0 <= v <= 2)
@variable(m, 1 <= x <= 5)
@constraint(m, v >= 0.0 * x^2 + x)
@objective(m, Min, v)
status = solve(m)
println("Objective value: ", getobjectivevalue(m)) gives
|
What does the osil file look like? |
I don't have any need for this to work, but I'll be disabling CoinOptServices in the default JuMP tests until it passes. |
Is there a way of doing that while still allowing them to run if included here? I don't have this package installed locally at the moment. Can you gist the problemantic .osil/problem.osil files? |
Ref jump-dev/JuMP.jl#901 for running JuMP's tests for this solver only |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The following test causes all sorts of mayhem after the fix in jump-dev/JuMP.jl#898
The text was updated successfully, but these errors were encountered: