361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
|
* Time when the solution process started.
*
* This is actually the time of the last call to `Solver::init`.
*/
start_time : Instant,
/// The master problem.
master: Box<MasterProblem>,
}
impl<P> Solver<P>
where P : for <'a> FirstOrderProblem<'a>
{
/**
|
|
|
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
|
* Time when the solution process started.
*
* This is actually the time of the last call to `Solver::init`.
*/
start_time : Instant,
/// The master problem.
master: Box<MasterProblem<MinorantIndex=usize>>,
}
impl<P> Solver<P>
where P : for <'a> FirstOrderProblem<'a>
{
/**
|