This is my first time to solve the minmax problem, I also read the following discussion:
How to approach a minmax problem?
My problem is
\begin{equation} \begin{aligned} & {\underset{w_i,\ \ \ \ \ x_i}{\max\min}} & & w_1(x_2-x_1)^2+w_2(x_3-x_2)^2 \\ & \text{s.t.} & & w_1+w_2=1 \\ & & & x_1+x_2+x_3 = 0\\ & & & x_1^2+x_2^2+x_3^3 = 1 \end{aligned} \end{equation}
Assume I know how to solve the problem if $w_i$ for all $i$ are given. Then is there any suggested methods to solve this problem based on this assumption.