From 9181bfd809ce0f3b4cf3c412f7ebebd01f3a8d3b Mon Sep 17 00:00:00 2001 From: Davis King Date: Tue, 9 Nov 2010 23:02:00 +0000 Subject: [PATCH] Fixed a typo found by Matt P. Dziubinski --HG-- extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403875 --- examples/optimization_ex.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/optimization_ex.cpp b/examples/optimization_ex.cpp index 1e8fbe924..69119903d 100755 --- a/examples/optimization_ex.cpp +++ b/examples/optimization_ex.cpp @@ -211,7 +211,7 @@ int main() find_min_using_approximate_derivatives(bfgs_search_strategy(), objective_delta_stop_strategy(1e-7), test_function(target), starting_point, -1); - // At this point the correct value of (3,6,1,7) should be found and stored in starting_point + // At this point the correct value of (3,5,1,7) should be found and stored in starting_point cout << starting_point << endl; // Now lets try it again with the conjugate gradient algorithm.