pub type SCIP_NLPSTATISTICS = SCIP_NlpStatistics;Expand description
Statistics from an NLP solve
Aliased Type§
#[repr(C)]pub struct SCIP_NLPSTATISTICS {
pub niterations: i32,
pub totaltime: f64,
pub evaltime: f64,
pub consviol: f64,
pub boundviol: f64,
}Fields§
§niterations: i32< number of iterations the NLP solver spend in the last solve command
totaltime: f64< total time in CPU sections the NLP solver spend in the last solve command
evaltime: f64< time spend in evaluation of functions and their derivatives (only measured if timing/nlpieval = TRUE)
consviol: f64< maximal absolute constraint violation in current solution, or SCIP_INVALID if not available
boundviol: f64< maximal absolute variable bound violation in current solution, or SCIP_INVALID if not available