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