MCPcopy Create free account
hub / github.com/ceres-solver/ceres-solver / IsNestedDissectionAvailable

Function IsNestedDissectionAvailable

internal/ceres/solver.cc:111–117  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

109}
110
111bool IsNestedDissectionAvailable(SparseLinearAlgebraLibraryType type) {
112 return (((type == SUITE_SPARSE) &&
113 internal::SuiteSparse::IsNestedDissectionAvailable()) ||
114 (type == ACCELERATE_SPARSE) ||
115 ((type == EIGEN_SPARSE) &&
116 internal::EigenSparse::IsNestedDissectionAvailable()));
117}
118
119bool IsIterativeSolver(LinearSolverType type) {
120 return (type == CGNR || type == ITERATIVE_SCHUR);

Calls

no outgoing calls

Tested by

no test coverage detected