Home
last modified time | relevance | path

Searched refs:subprobtype (Results 1 – 3 of 3) sorted by relevance

/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dstruct_benders.h116 SCIP_BENDERSSUBTYPE* subprobtype; /**< the convexity type of the subproblem */ member
H A Dpub_benders.h317 SCIP_BENDERSSUBTYPE subprobtype /**< the subproblem type */
H A Dbenders.c2566 SCIP_ALLOC( BMSallocMemoryArray(&benders->subprobtype, benders->nsubproblems) ); in SCIPbendersActivate()
2587 benders->subprobtype[i] = SCIP_BENDERSSUBTYPE_UNKNOWN; in SCIPbendersActivate()
2670 BMSfreeMemoryArray(&benders->subprobtype); in SCIPbendersDeactivate()
6280 SCIP_BENDERSSUBTYPE subprobtype /**< the subproblem type */ in SCIPbendersSetSubproblemType() argument
6286 if( subprobtype == SCIP_BENDERSSUBTYPE_CONVEXCONT in SCIPbendersSetSubproblemType()
6287 && benders->subprobtype[probnumber] != SCIP_BENDERSSUBTYPE_CONVEXCONT ) in SCIPbendersSetSubproblemType()
6289 else if( subprobtype != SCIP_BENDERSSUBTYPE_CONVEXCONT in SCIPbendersSetSubproblemType()
6290 && benders->subprobtype[probnumber] == SCIP_BENDERSSUBTYPE_CONVEXCONT ) in SCIPbendersSetSubproblemType()
6293 benders->subprobtype[probnumber] = subprobtype; in SCIPbendersSetSubproblemType()
6310 return benders->subprobtype[probnumber]; in SCIPbendersGetSubproblemType()