Can someone explain me the function of the parameter "adjusted", which calls e.g. getAdjustmentExponent(), for lower, upper, weights,... in the class ModelEntity of the ojalgo package? I can understand the function if it should improve the numerical performance but I cannot understand why the constraints are adjusted like this:
Problem to compute:
min 2x+y
s.t. x+y=3,
0<=x<=3.0,
0<=y<=0.05 <--
into ojalgo problem
min 2x+y
s.t. x+y=3
0<=x<=3.0
0<=y<=0.5 <--
Is this a bug or do I overlook something?