PySCIPOpt
Python Interface to the SCIP Optimization Suite
Op Class Reference

Public Member Functions

def getOpIndex (self, op)
 

Static Public Attributes

string const = 'const'
 
string varidx = 'var'
 
 exp
 
 log
 
 sqrt
 
 plus
 
 minus
 
 mul
 
 div
 
 power
 
string add = 'sum'
 
string prod = 'prod'
 
string fabs = 'abs'
 
dictionary operatorIndexDic
 

Detailed Description

Definition at line 391 of file expr.pxi.

Member Function Documentation

def getOpIndex (   self,
  op 
)
returns operator index

Definition at line 414 of file expr.pxi.

Member Data Documentation

dictionary operatorIndexDic
static
Initial value:
1 = {
2  varidx:SCIP_EXPR_VARIDX,
3  const:SCIP_EXPR_CONST,
4  plus:SCIP_EXPR_PLUS,
5  minus:SCIP_EXPR_MINUS,
6  mul:SCIP_EXPR_MUL,
7  div:SCIP_EXPR_DIV,
8  sqrt:SCIP_EXPR_SQRT,
9  power:SCIP_EXPR_REALPOWER,
10  exp:SCIP_EXPR_EXP,
11  log:SCIP_EXPR_LOG,
12  fabs:SCIP_EXPR_ABS,
13  add:SCIP_EXPR_SUM,
14  prod:SCIP_EXPR_PRODUCT
15  }

Definition at line 399 of file expr.pxi.


The documentation for this class was generated from the following file: