An interface for the ECOS solver
ECOS()
# S4 method for class 'ECOS'
mip_capable(solver)
# S4 method for class 'ECOS'
status_map(solver, status)
# S4 method for class 'ECOS'
import_solver(solver)
# S4 method for class 'ECOS'
name(x)
# S4 method for class 'ECOS,Problem'
perform(object, problem)
# S4 method for class 'ECOS,list,list'
invert(object, solution, inverse_data)
A ECOS object.
A status code returned by the solver.
A Problem object.
The raw solution returned by the solver.
A list containing data necessary for the inversion.
mip_capable(ECOS)
: Can the solver handle mixed-integer programs?
status_map(ECOS)
: Converts status returned by the ECOS solver to its respective CVXPY status.
import_solver(ECOS)
: Imports the solver
name(ECOS)
: Returns the name of the solver
perform(object = ECOS, problem = Problem)
: Returns a new problem and data for inverting the new solution.
invert(object = ECOS, solution = list, inverse_data = list)
: Returns the solution to the original problem given the inverse_data.