Uses of Interface
sbrt.kernel.math.QuadraticExpr

Packages that use QuadraticExpr
sbrt.ext.cplex Provides a class that allows communication with CPLEX. 
sbrt.kernel.math.optimization Provides classes and interfaces for creating objects relevant to solving optimization problems. 
 

Uses of QuadraticExpr in sbrt.ext.cplex
 

Methods in sbrt.ext.cplex with parameters of type QuadraticExpr
 void CplexSolver.setConstraint(QuadraticExpr<? extends C> expr, Interval c)
          Sets a constraint on the provided mathematical expression of column variables.
 void CplexSolver.setObjectiveFunction(QuadraticExpr<? extends C> objective)
          Not yet implemented.
 void CplexSolver.setObjectiveFunction(QuadraticExpr<? extends C> objective, OptSense sense)
          Sets the objective function and optimization sense to the provided values.
 

Uses of QuadraticExpr in sbrt.kernel.math.optimization
 

Methods in sbrt.kernel.math.optimization with parameters of type QuadraticExpr
 void QuadraticProgramSolver.setConstraint(QuadraticExpr<? extends C> expression, Interval c)
          Sets a constraint on the provided quadratic expression of column variables.
 void QuadraticProgramSolver.setObjectiveFunction(QuadraticExpr<? extends C> expression)
          Sets the objective function to the provided quadratic expression of column variables.
 void QuadraticProgramSolver.setObjectiveFunction(QuadraticExpr<? extends C> expression, OptSense sense)
          Sets the objective function and optimization sense to the provided values.