When you iteratively call cvxpy.Variables()
like
import cvxpy
x = cvxpy.Variable(3)
y = cvxpy.Variable(7)
and then print the internal representation
>>> print x
var3
when repeated several times, the index increases
>>> print x
var121
How to free the memory occupied by the generated variables?