-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is no semicolon (;) in the STARTING_POINT of FileName.bar generated by Julia. #76
Comments
BARON version 24.5.8 |
Does BARON work, or does it throw an error? |
I also noticed this issue. The BARON devs said there should be a semicolon, but the parser wouldn't complain (it just seems to ignore the starting point). Once you add the semicolon, BARON promts feasiblity of the starting point during presolve. |
Ah, I guess this is why the tests did not catch the issue 😄 I will fix after #78 |
Much appreciated! ☺ |
Thanks. Just throw the error in Line of STARTING_POINT. And it does not impact the results. |
Hello,
Thanks very much for your working.
Here, i want to pull a issue that there is no semicolon (;) in the STARTING_POINT of FileName.bar generated by Julia.
Like this :
STARTING_POINT{
x1: 5.0
x2: 14.0
x3: 1.3333333333333333
}
And you known this is wrong. The right is
STARTING_POINT{
x1: 5.0;
x2: 14.0;
x3: 1.3333333333333333;
}
Thanks very much.
The text was updated successfully, but these errors were encountered: