NMinimize::incst
NMaximize::incst
A warning is generated because NMinimize uses a starting value that does not satisfy the constraint:
NMinimize[{x^2, x^2 ≥ 1}, {x}]
This error can typically be avoided by providing starting values for the variable:
NMinimize[{x^2, x^2 ≥ 1}, {x, 1, 2}]