Skip to main content

SymLinearSolver

Trait SymLinearSolver 

Source
pub trait SymLinearSolver {
    // Required methods
    fn number_of_neg_evals(&self) -> Index;
    fn increase_quality(&mut self) -> bool;
    fn provides_inertia(&self) -> bool;
}

Required Methods§

Source

fn number_of_neg_evals(&self) -> Index

Most recent factorization’s negative-eigenvalue count.

Source

fn increase_quality(&mut self) -> bool

Ask for a higher-quality next solve.

Source

fn provides_inertia(&self) -> bool

Whether this solver reports inertia.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§