Home
last modified time | relevance | path

Searched refs:nodesel (Results 1 – 25 of 36) sorted by relevance

12

/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dnodesel.c106 (*nodepq)->nodesel = nodesel; in SCIPnodepqCreate()
223 if( (*nodepq)->nodesel == nodesel ) in SCIPnodepqSetNodesel()
290 nodesel = nodepq->nodesel; in SCIPnodepqInsert()
356 nodesel = nodepq->nodesel; in nodepqDelPos()
752 SCIP_CALL( nodesel->nodeselcopy(set->scip, nodesel) ); in SCIPnodeselCopyInclude()
874 SCIP_CALL( (*nodesel)->nodeselfree(set->scip, *nodesel) ); in SCIPnodeselFree()
914 SCIP_CALL( nodesel->nodeselinit(set->scip, nodesel) ); in SCIPnodeselInit()
944 SCIP_CALL( nodesel->nodeselexit(set->scip, nodesel) ); in SCIPnodeselExit()
969 SCIP_CALL( nodesel->nodeselinitsol(set->scip, nodesel) ); in SCIPnodeselInitsol()
993 SCIP_CALL( nodesel->nodeselexitsol(set->scip, nodesel) ); in SCIPnodeselExitsol()
[all …]
H A Dscip_nodesel.c68 SCIP_NODESEL* nodesel; in SCIPincludeNodesel() local
122 if( nodesel != NULL ) in SCIPincludeNodeselBasic()
123 *nodesel = nodeselptr; in SCIPincludeNodeselBasic()
137 assert(nodesel != NULL); in SCIPsetNodeselCopy()
139 SCIPnodeselSetCopy(nodesel, nodeselcopy); in SCIPsetNodeselCopy()
153 assert(nodesel != NULL); in SCIPsetNodeselFree()
155 SCIPnodeselSetFree(nodesel, nodeselfree); in SCIPsetNodeselFree()
169 assert(nodesel != NULL); in SCIPsetNodeselInit()
185 assert(nodesel != NULL); in SCIPsetNodeselExit()
201 assert(nodesel != NULL); in SCIPsetNodeselInitsol()
[all …]
H A Dnodesel.h172 SCIP_NODESEL* nodesel, /**< node selector */
205 SCIP_NODESEL* nodesel, /**< node selector */
211 SCIP_NODESEL* nodesel, /**< node selector */
217 SCIP_NODESEL* nodesel, /**< node selector */
223 SCIP_NODESEL* nodesel, /**< node selector */
229 SCIP_NODESEL* nodesel, /**< node selector */
236 SCIP_NODESEL* nodesel, /**< node selector */
244 SCIP_NODESEL* nodesel, /**< node selector */
251 SCIP_NODESEL* nodesel, /**< node selector */
258 SCIP_NODESEL* nodesel, /**< node selector */
[all …]
H A Dnodesel_restartdfs.c69 assert(nodesel != NULL); in SCIP_DECL_NODESELCOPY()
70 assert(strcmp(SCIPnodeselGetName(nodesel), NODESEL_NAME) == 0); in SCIP_DECL_NODESELCOPY()
84 assert(strcmp(SCIPnodeselGetName(nodesel), NODESEL_NAME) == 0); in SCIP_DECL_NODESELFREE()
87 nodeseldata = SCIPnodeselGetData(nodesel); in SCIP_DECL_NODESELFREE()
90 SCIPnodeselSetData(nodesel, nodeseldata); in SCIP_DECL_NODESELFREE()
102 assert(strcmp(SCIPnodeselGetName(nodesel), NODESEL_NAME) == 0); in SCIP_DECL_NODESELINITSOL()
104 nodeseldata = SCIPnodeselGetData(nodesel); in SCIP_DECL_NODESELINITSOL()
119 assert(strcmp(SCIPnodeselGetName(nodesel), NODESEL_NAME) == 0); in SCIP_DECL_NODESELSELECT()
130 nodeseldata = SCIPnodeselGetData(nodesel); in SCIP_DECL_NODESELSELECT()
178 SCIP_NODESEL* nodesel; in SCIPincludeNodeselRestartdfs() local
[all …]
H A Dpub_nodesel.h43 SCIP_NODESEL* nodesel /**< node selector */
49 SCIP_NODESEL* nodesel /**< node selector */
55 SCIP_NODESEL* nodesel /**< node selector */
61 SCIP_NODESEL* nodesel /**< node selector */
67 SCIP_NODESEL* nodesel /**< node selector */
73 SCIP_NODESEL* nodesel, /**< node selector */
80 SCIP_NODESEL* nodesel /**< node selector */
86 SCIP_NODESEL* nodesel /**< node selector */
92 SCIP_NODESEL* nodesel /**< node selector */
H A Dnodesel_dfs.c48 assert(nodesel != NULL); in SCIP_DECL_NODESELCOPY()
49 assert(strcmp(SCIPnodeselGetName(nodesel), NODESEL_NAME) == 0); in SCIP_DECL_NODESELCOPY()
62 assert(nodesel != NULL); in SCIP_DECL_NODESELSELECT()
63 assert(strcmp(SCIPnodeselGetName(nodesel), NODESEL_NAME) == 0); in SCIP_DECL_NODESELSELECT()
91 assert(nodesel != NULL); in SCIP_DECL_NODESELCOMP()
92 assert(strcmp(SCIPnodeselGetName(nodesel), NODESEL_NAME) == 0); in SCIP_DECL_NODESELCOMP()
127 SCIP_NODESEL* nodesel; in SCIPincludeNodeselDfs() local
130 …SCIP_CALL( SCIPincludeNodeselBasic(scip, &nodesel, NODESEL_NAME, NODESEL_DESC, NODESEL_STDPRIORITY… in SCIPincludeNodeselDfs()
133 assert(nodesel != NULL); in SCIPincludeNodeselDfs()
135 SCIP_CALL( SCIPsetNodeselCopy(scip, nodesel, nodeselCopyDfs) ); in SCIPincludeNodeselDfs()
H A Dnodesel_breadthfirst.c52 assert(nodesel != NULL); in SCIP_DECL_NODESELCOPY()
53 assert(strcmp(SCIPnodeselGetName(nodesel), NODESEL_NAME) == 0); in SCIP_DECL_NODESELCOPY()
65 assert(nodesel != NULL); in SCIP_DECL_NODESELSELECT()
66 assert(strcmp(SCIPnodeselGetName(nodesel), NODESEL_NAME) == 0); in SCIP_DECL_NODESELSELECT()
95 assert(nodesel != NULL); in SCIP_DECL_NODESELCOMP()
96 assert(strcmp(SCIPnodeselGetName(nodesel), NODESEL_NAME) == 0); in SCIP_DECL_NODESELCOMP()
133 SCIP_NODESEL* nodesel; in SCIPincludeNodeselBreadthfirst() local
136 …SCIP_CALL( SCIPincludeNodeselBasic(scip, &nodesel, NODESEL_NAME, NODESEL_DESC, NODESEL_STDPRIORITY… in SCIPincludeNodeselBreadthfirst()
139 assert(nodesel != NULL); in SCIPincludeNodeselBreadthfirst()
142 SCIP_CALL ( SCIPsetNodeselCopy(scip, nodesel, nodeselCopyBreadthfirst) ); in SCIPincludeNodeselBreadthfirst()
H A Dnodesel_xyz.c180 SCIP_NODESEL* nodesel; in SCIPincludeNodeselXyz() local
186 nodesel = NULL; in SCIPincludeNodeselXyz()
200 …SCIP_CALL( SCIPincludeNodeselBasic(scip, &nodesel, NODESEL_NAME, NODESEL_DESC, NODESEL_STDPRIORITY… in SCIPincludeNodeselXyz()
203 assert(nodesel != NULL); in SCIPincludeNodeselXyz()
206 SCIP_CALL( SCIPsetNodeselCopy(scip, nodesel, nodeselCopyXyz) ); in SCIPincludeNodeselXyz()
207 SCIP_CALL( SCIPsetNodeselFree(scip, nodesel, nodeselFreeXyz) ); in SCIPincludeNodeselXyz()
208 SCIP_CALL( SCIPsetNodeselInit(scip, nodesel, nodeselInitXyz) ); in SCIPincludeNodeselXyz()
209 SCIP_CALL( SCIPsetNodeselExit(scip, nodesel, nodeselExitXyz) ); in SCIPincludeNodeselXyz()
210 SCIP_CALL( SCIPsetNodeselInitsol(scip, nodesel, nodeselInitsolXyz) ); in SCIPincludeNodeselXyz()
211 SCIP_CALL( SCIPsetNodeselExitsol(scip, nodesel, nodeselExitsolXyz) ); in SCIPincludeNodeselXyz()
H A Dnodesel_uct.c381 assert(nodesel != NULL); in SCIP_DECL_NODESELINITSOL()
383 nodeseldata = SCIPnodeselGetData(nodesel); in SCIP_DECL_NODESELINITSOL()
399 assert(nodesel != NULL); in SCIP_DECL_NODESELEXITSOL()
401 nodeseldata = SCIPnodeselGetData(nodesel); in SCIP_DECL_NODESELEXITSOL()
425 assert(nodesel != NULL); in SCIP_DECL_NODESELFREE()
427 nodeseldata = SCIPnodeselGetData(nodesel); in SCIP_DECL_NODESELFREE()
435 SCIPnodeselSetData(nodesel, NULL); in SCIP_DECL_NODESELFREE()
452 assert(nodesel != NULL); in SCIP_DECL_NODESELSELECT()
535 SCIP_NODESEL* nodesel; in SCIPincludeNodeselUct() local
540 nodesel = NULL; in SCIPincludeNodeselUct()
[all …]
H A Dtype_nodesel.h52 #define SCIP_DECL_NODESELCOPY(x) SCIP_RETCODE x (SCIP* scip, SCIP_NODESEL* nodesel)
61 #define SCIP_DECL_NODESELFREE(x) SCIP_RETCODE x (SCIP* scip, SCIP_NODESEL* nodesel)
69 #define SCIP_DECL_NODESELINIT(x) SCIP_RETCODE x (SCIP* scip, SCIP_NODESEL* nodesel)
77 #define SCIP_DECL_NODESELEXIT(x) SCIP_RETCODE x (SCIP* scip, SCIP_NODESEL* nodesel)
88 #define SCIP_DECL_NODESELINITSOL(x) SCIP_RETCODE x (SCIP* scip, SCIP_NODESEL* nodesel)
99 #define SCIP_DECL_NODESELEXITSOL(x) SCIP_RETCODE x (SCIP* scip, SCIP_NODESEL* nodesel)
114 #define SCIP_DECL_NODESELSELECT(x) SCIP_RETCODE x (SCIP* scip, SCIP_NODESEL* nodesel, SCIP_NODE** s…
131 #define SCIP_DECL_NODESELCOMP(x) int x (SCIP* scip, SCIP_NODESEL* nodesel, SCIP_NODE* node1, SCIP_N…
H A Dnodesel_hybridestim.c96 assert(nodesel != NULL); in SCIP_DECL_NODESELCOPY()
97 assert(strcmp(SCIPnodeselGetName(nodesel), NODESEL_NAME) == 0); in SCIP_DECL_NODESELCOPY()
111 assert(nodesel != NULL); in SCIP_DECL_NODESELFREE()
116 nodeseldata = SCIPnodeselGetData(nodesel); in SCIP_DECL_NODESELFREE()
119 SCIPnodeselSetData(nodesel, nodeseldata); in SCIP_DECL_NODESELFREE()
136 assert(nodesel != NULL); in SCIP_DECL_NODESELSELECT()
144 nodeseldata = SCIPnodeselGetData(nodesel); in SCIP_DECL_NODESELSELECT()
266 assert(nodesel != NULL); in SCIP_DECL_NODESELCOMP()
270 nodeseldata = SCIPnodeselGetData(nodesel); in SCIP_DECL_NODESELCOMP()
326 SCIP_NODESEL* nodesel; in SCIPincludeNodeselHybridestim() local
[all …]
H A Dnodesel_bfs.c75 assert(nodesel != NULL); in SCIP_DECL_NODESELCOPY()
76 assert(strcmp(SCIPnodeselGetName(nodesel), NODESEL_NAME) == 0); in SCIP_DECL_NODESELCOPY()
91 assert(nodesel != NULL); in SCIP_DECL_NODESELFREE()
92 assert(strcmp(SCIPnodeselGetName(nodesel), NODESEL_NAME) == 0); in SCIP_DECL_NODESELFREE()
96 nodeseldata = SCIPnodeselGetData(nodesel); in SCIP_DECL_NODESELFREE()
99 SCIPnodeselSetData(nodesel, nodeseldata); in SCIP_DECL_NODESELFREE()
116 assert(nodesel != NULL); in SCIP_DECL_NODESELSELECT()
124 nodeseldata = SCIPnodeselGetData(nodesel); in SCIP_DECL_NODESELSELECT()
241 assert(nodesel != NULL); in SCIP_DECL_NODESELCOMP()
310 SCIP_NODESEL* nodesel; in SCIPincludeNodeselBfs() local
[all …]
H A Dscip_nodesel.h84 SCIP_NODESEL** nodesel, /**< reference to a node selector, or NULL */
98 SCIP_NODESEL* nodesel, /**< node selector */
106 SCIP_NODESEL* nodesel, /**< node selector */
114 SCIP_NODESEL* nodesel, /**< node selector */
122 SCIP_NODESEL* nodesel, /**< node selector */
130 SCIP_NODESEL* nodesel, /**< node selector */
138 SCIP_NODESEL* nodesel, /**< node selector */
165 SCIP_NODESEL* nodesel, /**< node selector */
173 SCIP_NODESEL* nodesel, /**< node selector */
H A Dnodesel_estimate.c81 assert(nodesel != NULL); in SCIP_DECL_NODESELCOPY()
82 assert(strcmp(SCIPnodeselGetName(nodesel), NODESEL_NAME) == 0); in SCIP_DECL_NODESELCOPY()
96 assert(nodesel != NULL); in SCIP_DECL_NODESELFREE()
97 assert(strcmp(SCIPnodeselGetName(nodesel), NODESEL_NAME) == 0); in SCIP_DECL_NODESELFREE()
101 nodeseldata = SCIPnodeselGetData(nodesel); in SCIP_DECL_NODESELFREE()
104 SCIPnodeselSetData(nodesel, nodeseldata); in SCIP_DECL_NODESELFREE()
121 assert(nodesel != NULL); in SCIP_DECL_NODESELSELECT()
129 nodeseldata = SCIPnodeselGetData(nodesel); in SCIP_DECL_NODESELSELECT()
291 assert(nodesel != NULL); in SCIP_DECL_NODESELCOMP()
360 SCIP_NODESEL* nodesel; in SCIPincludeNodeselEstimate() local
[all …]
H A Dstruct_nodesel.h43 …SCIP_NODESEL* nodesel; /**< node selector used for sorting the nodes in the que… member
H A Dtree.h390 …SCIP_NODESEL* nodesel /**< node selector to use for sorting leaves in the prio…
478 …SCIP_NODESEL* nodesel /**< node selector to use for sorting the nodes in the q…
/dports/math/SCIP/scip-7.0.3/src/objscip/
H A Dobjnodesel.cpp59 nodeseldata = SCIPnodeselGetData(nodesel); in SCIP_DECL_NODESELCOPY()
82 nodeseldata = SCIPnodeselGetData(nodesel); in SCIP_DECL_NODESELFREE()
108 nodeseldata = SCIPnodeselGetData(nodesel); in SCIP_DECL_NODESELINIT()
126 nodeseldata = SCIPnodeselGetData(nodesel); in SCIP_DECL_NODESELEXIT()
143 nodeseldata = SCIPnodeselGetData(nodesel); in SCIP_DECL_NODESELINITSOL()
160 nodeseldata = SCIPnodeselGetData(nodesel); in SCIP_DECL_NODESELEXITSOL()
177 nodeseldata = SCIPnodeselGetData(nodesel); in SCIP_DECL_NODESELSELECT()
194 nodeseldata = SCIPnodeselGetData(nodesel); in SCIP_DECL_NODESELCOMP()
243 SCIP_NODESEL* nodesel; in SCIPfindObjNodesel() local
246 nodesel = SCIPfindNodesel(scip, name); in SCIPfindObjNodesel()
[all …]
H A Dobjnodesel.h191 SCIP_NODESEL* nodesel /**< node selector */
/dports/math/py-PySCIPOpt/PySCIPOpt-3.0.2/src/pyscipopt/
H A Dnodesel.pxi1 ##@file nodesel.pxi
45 cdef SCIP_RETCODE PyNodeselCopy (SCIP* scip, SCIP_NODESEL* nodesel): argument
48 cdef SCIP_RETCODE PyNodeselFree (SCIP* scip, SCIP_NODESEL* nodesel): argument
50 nodeseldata = SCIPnodeselGetData(nodesel)
56 cdef SCIP_RETCODE PyNodeselInit (SCIP* scip, SCIP_NODESEL* nodesel): argument
58 nodeseldata = SCIPnodeselGetData(nodesel)
66 nodeseldata = SCIPnodeselGetData(nodesel)
73 nodeseldata = SCIPnodeselGetData(nodesel)
80 nodeseldata = SCIPnodeselGetData(nodesel)
87 nodeseldata = SCIPnodeselGetData(nodesel)
[all …]
/dports/devel/ga/ga-5.8/armci/tcgmsg/ipcv5.0/
H A Dsnd_rcv_probe.c197 void WAITCOM_(long *nodesel) in WAITCOM_() argument
201 for (i=0; i<n_in_msg_q; i++) if(*nodesel==msg_q[i].node || *nodesel ==-1){ in WAITCOM_()
/dports/devel/ga/ga-5.8/armci/tcgmsg/ipcv4.0/
H A Dpbegin.c152 long nodesel, nodefrom, type, me, nslave, status; local
270 nodesel = masterid;
271 RCV_(&type, (char *) &len_pgrp, &lenbuf, &lenmes, &nodesel, &nodefrom,
284 RCV_(&type, procgrp, &len_pgrp, &lenmes, &nodesel, &nodefrom, &sync);
/dports/math/SCIP/scip-7.0.3/check/interactiveshell/
H A Dsignal-handling-sigterm.bat.in6 set nodesel breadth stdprio 1000000
H A Dinteractiveshell.bat.in8 disp nodesel
/dports/devel/ga/ga-5.8/tcgmsg/tcgmsg-mpi/
H A Dp2p.c103 void WAITCOM_(long *nodesel) in WAITCOM_() argument
/dports/math/SCIP/scip-7.0.3/check/coverage/
H A Dcommands.bat8 disp nodesel

12