From 352e4dd182abbbff01ceb8bfc84482b34100d3c3 Mon Sep 17 00:00:00 2001 From: Sameer Agarwal Date: Mon, 17 Nov 2014 06:50:41 -0800 Subject: [PATCH] Stricter options checking breaks nist.cc Fix the breakage! Change-Id: Ic263852cd7c8a9615d8d3dab43c6cf7d81fc8d40 --- examples/nist.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/nist.cc b/examples/nist.cc index b29b285a5..607561a54 100644 --- a/examples/nist.cc +++ b/examples/nist.cc @@ -92,7 +92,7 @@ DEFINE_string(linear_solver, "dense_qr", "Options are: " "cgnr"); DEFINE_string(preconditioner, "jacobi", "Options are: " "identity, jacobi"); -DEFINE_string(line_search, "armijo", +DEFINE_string(line_search, "wolfe", "Line search algorithm to use, choices are: armijo and wolfe."); DEFINE_string(line_search_direction, "lbfgs", "Line search direction algorithm to use, choices: lbfgs, bfgs");