Go to file
naoaki 85c2de4384 Initial commit.
git-svn-id: file:///home/svnrepos/software/liblbfgs/trunk@2 ecf4c44f-38d1-4fa4-9757-a0b4dd0349fc
2008-04-24 15:04:59 +00:00
doc Initial commit. 2008-04-24 15:04:59 +00:00
include Initial commit. 2008-04-24 15:04:59 +00:00
lib Initial commit. 2008-04-24 15:04:59 +00:00
sample Initial commit. 2008-04-24 15:04:59 +00:00
AUTHORS Initial commit. 2008-04-24 15:04:59 +00:00
autogen.sh Initial commit. 2008-04-24 15:04:59 +00:00
ChangeLog Initial commit. 2008-04-24 15:04:59 +00:00
configure.in Initial commit. 2008-04-24 15:04:59 +00:00
COPYING Initial commit. 2008-04-24 15:04:59 +00:00
Makefile.am Initial commit. 2008-04-24 15:04:59 +00:00
NEWS Initial commit. 2008-04-24 15:04:59 +00:00
README Initial commit. 2008-04-24 15:04:59 +00:00

           libLBFGS: C library of limited-memory BFGS (L-BFGS)

                                       Copyright (c) 1990, Jorge Nocedal 
                                       Copyright (c) 2007, Naoaki Okazaki

=========================================================================
1. Introduction
=========================================================================
libLBFGS is a C port of the implementation of Limited-memory
Broyden-Fletcher-Goldfarb-Shanno (L-BFGS) method written by Jorge Nocedal.
The original FORTRAN source code is available at:
http://www.ece.northwestern.edu/~nocedal/lbfgs.html

The L-BFGS method solves the unconstrainted minimization problem:
    minimize F(x), x = (x1, x2, ..., xN),
only if the objective function F(x) and its gradient G(x) are computable.

Refer to the libLBFGS web site for more information.
http://www.chokkan.org/software/liblbfgs/



=========================================================================
2. How to build the sample program
=========================================================================
[Microsoft Visual Studio 2005]
Open the solution file "test/lbfgs.sln" and build it.

[GCC]
$ cd test
$ ./build.sh



=========================================================================
3. License
=========================================================================
libLBFGS is distributed under the term of the MIT license.
Please refer to COPYING file in the distribution.

$Id$