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

Base class of the Separator Plugin. More...

Go to the source code of this file.

Classes

class  Sepa
 

Functions

def sepafree (self)
 
def sepainit (self)
 
def sepaexit (self)
 
def sepainitsol (self)
 
def sepaexitsol (self)
 
def sepaexeclp (self)
 
def sepaexecsol (self, solution)
 

Variables

 sepadata = SCIPsepaGetData(sepa)
 
 PySepa = <Sepa>sepadata
 
 result_dict = PySepa.sepaexeclp()
 
 solution = Solution()
 
 sol
 

Detailed Description

Base class of the Separator Plugin.

Definition in file sepa.pxi.

Function Documentation

def pyscipopt.sepa.sepaexeclp (   self)
calls LP separation method of separator

Definition at line 27 of file sepa.pxi.

def pyscipopt.sepa.sepaexecsol (   self,
  solution 
)
calls primal solution separation method of separator

Definition at line 31 of file sepa.pxi.

def pyscipopt.sepa.sepaexit (   self)
calls exit method of separator

Definition at line 15 of file sepa.pxi.

def pyscipopt.sepa.sepaexitsol (   self)
informs separator that the branch and bound process data is being freed

Definition at line 23 of file sepa.pxi.

def pyscipopt.sepa.sepafree (   self)
calls destructor and frees memory of separator

Definition at line 7 of file sepa.pxi.

def pyscipopt.sepa.sepainit (   self)
initializes separator

Definition at line 11 of file sepa.pxi.

def pyscipopt.sepa.sepainitsol (   self)
informs separator that the branch and bound process is being started

Definition at line 19 of file sepa.pxi.