Home | History | Annotate | Download | only in ceres

Lines Matching refs:evaluator

45 #include "ceres/evaluator.h"
610 // Setup the Parameter indices and offsets before an evaluator can
614 Evaluator::Options evaluator_options;
617 // CXSparse, here it just being used for telling the evaluator to
619 // the Evaluator decides the storage for the Jacobian based on the
625 scoped_ptr<Evaluator> evaluator(
626 Evaluator::Create(evaluator_options, &program, &error));
627 if (evaluator.get() == NULL) {
628 LOG(ERROR) << "Unable to create an Evaluator object. "
641 residuals->resize(evaluator->NumResiduals());
645 gradient->resize(evaluator->NumEffectiveParameters());
651 down_cast<CompressedRowSparseMatrix*>(evaluator->CreateJacobian()));
656 // passed to Evaluator::Evaluate.
670 Evaluator::EvaluateOptions evaluator_evaluate_options;
673 bool status = evaluator->Evaluate(evaluator_evaluate_options,