Skip to main content
Solved

How to adjust solving precision


Forum|alt.badge.img+4

Hi, when I solve an optimization problem (which is convex), though there should be only one optimum solution theoretically, I can get nearly the same objective value but totally different decision variables under different solvers and even within the same solver under multi run.

Now I want to reduce the precision on the variables. Currently the continuous variables may search into 20 digits after the decimal point, how can I limit it into maybe the first two digits after the decimal point? Can AIMMS do this?

Thanks a lot.

Best answer by Marcel Hunting

Hi @Chunyang. Convex optimization problems can have multiple optimal solutions having the same objective value. For example:

min (x+y)^2

s.t. x + y = 1

You cannot instruct solvers to optimize variables for only x digits. Solvers have options for changing the convergence tolerance (for the barrier algorithm), or the feasibility tolerance (for the simplex algorithm) but that way you cannot (indirectly) tell the solver to optimize variables for only x digits.

View original

2 replies

Marcel Hunting
AIMMSian
Forum|alt.badge.img+4

Hi @Chunyang. Convex optimization problems can have multiple optimal solutions having the same objective value. For example:

min (x+y)^2

s.t. x + y = 1

You cannot instruct solvers to optimize variables for only x digits. Solvers have options for changing the convergence tolerance (for the barrier algorithm), or the feasibility tolerance (for the simplex algorithm) but that way you cannot (indirectly) tell the solver to optimize variables for only x digits.


Forum|alt.badge.img+4
  • Author
  • Enthusiast
  • 18 replies
  • August 7, 2023
Marcel Hunting wrote:

Hi @Chunyang. Convex optimization problems can have multiple optimal solutions having the same objective value. For example:

min (x+y)^2

s.t. x + y = 1

You cannot instruct solvers to optimize variables for only x digits. Solvers have options for changing the convergence tolerance (for the barrier algorithm), or the feasibility tolerance (for the simplex algorithm) but that way you cannot (indirectly) tell the solver to optimize variables for only x digits.

Thanks a lot.