I want to optimize a function w.r.t. $n$ circles parametrized by centers and radii:
$$\min_{C, R} f(C,R)$$
where $C\in\mathbb R^{n \times 2}$ and $R\in\mathbb R^n$. For example,
C[1,1]: x-coordinate of the first circle
C[1,2]: y-coordinate of the first circle
R[1] : radius of the first circle
While optimizing, I want to impose a constraint that those circles do not collide with each other. Anyone to help with this?
The constraint is as in https://stackoverflow.com/a/8367547
– Abdullah Ali Sivas Mar 10 '20 at 15:04