Lines Matching refs:report
283 void StringifyOrdering(const vector<int>& ordering, string* report) { in StringifyOrdering() argument
285 internal::StringAppendF(report, "AUTOMATIC"); in StringifyOrdering()
290 internal::StringAppendF(report, "%d, ", ordering[i]); in StringifyOrdering()
292 internal::StringAppendF(report, "%d", ordering.back()); in StringifyOrdering()
404 string report = in FullReport() local
409 StringAppendF(&report, "%45s %21s\n", "Original", "Reduced"); in FullReport()
410 StringAppendF(&report, "Parameter blocks % 25d% 25d\n", in FullReport()
412 StringAppendF(&report, "Parameters % 25d% 25d\n", in FullReport()
415 StringAppendF(&report, "Effective parameters% 25d% 25d\n", in FullReport()
418 StringAppendF(&report, "Residual blocks % 25d% 25d\n", in FullReport()
420 StringAppendF(&report, "Residual % 25d% 25d\n", in FullReport()
425 StringAppendF(&report, "\nMinimizer %19s\n", in FullReport()
431 StringAppendF(&report, "\nDense linear algebra library %15s\n", in FullReport()
441 StringAppendF(&report, "\nSparse linear algebra library %15s\n", in FullReport()
446 StringAppendF(&report, "Trust region strategy %19s", in FullReport()
451 StringAppendF(&report, " (TRADITIONAL)"); in FullReport()
453 StringAppendF(&report, " (SUBSPACE)"); in FullReport()
456 StringAppendF(&report, "\n"); in FullReport()
457 StringAppendF(&report, "\n"); in FullReport()
459 StringAppendF(&report, "%45s %21s\n", "Given", "Used"); in FullReport()
460 StringAppendF(&report, "Linear solver %25s%25s\n", in FullReport()
466 StringAppendF(&report, "Preconditioner %25s%25s\n", in FullReport()
473 StringAppendF(&report, "Visibility clustering%24s%25s\n", in FullReport()
479 StringAppendF(&report, "Threads % 25d% 25d\n", in FullReport()
481 StringAppendF(&report, "Linear solver threads % 23d% 25d\n", in FullReport()
490 StringAppendF(&report, in FullReport()
497 StringAppendF(&report, in FullReport()
508 StringAppendF(&report, in FullReport()
515 StringAppendF(&report, "\nMinimizer %19s\n", "LINE_SEARCH"); in FullReport()
530 StringAppendF(&report, "Line search direction %19s\n", in FullReport()
538 StringAppendF(&report, "Line search type %19s\n", in FullReport()
540 StringAppendF(&report, "\n"); in FullReport()
542 StringAppendF(&report, "%45s %21s\n", "Given", "Used"); in FullReport()
543 StringAppendF(&report, "Threads % 25d% 25d\n", in FullReport()
547 StringAppendF(&report, "\nCost:\n"); in FullReport()
548 StringAppendF(&report, "Initial % 30e\n", initial_cost); in FullReport()
551 StringAppendF(&report, "Final % 30e\n", final_cost); in FullReport()
552 StringAppendF(&report, "Change % 30e\n", in FullReport()
556 StringAppendF(&report, "\nMinimizer iterations % 16d\n", in FullReport()
563 StringAppendF(&report, "Successful steps % 14d\n", in FullReport()
565 StringAppendF(&report, "Unsuccessful steps % 14d\n", in FullReport()
569 StringAppendF(&report, "Steps with inner iterations % 14d\n", in FullReport()
573 StringAppendF(&report, "\nTime (in seconds):\n"); in FullReport()
574 StringAppendF(&report, "Preprocessor %25.3f\n", in FullReport()
577 StringAppendF(&report, "\n Residual evaluation %23.3f\n", in FullReport()
579 StringAppendF(&report, " Jacobian evaluation %23.3f\n", in FullReport()
583 StringAppendF(&report, " Linear solver %23.3f\n", in FullReport()
588 StringAppendF(&report, " Inner iterations %23.3f\n", in FullReport()
592 StringAppendF(&report, "Minimizer %25.3f\n\n", in FullReport()
595 StringAppendF(&report, "Postprocessor %24.3f\n", in FullReport()
598 StringAppendF(&report, "Total %25.3f\n\n", in FullReport()
601 StringAppendF(&report, "Termination: %25s (%s)\n", in FullReport()
603 return report; in FullReport()