Attributes
----------
total_time : float
Total time since model was created
solving_time: float
Time spent solving the problem
presolving_time: float
Time spent on presolving
reading_time: float
Time spent on reading
copying_time: float
Time spent on copying
problem_name: str
Name of problem
presolved_problem_name: str
Name of presolved problem
n_nodes: int
The number of nodes explored in the branch-and-bound tree
n_solutions_found: int
number of found solutions
first_solution: float
objective value of first found solution
primal_bound: float
The best primal bound found
dual_bound: float
The best dual bound found
gap: float
The gap between the primal and dual bounds
primal_dual_integral: float
The primal-dual integral
n_vars: int
number of variables in the model
n_binary_vars: int
number of binary variables in the model
n_integer_vars: int
number of integer variables in the model
n_implicit_integer_vars: int
number of implicit integer variables in the model
n_continuous_vars: int
number of continuous variables in the model
n_presolved_vars: int
number of variables in the presolved model
n_presolved_continuous_vars: int
number of continuous variables in the presolved model
n_presolved_binary_vars: int
number of binary variables in the presolved model
n_presolved_integer_vars: int
number of integer variables in the presolved model
n_presolved_implicit_integer_vars: int
number of implicit integer variables in the presolved model
n_maximal_cons: int
number of maximal constraints in the model
n_initial_cons: int
number of initial constraints in the presolved model
n_presolved_maximal_cons: int
number of maximal constraints in the presolved model
n_presolved_conss: int
number of initial constraints in the model
Definition at line 5951 of file scip.pxi.