HomeSort by relevance Sort by last modified time
    Searched refs:cost_change (Results 1 - 4 of 4) sorted by null

  /external/ceres-solver/include/ceres/
iteration_callback.h 52 cost_change(0.0),
100 double cost_change; member in struct:ceres::IterationSummary
196 // summary.cost_change,
  /external/ceres-solver/internal/ceres/
callbacks.cc 72 summary.cost_change,
81 output = "iter cost cost_change |gradient| |step| tr_ratio tr_radius ls_iter iter_time total_time\n";
88 summary.cost_change,
line_search_minimizer.cc 126 iteration_summary.cost_change = 0.0;
359 iteration_summary.cost_change = previous_state.cost - current_state.cost;
393 if (fabs(iteration_summary.cost_change) < absolute_function_tolerance) {
396 "|cost_change|/cost: %e <= %e",
397 fabs(iteration_summary.cost_change) /
trust_region_minimizer.cc 168 iteration_summary.cost_change = 0.0;
367 iteration_summary.cost_change = 0.0;
472 iteration_summary.cost_change = cost - new_cost;
475 if (fabs(iteration_summary.cost_change) < absolute_function_tolerance) {
478 "|cost_change|/cost: %e <= %e",
479 fabs(iteration_summary.cost_change) / cost,
487 iteration_summary.cost_change / model_cost_change;
513 // cost_change
520 // being used, cost_change includes the contribution of the
524 // cost_change
    [all...]

Completed in 463 milliseconds