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
// Find the most negative coefficient in the objective function (ignoring// the non-pivotable dummy variables). If all coefficients are positive// we're doneterms.escapingEach(function(v,c){if(v.isPivotable&&c<objectiveCoeff){objectiveCoeff=c;entryVar=v;// Break on successreturn{brk: 1};}},this);
Unless I'm misreading the code, this find the first negative coefficient and then breaks, not the most negative coefficient.
The text was updated successfully, but these errors were encountered:
Lines 758-768 of SimplexSolver.js read like this:
Unless I'm misreading the code, this find the first negative coefficient and then breaks, not the most negative coefficient.
The text was updated successfully, but these errors were encountered: