From d2a5195b512164fec286c6a52b40d7766977caa3 Mon Sep 17 00:00:00 2001 From: Sameer Agarwal Date: Sun, 24 Feb 2013 15:09:17 -0800 Subject: [PATCH] Version history update. Change-Id: I477ec05a78ca4cd735a525253c9b6adfa3bddea7 --- docs/source/version_history.rst | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/docs/source/version_history.rst b/docs/source/version_history.rst index 977182423..40e2bcbfb 100644 --- a/docs/source/version_history.rst +++ b/docs/source/version_history.rst @@ -11,15 +11,20 @@ Backward Incompatible API Changes --------------------------------- #. Added ``Problem::Evaluate``. Now you can evaluate a problem or any - part of it without calling the solver. In light of this, - ``Solver::Options::return_initial_residuals``, - ``Solver::Options::return_initial_gradient``, - ``Solver::Options::return_initial_jacobian``, - ``Solver::Options::return_final_residuals``, - ``Solver::Options::return_final_gradient`` and - ``Solver::Options::return_final_jacobian`` have been deprecated and + part of it without calling the solver. + + In light of this the following settings have been deprecated and removed from the API. + - ``Solver::Options::return_initial_residuals`` + - ``Solver::Options::return_initial_gradient`` + - ``Solver::Options::return_initial_jacobian`` + - ``Solver::Options::return_final_residuals`` + - ``Solver::Options::return_final_gradient`` + - ``Solver::Options::return_final_jacobian`` + + Instead we recommend using something like this. + .. code-block:: c++ Problem problem; @@ -99,6 +104,11 @@ New Features Bug Fixes --------- +#. Fix ``No previous prototype`` warnings. (Sergey Sharybin) + +#. MinGW build fixes. (Sergey Sharybin) + +#. Lots of minor code and lint fixes reported by William Rucklidge. #. Fixed a bug in ``solver_impl.cc`` residual evaluation. (Markus Moll)