简体   繁体   English

SCIP_NodeType中值的含义

[英]Meaning of values in SCIP_NodeType

Is there a combination of parameter settings so that the search tree only contains "simple" node types, ie not SCIP_NODETYPE_{PROBINGNODE, DEADEND, JUNCTION, PSEUDOFORK, FORK, SUBROOT, REFOCUSNODE} ? 是否有参数设置的组合,以便搜索树仅包含“简单”节点类型,即不SCIP_NODETYPE_{PROBINGNODE, DEADEND, JUNCTION, PSEUDOFORK, FORK, SUBROOT, REFOCUSNODE} Even if it means disabling some functionality. 即使这意味着禁用某些功能。

I'm also not really sure about what the different node types really mean, so any pointers to documentation would also be very useful. 我也不太确定不同节点类型的真正含义,因此任何指向文档的指针也将非常有用。

The meaning of the different node types is explained here . 此处解释了不同节点类型的含义。 If you have a closer look, you will understand that those types reflect the internal organization of the tree. 如果仔细观察,您将了解到这些类型反映了树的内部组织。 They necessarily occur during tree search and cannot be skipped via parameters. 它们必须在树搜索期间发生,并且不能通过参数跳过。

If you insist: setting limits/nodes = 1 will process only the root node of SCIP, and the tree will only consist of a focus node and its 2 children. 如果您坚持认为:设置limits/nodes = 1将仅处理SCIP的根节点,并且该树将仅包含焦点节点及其2个子节点。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM