You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We just noticed that String.format in MpsAssignmentWriter is dependent on the system locale. So on a French system, decimal numbers will be written out with a , instead of . as decimal separator. This, in turn, lets GLPK or Cbc fail because it is not a valid problem. Need to replace the calls to String.format by String.format(Locale.ENGLISH, ...).
The text was updated successfully, but these errors were encountered:
We just noticed that
String.format
inMpsAssignmentWriter
is dependent on the system locale. So on a French system, decimal numbers will be written out with a,
instead of.
as decimal separator. This, in turn, lets GLPK or Cbc fail because it is not a valid problem. Need to replace the calls toString.format
byString.format(Locale.ENGLISH, ...)
.The text was updated successfully, but these errors were encountered: