SolverStats-class {CVXR} | R Documentation |
The SolverStats class.
Description
This class contains the miscellaneous information that is returned by a solver after solving, but that is not captured directly by the Problem object.
Usage
SolverStats(results_dict = list(), solver_name = NA_character_)
Arguments
results_dict |
A list containing the results returned by the solver. |
solver_name |
The name of the solver. |
Value
A list containing
solver_name
The name of the solver.
solve_time
The time (in seconds) it took for the solver to solve the problem.
setup_time
The time (in seconds) it took for the solver to set up the problem.
num_iters
The number of iterations the solver had to go through to find a solution.
Slots
solver_name
The name of the solver.
solve_time
The time (in seconds) it took for the solver to solve the problem.
setup_time
The time (in seconds) it took for the solver to set up the problem.
num_iters
The number of iterations the solver had to go through to find a solution.
[Package CVXR version 1.0-14 Index]