Classes | |
class | Constant |
class | Expr |
class | ExprCons |
class | GenExpr |
class | Op |
class | PowExpr |
class | ProdExpr |
class | SumExpr |
class | Term |
class | UnaryExpr |
class | VarExpr |
Functions | |
def | buildGenExprObj (expr) |
def | cos (expr) |
def | exp (expr) |
def | expr_to_array (expr, nodes) |
def | expr_to_nodes (expr) |
def | log (expr) |
def | quickprod (termlist) |
def | quicksum (termlist) |
def | sin (expr) |
def | sqrt (expr) |
def | value_to_array (val, nodes) |
Variables | |
CONST = Term() | |
Operator = Op() | |
def pyscipopt.expr.buildGenExprObj | ( | expr | ) |
def pyscipopt.expr.cos | ( | expr | ) |
returns expression with cos-function
Definition at line 635 of file expr.pxi.
References pyscipopt.expr.buildGenExprObj().
def pyscipopt.expr.exp | ( | expr | ) |
returns expression with exp-function
Definition at line 623 of file expr.pxi.
References pyscipopt.expr.buildGenExprObj().
def pyscipopt.expr.expr_to_array | ( | expr, | |
nodes | |||
) |
adds expression to array
Definition at line 657 of file expr.pxi.
References pyscipopt.expr.value_to_array().
def pyscipopt.expr.expr_to_nodes | ( | expr | ) |
transforms tree to an array of nodes. each node is an operator and the position of the children of that operator (i.e. the other nodes) in the array
Definition at line 639 of file expr.pxi.
References pyscipopt.expr.expr_to_array().
def pyscipopt.expr.log | ( | expr | ) |
returns expression with log-function
Definition at line 626 of file expr.pxi.
References pyscipopt.expr.buildGenExprObj().
def pyscipopt.expr.quickprod | ( | termlist | ) |
def pyscipopt.expr.quicksum | ( | termlist | ) |
def pyscipopt.expr.sin | ( | expr | ) |
returns expression with sin-function
Definition at line 632 of file expr.pxi.
References pyscipopt.expr.buildGenExprObj().
def pyscipopt.expr.sqrt | ( | expr | ) |
returns expression with sqrt-function
Definition at line 629 of file expr.pxi.
References pyscipopt.expr.buildGenExprObj().
def pyscipopt.expr.value_to_array | ( | val, | |
nodes | |||
) |