|
|
 | | From: | Donghui Zheng | | Subject: | How can I avoid "Node limit exceed" in GAMS | | Date: | Sat, 11 Dec 2004 22:28:52 -0000 |
|
|
 | I used GAMS to solve my MINLP model. But after 999 nodes, it displayed "Node limit exceed". How can I avoid it?
Regard, Donghui
|
|
 | | From: | Erwin Kalvelagen | | Subject: | Re: How can I avoid "Node limit exceed" in GAMS | | Date: | Sat, 11 Dec 2004 23:02:37 GMT |
|
|
 | I assume you are using SBB? In that case you can use the NODLIM model suffix to increase the node limit. E.g.:
model m /all/; m.nodlim = 100000; solve m minimizing z using minlp;
Note: the best place to get GAMS support is to send an e-mail to support@gams.com, or to use the GAMS mailing list (http://www.gams.com/maillist/gams_l.htm).
---------------------------------------------------------------- Erwin Kalvelagen GAMS Development Corp., http://www.gams.com erwin@gams.com, http://www.gams.com/~erwin ----------------------------------------------------------------
On Sat, 11 Dec 2004 22:28:52 +0000, Donghui Zheng wrote:
> I used GAMS to solve my MINLP model. > But after 999 nodes, it displayed "Node limit exceed". How can I avoid it? > > Regard, > Donghui
|
|
 | | From: | Donghui Zheng | | Subject: | Re: How can I avoid "Node limit exceed" in GAMS | | Date: | Sun, 12 Dec 2004 00:59:17 -0000 |
|
|
 | Thanks alot! Regards, Donghui
"Erwin Kalvelagen" news:pan.2004.12.11.23.02.35.134213@gams.com... > > I assume you are using SBB? In that case you can use the > NODLIM model suffix to increase the node limit. E.g.: > > model m /all/; > m.nodlim = 100000; > solve m minimizing z using minlp; > > Note: the best place to get GAMS support is to send an > e-mail to support@gams.com, or to use the GAMS mailing > list (http://www.gams.com/maillist/gams_l.htm). > > ---------------------------------------------------------------- > Erwin Kalvelagen > GAMS Development Corp., http://www.gams.com > erwin@gams.com, http://www.gams.com/~erwin > ---------------------------------------------------------------- > > On Sat, 11 Dec 2004 22:28:52 +0000, Donghui Zheng wrote: > > > I used GAMS to solve my MINLP model. > > But after 999 nodes, it displayed "Node limit exceed". How can I avoid it? > > > > Regard, > > Donghui >
|
|
|