Can SCS Indirect Solver be invoked under CVX 3.0beta?

SCS comes with both direct and indirect solver options. Specifically, under WIN64, I have scs_direct.mexw64 and scs_indirect.mexw64 , and scs_direct.m and scs_indirect.m .

cvx_solver scs invokes the direct solver. Is it possible to invoke the indirect solver under 3.0beta, Build 1172?

Thanks.

I believe this is controlled by a solver setting. Assuming that SCS is your currently selected solver, you can try this:

cvx_solver_settings('use_indirect',true);

Yes, thanks, that works.