How to set node limit for SBB? Topic is solved

Solver related questions
Post Reply
CanLi
User
User
Posts: 4
Joined: 6 years ago

How to set node limit for SBB?

Post 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
User avatar
bussieck
Moderator
Moderator
Posts: 1033
Joined: 7 years ago

Re: How to set node limit for SBB?

Post 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
CanLi
User
User
Posts: 4
Joined: 6 years ago

Re: How to set node limit for SBB?

Post by CanLi »

Thanks!
Post Reply