How do you avoid cycling in a linear programming problem?

1.1k Views Asked by At

When running the simplex method on a linear programming problem that cycles The only thing I can think of to avoid cycling is to stop running it when the same dictionary appears twice? however i'm not to convinced.

Any help would be greatly appreciated.

1

There are 1 best solutions below

0
On

One possibility is to switch to Bland's Rule temporarily whenever you have a sequence of degenerate pivots; as soon as you get a nondegenerate pivot (if that happens before the algorithm terminates), you can switch back to your normal pivot selection rules.