Learn R Programming

CVXR (version 1.9.1)

get_problem_data: Get Problem Data for a Solver (deprecated)

Description

[Deprecated]

Usage

get_problem_data(
  x,
  solver = NULL,
  gp = FALSE,
  enforce_dpp = FALSE,
  ignore_dpp = FALSE,
  ...
)

Value

A list with components data, chain, and inverse_data.

Arguments

x

A Problem object.

solver

Character string naming solver, or NULL for automatic selection.

gp

Logical; if TRUE, parse the problem as a geometric program.

enforce_dpp

Logical; if TRUE, raise an error when a parametrized problem is not DPP instead of compiling it as non-DPP.

ignore_dpp

Logical; if TRUE, treat a DPP problem as non-DPP (skip the DPP fast path).

...

Additional solver options.

Details

Use problem_data instead.

See Also

problem_data