Remove support for Solver::Options::solver_log.

This is not really used and if needed can be implemented
in user code.

Change-Id: I56328d51c9d3788f90c751ff9c3a5937989f6ee0
This commit is contained in:
Sameer Agarwal
2014-05-29 14:26:52 -07:00
committed by Keir Mierle
parent 558ee40ee1
commit b766177bab
5 changed files with 10 additions and 33 deletions
-2
View File
@@ -116,7 +116,6 @@ DEFINE_double(point_sigma, 0.0, "Standard deviation of the point "
DEFINE_int32(random_seed, 38401, "Random seed used to set the state "
"of the pseudo random number generator used to generate "
"the pertubations.");
DEFINE_string(solver_log, "", "File to record the solver execution to.");
DEFINE_bool(line_search, false, "Use a line search instead of trust region "
"algorithm.");
@@ -320,7 +319,6 @@ void SolveProblem(const char* filename) {
BuildProblem(&bal_problem, &problem);
Solver::Options options;
SetSolverOptionsFromFlags(&bal_problem, &options);
options.solver_log = FLAGS_solver_log;
options.gradient_tolerance = 1e-16;
options.function_tolerance = 1e-16;
Solver::Summary summary;