- Updated the version of doxyfile
- Preparation for 1.10 release
This commit is contained in:
parent
fb9d7aa0fb
commit
8cc8e74417
1354
doc/doxyfile
1354
doc/doxyfile
File diff suppressed because it is too large
Load Diff
@ -573,7 +573,7 @@ Among the various ports of L-BFGS, this library provides several features:
|
||||
The library is thread-safe, which is the secondary gain from the callback
|
||||
interface.
|
||||
- <b>Cross platform.</b> The source code can be compiled on Microsoft Visual
|
||||
Studio 2005, GNU C Compiler (gcc), etc.
|
||||
Studio 2010, GNU C Compiler (gcc), etc.
|
||||
- <b>Configurable precision</b>: A user can choose single-precision (float)
|
||||
or double-precision (double) accuracy by changing ::LBFGS_FLOAT macro.
|
||||
- <b>SSE/SSE2 optimization</b>:
|
||||
@ -593,16 +593,18 @@ This library is used by:
|
||||
@section download Download
|
||||
|
||||
- <a href="http://www.chokkan.org/software/dist/liblbfgs-1.9.tar.gz">Source code</a>
|
||||
- <a href="https://github.com/chokkan/liblbfgs">GitHub repository</a>
|
||||
|
||||
libLBFGS is distributed under the term of the
|
||||
<a href="http://opensource.org/licenses/mit-license.php">MIT license</a>.
|
||||
|
||||
@section changelog History
|
||||
- Version 1.10 (2010-xx-xx):
|
||||
- Version 1.10 (2010-12-22):
|
||||
- Fixed compiling errors on Mac OS X; this patch was kindly submitted by
|
||||
Nic Schraudolph.
|
||||
- Reduced compiling warnings on Mac OS X; this patch was kindly submitted
|
||||
by Tamas Nepusz.
|
||||
- Replaced memalign() with posix_memalign().
|
||||
- Version 1.9 (2010-01-29):
|
||||
- Fixed a mistake in checking the validity of the parameters "ftol" and
|
||||
"wolfe"; this was discovered by Kevin S. Van Horn.
|
||||
|
@ -64,8 +64,7 @@ int main(int argc, char *argv)
|
||||
|
||||
/* Initialize the parameters for the L-BFGS optimization. */
|
||||
lbfgs_parameter_init(¶m);
|
||||
//param.orthantwise_c = 1;
|
||||
//param.linesearch = LBFGS_LINESEARCH_BACKTRACKING;
|
||||
/*param.linesearch = LBFGS_LINESEARCH_BACKTRACKING;*/
|
||||
|
||||
/*
|
||||
Start the L-BFGS optimization; this will invoke the callback functions
|
||||
|
Loading…
Reference in New Issue
Block a user