Learn R Programming

CVXR (version 1.0)

CVXOPT-class: An interface for the CVXOPT solver.

Description

An interface for the CVXOPT solver.

Usage

# 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() )

Arguments

solver, object, x

A '>CVXOPT object.

status

A status code returned by the solver.

problem

A '>Problem object.

data

Data generated via an apply call.

warm_start

A boolean of whether to warm start the solver.

verbose

A boolean of whether to enable solver verbosity.

solver_opts

A list of Solver specific options

solver_cache

Cache for the solver.

Methods (by generic)

  • 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.