Page 1 of 1

How to set node limit for SBB?

Posted: Sun Aug 13, 2017 9:36 pm
by CanLi
Hi folks,

I'm using SBB to solve a convex MINLP problem. I need to set the node limit to a large number. I use the syntax
option NodLim=100000000000;
However, GAMS says it is an unknown option. Does anyone knows how this works?
Thanks in advance.

Can

Re: How to set node limit for SBB?

Posted: Mon Aug 14, 2017 10:29 am
by bussieck
NodLim cannot be set by a global option, you need to do it through a model suffix. See https://www.gams.com/24.9/docs/UG_Model ... Attributes

Code: Select all

mymodel.nodlim = 1e6;
solve mymodel min obj using MINLP;
Hope this helps,
Michael

Re: How to set node limit for SBB?

Posted: Mon Aug 14, 2017 3:43 pm
by CanLi
Thanks!