Sameer Agarwal | 8ed29a7 | 2012-06-07 17:04:25 -0700 | [diff] [blame] | 1 | %!TEX root = ceres-solver.tex |
| 2 | |
| 3 | \chapter{Version History} |
| 4 | \section*{1.2.0} |
| 5 | \subsection{New Features} |
| 6 | \begin{itemize} |
| 7 | \item \texttt{CXSparse} support. |
| 8 | \item Block oriented fill reducing orderings. This |
| 9 | reduces the factorization time for sparse |
| 10 | \texttt{CHOLMOD} significantly. |
| 11 | \item New Trust region loop with support for multiple |
| 12 | trust region step strategies. Currently only Levenberg-Marquardt is supported, but this refactoring opens the door for Dog-leg, Stiehaug and others. |
| 13 | \item \texttt{Cmake} file restructuring. Builds in \texttt{Release} mode by default, and now has platform specific tuning flags. |
| 14 | \item Re-organized documentation. No new content, but better organization. |
| 15 | \end{itemize} |
| 16 | |
| 17 | \subsection{Bug Fixes} |
| 18 | \begin{itemize} |
| 19 | \item Fixed integer overflow bug in \texttt{block\_random\_access\_sparse\_matrix.cc}. |
| 20 | \item Renamed some macros to prevent name conflicts. |
| 21 | \item Fixed incorrent input to \texttt{StateUpdatingCallback}. |
| 22 | \item Fixes to AutoDiff tests. |
| 23 | \item Various internal cleanups. |
| 24 | \end{itemize} |
| 25 | |
| 26 | \section*{1.1.1} |
| 27 | \subsection{Bug Fixes} |
| 28 | \begin{itemize} |
| 29 | \item Fix a bug in the handling of constant blocks. Thanks to Louis Simard for reporting this. |
| 30 | \item Add an optional lower bound to the Levenberg-Marquardt regularizer to prevent oscillating between well and ill posed linear problems. |
| 31 | \item Some internal refactoring and test fixes. |
| 32 | \end{itemize} |
| 33 | \section{1.1.0} |
| 34 | \subsection{New Features} |
| 35 | \begin{itemize} |
| 36 | \item New iterative linear solver for general sparse problems - \texttt{CGNR} and a block Jacobi preconditioner for it. |
| 37 | \item Changed the semantics of how \texttt{SuiteSparse} dependencies are checked and used. Now \texttt{SuiteSparse} is built by default, only if all of its dependencies are present. |
| 38 | \item Automatic differentiation now supports dynamic number of residuals. |
| 39 | \item Support for writing the linear least squares problems to disk in text format so that they can loaded into \texttt{MATLAB}. |
| 40 | \item Linear solver results are now checked for nan and infinities. |
| 41 | \item Added \texttt{.gitignore} file. |
| 42 | \item A better more robust build system. |
| 43 | \end{itemize} |
| 44 | |
| 45 | \subsection{Bug Fixes} |
| 46 | \begin{itemize} |
| 47 | \item Fixed a strict weak ordering bug in the schur ordering. |
| 48 | \item Grammar and typos in the documents and code comments. |
| 49 | \item Fixed tests which depended on exact equality between floating point values. |
| 50 | \end{itemize} |
| 51 | \section*{1.0.0} |
| 52 | Initial Release. |