pub trait PdSystemSolver {
// Required method
fn solve_status(&self) -> ESymSolverStatus;
}Required Methods§
Sourcefn solve_status(&self) -> ESymSolverStatus
fn solve_status(&self) -> ESymSolverStatus
Run the configured iterative-refinement loop on the 8-block
system. Phase 6 placeholder for the full-signature method;
super::pd_full_space_solver::PdFullSpaceSolver::solve will
implement it once IteratesVector is wired through.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".