Struct quadprog::Solution [−][src]
pub struct Solution {
pub obj: f64,
pub sol: Vec<f64>,
pub lagr: Vec<f64>,
pub iact: Vec<usize>,
pub iter: usize,
}
Expand description
The solution to a quadratic program
obj
is the objective valuesol
is the vector solutionlagr
is a vector the lagrange multipliers for each constraintiact
are the indices of the active constraintsiter
is the number of added constraints over the course of execution
Fields
obj: f64
sol: Vec<f64>
lagr: Vec<f64>
iact: Vec<usize>
iter: usize