0

Using R, I am running a mixed integer optimization which uses the ECOS_BB solver option when using the standard solve or psolve functions for CVXR.

How can I set the max iterations? I have looked everywhere. None of the ECOS_BB native options do anything when I add them to the function call.

I am using version 0.99-3.

Jens
  • 6,173
  • 2
  • 24
  • 43

1 Answers1

0

With the current CVXR 1.0.1 on CRAN, you can use num_iter for all solvers.

result <- solve(problem, num_iter = 1000)

Five common options are documented in Dealing with Solver-specific Parameters but the documentation needs further improvement.