/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/ |
H A D | Estimator.java | 43 * Solve an estimation problem. 45 * <p>The method should set the parameters of the problem to several 48 * estimate of the parameters can be retrieved from the problem 52 * @param problem estimation problem to solve 53 * @exception EstimationException if the problem cannot be solved 56 void estimate(EstimationProblem problem) throws EstimationException; argument 67 * @param problem estimation problem 70 double getRMS(EstimationProblem problem); argument 79 getCovariances(EstimationProblem problem) argument 88 guessParametersErrors(EstimationProblem problem) argument [all...] |
H A D | AbstractEstimator.java | 179 * @param problem estimation problem 182 public double getRMS(EstimationProblem problem) { argument 183 WeightedMeasurement[] wm = problem.getMeasurements(); 194 * @param problem estimation problem 197 public double getChiSquare(EstimationProblem problem) { argument 198 WeightedMeasurement[] wm = problem.getMeasurements(); 209 * @param problem estimation problem 214 getCovariances(EstimationProblem problem) argument 256 guessParametersErrors(EstimationProblem problem) argument 281 initializeEstimate(EstimationProblem problem) argument 315 estimate(EstimationProblem problem) argument [all...] |
/external/ceres-solver/internal/ceres/ |
H A D | problem_test.cc | 32 #include "ceres/problem.h" 122 Problem problem; local 123 problem.AddParameterBlock(x, 3); 124 problem.AddParameterBlock(y, 4); 125 problem.AddParameterBlock(z, 5); 127 EXPECT_DEATH_IF_SUPPORTED(problem.AddResidualBlock(NULL, NULL, x), 134 Problem problem; local 135 problem.AddParameterBlock(x, 3); 136 problem.AddParameterBlock(y, 4); 137 problem 148 Problem problem; local 159 Problem problem; local 172 Problem problem; local 187 Problem problem; local 200 Problem problem; local 223 Problem problem; local 251 Problem problem; local 274 Problem problem; local 330 Problem problem; local 349 Problem problem; local 473 scoped_ptr<ProblemImpl> problem; member in struct:ceres::internal::DynamicProblem 481 Problem problem; local 492 Problem problem; local 503 Problem problem; local 515 Problem problem; local 526 Problem problem; local 539 Problem problem; local 882 ExpectProblemHasResidualBlocks( const ProblemImpl &problem, const ResidualBlockId *expected_residual_blocks) argument [all...] |
H A D | program_test.cc | 79 ProblemImpl problem; local 84 problem.AddParameterBlock(&x, 1); 85 problem.AddParameterBlock(&y, 1); 86 problem.AddParameterBlock(&z, 1); 87 problem.AddResidualBlock(new UnaryCostFunction(), NULL, &x); 88 problem.AddResidualBlock(new BinaryCostFunction(), NULL, &x, &y); 89 problem.AddResidualBlock(new TernaryCostFunction(), NULL, &x, &y, &z); 95 CHECK_NOTNULL(problem 108 ProblemImpl problem; local 111 problem 133 ProblemImpl problem; local 158 ProblemImpl problem; local 185 ProblemImpl problem; local 212 ProblemImpl problem; local 252 ProblemImpl problem; local 354 ProblemImpl problem; local 396 ProblemImpl problem; local 408 ProblemImpl problem; local 419 ProblemImpl problem; local [all...] |
H A D | solver_impl_test.cc | 79 ProblemImpl problem(problem_options); 80 problem.AddResidualBlock(cost_function.get(), NULL, &x, &y, &z, &w); 81 problem.SetParameterBlockConstant(&x); 82 problem.SetParameterBlockConstant(&w); 88 SolverImpl::Solve(options, &problem, &summary); 98 EXPECT_EQ(&x, problem.program().parameter_blocks()[0]->state()); 99 EXPECT_EQ(&y, problem.program().parameter_blocks()[1]->state()); 100 EXPECT_EQ(&z, problem.program().parameter_blocks()[2]->state()); 101 EXPECT_EQ(&w, problem.program().parameter_blocks()[3]->state()); 103 EXPECT_TRUE(problem [all...] |
H A D | reorder_program_test.cc | 62 ProblemImpl problem; local 67 problem.AddParameterBlock(&x, 1); 68 problem.AddParameterBlock(&y, 1); 69 problem.AddParameterBlock(&z, 1); 71 problem.AddResidualBlock(new UnaryCostFunction(), NULL, &x); 72 problem.AddResidualBlock(new BinaryCostFunction(), NULL, &z, &x); 73 problem.AddResidualBlock(new BinaryCostFunction(), NULL, &z, &y); 74 problem.AddResidualBlock(new UnaryCostFunction(), NULL, &z); 75 problem.AddResidualBlock(new BinaryCostFunction(), NULL, &x, &y); 76 problem 118 ProblemImpl problem; local 140 ProblemImpl problem; local [all...] |
H A D | covariance.cc | 36 #include "ceres/problem.h" 50 Problem* problem) { 51 return impl_->Compute(covariance_blocks, problem->problem_impl_.get()); 48 Compute( const vector<pair<const double*, const double*> >& covariance_blocks, Problem* problem) argument
|
H A D | evaluator_test.cc | 135 void EvaluateAndCompare(ProblemImpl *problem, argument 143 CreateEvaluator(problem->mutable_program())); 191 EvaluateAndCompare(&problem, 206 ProblemImpl problem; member in struct:ceres::internal::EvaluatorTest 215 problem.AddResidualBlock(new ParameterIgnoringCostFunction<1, 3, 2, 3, 4>, 243 problem.AddParameterBlock(x, 2); 244 problem.AddParameterBlock(y, 3); 245 problem.AddParameterBlock(z, 4); 251 // for a long time, since by chance most users added parameters to the problem 253 problem 591 ProblemImpl problem; local [all...] |
H A D | linear_least_squares_problems.cc | 60 LOG(FATAL) << "Unknown problem id requested " << id; 84 LinearLeastSquaresProblem* problem = new LinearLeastSquaresProblem; local 87 problem->b.reset(new double[3]); 88 problem->D.reset(new double[2]); 90 problem->x.reset(new double[2]); 91 problem->x_D.reset(new double[2]); 113 problem->A.reset(A); 115 problem->b[0] = 8; 116 problem->b[1] = 18; 117 problem 184 LinearLeastSquaresProblem* problem = new LinearLeastSquaresProblem; local 289 LinearLeastSquaresProblem* problem = new LinearLeastSquaresProblem; local 423 LinearLeastSquaresProblem* problem = new LinearLeastSquaresProblem; local [all...] |
H A D | solver_test.cc | 40 #include "ceres/problem.h" 92 Problem problem(problem_options); 93 problem.AddResidualBlock(cost_function.get(), NULL, &x); 106 Solve(options, &problem, &summary); 118 Solve(options, &problem, &summary); 163 Problem problem; local 167 Solve(options, &problem, &summary); 175 Problem problem; local 179 Solve(options, &problem, &summary); 187 Problem problem; local 201 Problem problem; local 215 Problem problem; local 229 Problem problem; local [all...] |
H A D | iterative_schur_complement_solver_test.cc | 62 scoped_ptr<LinearLeastSquaresProblem> problem( 65 CHECK_NOTNULL(problem.get()); 66 A_.reset(down_cast<BlockSparseMatrix*>(problem->A.release())); 67 b_.reset(problem->b.release()); 68 D_.reset(problem->D.release()); 72 num_eliminate_blocks_ = problem->num_eliminate_blocks;
|
/external/openssh/ |
H A D | auth-krb5.c | 62 krb5_error_code problem; local 65 problem = krb5_init_context(&authctxt->krb5_ctx); 66 if (problem) 67 return (problem); 79 krb5_error_code problem; local 91 problem = krb5_init(authctxt); 92 if (problem) 95 problem = krb5_parse_name(authctxt->krb5_ctx, client, 97 if (problem) 102 problem [all...] |
H A D | gss-serv-krb5.c | 66 krb5_error_code problem; local 71 problem = krb5_init_context(&krb_context); 72 if (problem) { 121 krb5_error_code problem; local 137 if ((problem = krb5_cc_new_unique(krb_context, krb5_fcc_ops.prefix, 139 errmsg = krb5_get_error_message(krb_context, problem); 142 if ((problem = krb5_cc_gen_new(krb_context, &krb5_fcc_ops, &ccache))) { 144 krb5_get_err_text(krb_context, problem)); 150 if ((problem = ssh_krb5_cc_gen(krb_context, &ccache))) { 151 errmsg = krb5_get_error_message(krb_context, problem); [all...] |
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/ |
H A D | ConstructorException.java | 24 protected ConstructorException(String context, Mark contextMark, String problem, argument 26 super(context, contextMark, problem, problemMark, cause); 29 protected ConstructorException(String context, Mark contextMark, String problem, argument 31 this(context, contextMark, problem, problemMark, null);
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/scanner/ |
H A D | ScannerException.java | 33 * Part of the input document in which vicinity the problem 37 * @param problem 38 * Part of the input document that caused the problem. 40 * Position of the <code>problem</code> within the document. 43 * problem. 45 public ScannerException(String context, Mark contextMark, String problem, Mark problemMark, argument 47 super(context, contextMark, problem, problemMark, note); 54 * Part of the input document in which vicinity the problem 58 * @param problem 59 * Part of the input document that caused the problem 63 ScannerException(String context, Mark contextMark, String problem, Mark problemMark) argument [all...] |
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/error/ |
H A D | MarkedYAMLException.java | 23 private String problem; field in class:MarkedYAMLException 27 protected MarkedYAMLException(String context, Mark contextMark, String problem, argument 29 this(context, contextMark, problem, problemMark, note, null); 32 protected MarkedYAMLException(String context, Mark contextMark, String problem, argument 34 super(context + "; " + problem + "; " + problemMark, cause); 37 this.problem = problem; 42 protected MarkedYAMLException(String context, Mark contextMark, String problem, Mark problemMark) { argument 43 this(context, contextMark, problem, problemMark, null, null); 46 protected MarkedYAMLException(String context, Mark contextMark, String problem, argument [all...] |
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/composer/ |
H A D | ComposerException.java | 24 protected ComposerException(String context, Mark contextMark, String problem, Mark problemMark) { argument 25 super(context, contextMark, problem, problemMark);
|
/external/libchrome/base/metrics/ |
H A D | histogram_flattener.h | 29 virtual void InconsistencyDetected(HistogramBase::Inconsistency problem) = 0; 34 HistogramBase::Inconsistency problem) = 0;
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/parser/ |
H A D | ParserException.java | 32 * Part of the input document in which vicinity the problem 36 * @param problem 37 * Part of the input document that caused the problem. 39 * Position of the <code>problem</code>. within the document. 41 public ParserException(String context, Mark contextMark, String problem, Mark problemMark) { argument 42 super(context, contextMark, problem, problemMark, null, null);
|
/external/ceres-solver/examples/ |
H A D | helloworld.cc | 64 // Build the problem. 65 Problem problem; local 71 problem.AddResidualBlock(cost_function, NULL, &x); 77 Solve(options, &problem, &summary);
|
H A D | helloworld_analytic_diff.cc | 69 // For this simple problem it is overkill to check if jacobians[0] 89 // Build the problem. 90 Problem problem; local 94 problem.AddResidualBlock(cost_function, NULL, &x); 100 Solve(options, &problem, &summary);
|
H A D | helloworld_numeric_diff.cc | 60 // Build the problem. 61 Problem problem; local 67 problem.AddResidualBlock(cost_function, NULL, &x); 73 Solve(options, &problem, &summary);
|
H A D | powell.cc | 110 Problem problem; local 111 // Add residual terms to the problem using the using the autodiff 114 problem.AddResidualBlock(new AutoDiffCostFunction<F1, 1, 1, 1>(new F1), 117 problem.AddResidualBlock(new AutoDiffCostFunction<F2, 1, 1, 1>(new F2), 120 problem.AddResidualBlock(new AutoDiffCostFunction<F3, 1, 1, 1>(new F3), 123 problem.AddResidualBlock(new AutoDiffCostFunction<F4, 1, 1, 1>(new F4), 145 Solve(options, &problem, &summary);
|
/external/ceres-solver/include/ceres/ |
H A D | c_api.h | 80 * problem, 119 /* Create and destroy a problem */ 120 /* TODO(keir): Add options for the problem. */ 122 CERES_EXPORT void ceres_free_problem(ceres_problem_t* problem); 126 ceres_problem_t* problem, 136 CERES_EXPORT void ceres_solve(ceres_problem_t* problem);
|
/external/oauth/core/src/main/java/net/oauth/ |
H A D | SimpleOAuthValidator.java | 78 OAuthProblemException problem = new OAuthProblemException("version_rejected"); 79 problem.setParameter("oauth_acceptable_versions", minVersion + "-" + maxVersion); 80 throw problem; 94 OAuthProblemException problem = new OAuthProblemException("timestamp_refused"); 95 problem.setParameter("oauth_acceptable_timestamps", min + "-" + max); 96 throw problem;
|