An interface for the CVXOPT solver.
# S4 method for CVXOPT
mip_capable(solver)# S4 method for CVXOPT
status_map(solver, status)
# S4 method for CVXOPT
name(x)
# S4 method for CVXOPT
import_solver(solver)
# S4 method for CVXOPT,Problem
accepts(object, problem)
# S4 method for CVXOPT,Problem
perform(object, problem)
# S4 method for CVXOPT
solve_via_data(
object,
data,
warm_start,
verbose,
solver_opts,
solver_cache = list()
)
A status code returned by the solver.
Data generated via an apply call.
A boolean of whether to warm start the solver.
A boolean of whether to enable solver verbosity.
A list of Solver specific options
Cache for the solver.
mip_capable
: Can the solver handle mixed-integer programs?
status_map
: Converts status returned by the CVXOPT solver to its respective CVXPY status.
name
: Returns the name of the solver.
import_solver
: Imports the solver.
accepts
: Can CVXOPT solve the problem?
perform
: Returns a new problem and data for inverting the new solution.
solve_via_data
: Solve a problem represented by data returned from apply.