Home
last modified time | relevance | path

Searched refs:consenfops (Results 1 – 7 of 7) sorted by relevance

/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dscip_cons.h115 SCIP_DECL_CONSENFOPS ((*consenfops)), /**< enforcing constraints for pseudo solutions */
165 SCIP_DECL_CONSENFOPS ((*consenfops)), /**< enforcing constraints for pseudo solutions */
H A Dstruct_cons.h161 SCIP_DECL_CONSENFOPS ((*consenfops)); /**< enforcing constraints for pseudo solutions */
H A Dscip_cons.c105 SCIP_DECL_CONSENFOPS ((*consenfops)), /**< enforcing constraints for pseudo solutions */ in SCIPincludeConshdlr()
140 …trans, consinitlp, conssepalp, conssepasol, consenfolp, consenforelax, consenfops, conscheck, cons… in SCIPincludeConshdlr()
177 SCIP_DECL_CONSENFOPS ((*consenfops)), /**< enforcing constraints for pseudo solutions */ in SCIPincludeConshdlrBasic() argument
200 NULL, NULL, NULL, NULL, NULL, consenfolp, NULL, consenfops, conscheck, NULL, in SCIPincludeConshdlrBasic()
H A Dcons.h103 SCIP_DECL_CONSENFOPS ((*consenfops)), /**< enforcing constraints for pseudo solutions */
H A Dcons.c2024 SCIP_DECL_CONSENFOPS ((*consenfops)), /**< enforcing constraints for pseudo solutions */ in doConshdlrCreate()
2096 (*conshdlr)->consenfops = consenfops; in doConshdlrCreate()
2302 SCIP_DECL_CONSENFOPS ((*consenfops)), /**< enforcing constraints for pseudo solutions */ in SCIPconshdlrCreate()
2333 …, constrans, consinitlp, conssepalp, conssepasol, consenfolp, consenforelax, consenfops, conscheck, in SCIPconshdlrCreate()
3567 if( conshdlr->consenfops != NULL ) in SCIPconshdlrEnforcePseudoSol()
3656 …SCIP_CALL( conshdlr->consenfops(set->scip, conshdlr, conss, nconss, nusefulconss, solinfeasible, o… in SCIPconshdlrEnforcePseudoSol()
7342 assert(conshdlr->consenfops != NULL); in SCIPconsEnfops()
7344 …SCIP_CALL( conshdlr->consenfops(set->scip, conshdlr, &cons, 1, 1, solinfeasible, objinfeasible, re… in SCIPconsEnfops()
/dports/math/py-PySCIPOpt/PySCIPOpt-3.0.2/src/pyscipopt/
H A Dconshdlr.pxi66 def consenfops(self, constraints, nusefulconss, solinfeasible, objinfeasible): member in Conshdlr
68 print("python error in consenfops: this method needs to be implemented")
295 result_dict = PyConshdlr.consenfops(constraints, nusefulconss, solinfeasible, objinfeasible)
H A Dscip.pxd923 …SCIP_RETCODE (*consenfops) (SCIP* scip, SCIP_CONSHDLR* conshdlr, SCIP_CONS** conss, int nconss, in…