PySCIPOpt
Python Interface to the SCIP Optimization Suite
pricer.pxi File Reference

Base class of the Pricers Plugin. More...

Go to the source code of this file.

Classes

class  Pricer
 

Functions

def pricerfree (self)
 
def pricerinit (self)
 
def pricerexit (self)
 
def pricerinitsol (self)
 
def pricerexitsol (self)
 
def pricerredcost (self)
 
def pricerfarkas (self)
 

Variables

 pricerdata = SCIPpricerGetData(pricer)
 
 PyPricer = <Pricer>pricerdata
 
 result_dict = PyPricer.pricerredcost()
 

Detailed Description

Base class of the Pricers Plugin.

Definition in file pricer.pxi.

Function Documentation

def pyscipopt.pricer.pricerexit (   self)
calls exit method of variable pricer

Definition at line 14 of file pricer.pxi.

def pyscipopt.pricer.pricerexitsol (   self)
informs variable pricer that the branch and bound process data is being freed

Definition at line 22 of file pricer.pxi.

def pyscipopt.pricer.pricerfarkas (   self)
calls Farkas pricing method of variable pricer

Definition at line 31 of file pricer.pxi.

def pyscipopt.pricer.pricerfree (   self)
calls destructor and frees memory of variable pricer 

Definition at line 6 of file pricer.pxi.

def pyscipopt.pricer.pricerinit (   self)
initializes variable pricer

Definition at line 10 of file pricer.pxi.

def pyscipopt.pricer.pricerinitsol (   self)
informs variable pricer that the branch and bound process is being started 

Definition at line 18 of file pricer.pxi.

def pyscipopt.pricer.pricerredcost (   self)
calls reduced cost pricing method of variable pricer

Definition at line 26 of file pricer.pxi.