I'm not sure it's gonna be useful or even work.
If you set a constraint like that you might end up making the model
unfeasible. Just picture that Aimms sets the bound at A (any value)
and you set a constraint that the equation to minimize has to be under
B. If B < A then the model is infeasible and if A < B then the new
constraint is useless.
What I can suggest you to make it faster (with out improving the
model) is to configure a tolerance for the optimization. This way you
won’t get ‘the optimal solution’ but it might be as good.
Another option is to set intervals but not objective function but to
the variables. This will also get you a non-optimal solution if the
intervals are not correct.
In my experience guiding the model by using start with values is only
done when working with non-linear models since you can have local
minimum or maximum. After all we use these tools so that we don’t need
to solve it!
Best,
Mauro.