Struct ceres_solver::solver::LinearSolverType
source · pub struct LinearSolverType {
pub repr: u32,
}Fields§
§repr: u32Implementations§
source§impl LinearSolverType
impl LinearSolverType
pub const DENSE_NORMAL_CHOLESKY: LinearSolverType = LinearSolverType{ repr: 0,}
pub const DENSE_QR: LinearSolverType = LinearSolverType{ repr: 1,}
pub const SPARSE_NORMAL_CHOLESKY: LinearSolverType = LinearSolverType{ repr: 2,}
pub const DENSE_SCHUR: LinearSolverType = LinearSolverType{ repr: 3,}
pub const SPARSE_SCHUR: LinearSolverType = LinearSolverType{ repr: 4,}
pub const ITERATIVE_SCHUR: LinearSolverType = LinearSolverType{ repr: 5,}
pub const CGNR: LinearSolverType = LinearSolverType{ repr: 6,}
Trait Implementations§
source§impl Clone for LinearSolverType
impl Clone for LinearSolverType
source§fn clone(&self) -> LinearSolverType
fn clone(&self) -> LinearSolverType
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl ExternType for LinearSolverType
impl ExternType for LinearSolverType
source§impl PartialEq<LinearSolverType> for LinearSolverType
impl PartialEq<LinearSolverType> for LinearSolverType
source§fn eq(&self, other: &LinearSolverType) -> bool
fn eq(&self, other: &LinearSolverType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.