I'm looking for ways to generate test problems for simplex-method linear programming solvers
(A x <= b, x >= 0)
that have many vertices, so (I believe) would make difficult test problems.
There's quite a bit of theory that looks relevant, e.g. How many vertices can a convex polytope have? But I don't see how to turn this into code for A b -- I don't need all the vertices, and Vertex enumeration would explode memory anyway.
For example, a 1000 x 1000 assignment problem gives a sparse 2k x 1m A matrix with 2m non-zeros. GLPK simplex solves this in 34 seconds -- not much of a test case.