Scippy

SCIP

Solving Constraint Integer Programs

objpricer.h File Reference

Detailed Description

C++ wrapper for variable pricers.

Author
Tobias Achterberg

Definition in file objpricer.h.

#include <cstring>
#include "scip/scip.h"
#include "objscip/objprobcloneable.h"

Go to the source code of this file.

Data Structures

class  scip::ObjPricer
 C++ wrapper for variable pricer. More...
 

Namespaces

 scip
 

Functions

SCIP_EXPORT SCIP_RETCODE SCIPincludeObjPricer (SCIP *scip, scip::ObjPricer *objpricer, SCIP_Bool deleteobject)
 
SCIP_EXPORT scip::ObjPricerSCIPfindObjPricer (SCIP *scip, const char *name)
 
SCIP_EXPORT scip::ObjPricerSCIPgetObjPricer (SCIP *scip, SCIP_PRICER *pricer)
 

Function Documentation

◆ SCIPincludeObjPricer()

SCIP_EXPORT 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:

  1. The user is resposible of deleting the object: SCIP_CALL( SCIPcreate(&scip) ); ... MyPricer* mypricer = new MyPricer(...); SCIP_CALL( SCIPincludeObjPricer(scip, &mypricer, FALSE) ); ... SCIP_CALL( SCIPfree(&scip) ); delete mypricer; // delete pricer AFTER SCIPfree() !
  2. The object pointer is passed to SCIP and deleted by SCIP in the SCIPfree() call: SCIP_CALL( SCIPcreate(&scip) ); ... SCIP_CALL( SCIPincludeObjPricer(scip, new MyPricer(...), TRUE) ); ... SCIP_CALL( SCIPfree(&scip) ); // destructor of MyPricer is called here

creates the variable pricer for the given variable pricer object and includes it in SCIP

Parameters
scipSCIP data structure
objpricervariable pricer object
deleteobjectshould the pricer object be deleted when pricer is freed?

Definition at line 212 of file objpricer.cpp.

References NULL, SCIP_CALL, scip::ObjPricer::scip_delay_, scip::ObjPricer::scip_desc_, scip::ObjPricer::scip_name_, SCIP_OKAY, scip::ObjPricer::scip_priority_, and SCIPincludePricer().

Referenced by execmain(), SCIP_DECL_PRICERCOPY(), and scip::ObjPricer::SCIP_DECL_PRICERFARKAS().

◆ SCIPfindObjPricer()

SCIP_EXPORT scip::ObjPricer* SCIPfindObjPricer ( SCIP scip,
const char *  name 
)

returns the variable pricer object of the given name, or 0 if not existing

Parameters
scipSCIP data structure
namename of variable pricer

Definition at line 240 of file objpricer.cpp.

References NULL, SCIPfindPricer(), and SCIPpricerGetData().

Referenced by scip::ObjPricer::SCIP_DECL_PRICERFARKAS().

◆ SCIPgetObjPricer()

SCIP_EXPORT scip::ObjPricer* SCIPgetObjPricer ( SCIP scip,
SCIP_PRICER pricer 
)

returns the variable pricer object for the given pricer

Parameters
scipSCIP data structure
pricerpricer

Definition at line 259 of file objpricer.cpp.

References NULL, and SCIPpricerGetData().

Referenced by scip::ObjPricer::SCIP_DECL_PRICERFARKAS().