1 2 3 4 5
use crate::{opt_problem::OptProblem, prelude::Solver}; pub trait OptFacadeSolver<C, D, O, OR, S>: Solver<Rslt = OptProblem<C, D, O, OR, S>> { fn set_opt_problem(&mut self, op: OptProblem<C, D, O, OR, S>); }