Given this problem for instance:
$$\begin{array}{ll} \text{maximize} & 0 x_1 + 0 x_2 + 0 x_3\\ \text{subject to} & x_1 + 3x_2 + 2x_3 = 3\\ & 2x_1 + 7x_2 + x_3 = 4\\ & 3x_1 + x_2 + 2x_3 = 5\\ & x_1, x_2, x_3 \geq 0\end{array}$$
I know how to use Simplex in general using tableau method to solve standard linear programming problems. How would I set up my initial tableau here, if my objective function is zero?
Using CVXPY to solve the linear program:
A feasible solution is
Using SymPy to perform Gaussian elimination on the augmented matrix:
which is a nonnegative $3$-vector and, thus, admissible. Note that this solution is unique.