Home | History | Annotate | Download | only in ceres

Lines Matching refs:Options

99 // LinearSolver::CreateLinearSolver with LinearSolver::Options::type
101 // respectively. LinearSolver::Options::elimination_groups[0] should be
105 explicit SchurComplementSolver(const LinearSolver::Options& options)
106 : options_(options) {
107 CHECK_GT(options.elimination_groups.size(), 1);
108 CHECK_GT(options.elimination_groups[0], 0);
120 const LinearSolver::Options& options() const { return options_; }
131 LinearSolver::Options options_;
143 explicit DenseSchurComplementSolver(const LinearSolver::Options& options)
144 : SchurComplementSolver(options) {}
158 explicit SparseSchurComplementSolver(const LinearSolver::Options& options);