This is because this would cause an infinite recursion, and cannot be efficiently implemented.
That would be something like
u_1= u_5+ 2*u_10,
u_1=u_3-u_4
Which can be reduced to
u_3 = u_5 + 2 u_10 + u_4.
Thus you should set up this constraint, instead of trying to do this implicitly.
This also comes back to the fact that checking every constraint for other potential constraints that would modify an already set constraint is very inefficient.