C++ wrapper for variable pricers.
Definition in file objpricer.h.
Go to the source code of this file.
Functions | |
| SCIP_RETCODE | SCIPincludeObjPricer (SCIP *scip, scip::ObjPricer *objpricer, SCIP_Bool deleteobject) |
| scip::ObjPricer * | SCIPfindObjPricer (SCIP *scip, const char *name) |
| scip::ObjPricer * | SCIPgetObjPricer (SCIP *scip, SCIP_PRICER *pricer) |
| SCIP_RETCODE SCIPincludeObjPricer | ( | SCIP * | scip, |
| scip::ObjPricer * | objpricer, | ||
| SCIP_Bool | deleteobject | ||
| ) |
creates the variable pricer for the given variable pricer object and includes it in SCIP
The method should be called in one of the following ways:
creates the variable pricer for the given variable pricer object and includes it in SCIP
| scip | SCIP data structure |
| objpricer | variable pricer object |
| deleteobject | should the pricer object be deleted when pricer is freed? |
Definition at line 212 of file objpricer.cpp.
References SCIP_CALL, scip::ObjPricer::scip_delay_, scip::ObjPricer::scip_desc_, scip::ObjPricer::scip_name_, SCIP_OKAY, scip::ObjPricer::scip_priority_, and SCIPincludePricer().
Referenced by SCIP_DECL_PRICERCOPY(), and scip::ObjPricer::SCIP_DECL_PRICERFARKAS().
| scip::ObjPricer* SCIPfindObjPricer | ( | SCIP * | scip, |
| const char * | name | ||
| ) |
returns the variable pricer object of the given name, or 0 if not existing
| scip | SCIP data structure |
| name | name of variable pricer |
Definition at line 240 of file objpricer.cpp.
References SCIPfindPricer(), and SCIPpricerGetData().
Referenced by scip::ObjPricer::SCIP_DECL_PRICERFARKAS().
| scip::ObjPricer* SCIPgetObjPricer | ( | SCIP * | scip, |
| SCIP_PRICER * | pricer | ||
| ) |
returns the variable pricer object for the given pricer
| scip | SCIP data structure |
| pricer | pricer |
Definition at line 259 of file objpricer.cpp.
References SCIPpricerGetData().
Referenced by scip::ObjPricer::SCIP_DECL_PRICERFARKAS().