- Preparation for liblbfgs 1.9.
- Updated the copyright information. git-svn-id: file:///home/svnrepos/software/liblbfgs/trunk@65 ecf4c44f-38d1-4fa4-9757-a0b4dd0349fc
This commit is contained in:
parent
f9d0f5539f
commit
da483ce061
@ -1,3 +1,9 @@
|
|||||||
|
2010-01-29 Naoaki Okazaki <okazaki at chokkan org>
|
||||||
|
|
||||||
|
* libLBFGS 1.9:
|
||||||
|
- Fixed a mistake in checking the validity of the parameters "ftol" and "wolfe"; this mistake was discovered by Kevin S. Van Horn.
|
||||||
|
|
||||||
|
|
||||||
2009-07-13 Naoaki Okazaki <okazaki at chokkan org>
|
2009-07-13 Naoaki Okazaki <okazaki at chokkan org>
|
||||||
|
|
||||||
* libLBFGS 1.8:
|
* libLBFGS 1.8:
|
||||||
|
@ -18,7 +18,7 @@ AC_CONFIG_SRCDIR([lib/lbfgs.c])
|
|||||||
dnl ------------------------------------------------------------------
|
dnl ------------------------------------------------------------------
|
||||||
dnl Initialization for automake
|
dnl Initialization for automake
|
||||||
dnl ------------------------------------------------------------------
|
dnl ------------------------------------------------------------------
|
||||||
AM_INIT_AUTOMAKE(liblbfgs, 1.8)
|
AM_INIT_AUTOMAKE(liblbfgs, 1.9)
|
||||||
AC_CONFIG_HEADERS(config.h)
|
AC_CONFIG_HEADERS(config.h)
|
||||||
AM_MAINTAINER_MODE
|
AM_MAINTAINER_MODE
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<hr/>
|
<hr/>
|
||||||
<div>
|
<div>
|
||||||
Copyright (c) 2002-2009 by Naoaki Okazaki
|
Copyright (c) 2002-2010 by Naoaki Okazaki
|
||||||
<br /><i>$datetime</i>
|
<br /><i>$datetime</i>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* C library of Limited memory BFGS (L-BFGS).
|
* C library of Limited memory BFGS (L-BFGS).
|
||||||
*
|
*
|
||||||
* Copyright (c) 1990, Jorge Nocedal
|
* Copyright (c) 1990, Jorge Nocedal
|
||||||
* Copyright (c) 2007,2008,2009,2010 Naoaki Okazaki
|
* Copyright (c) 2007-2010 Naoaki Okazaki
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
@ -584,6 +584,7 @@ Among the various ports of L-BFGS, this library provides several features:
|
|||||||
|
|
||||||
This library is used by:
|
This library is used by:
|
||||||
- <a href="http://www.chokkan.org/software/crfsuite/">CRFsuite: A fast implementation of Conditional Random Fields (CRFs)</a>
|
- <a href="http://www.chokkan.org/software/crfsuite/">CRFsuite: A fast implementation of Conditional Random Fields (CRFs)</a>
|
||||||
|
- <a href="http://www.chokkan.org/software/classias/">Classias: A collection of machine-learning algorithms for classification</a>
|
||||||
- <a href="http://www.public.iastate.edu/~gdancik/mlegp/">mlegp: an R package for maximum likelihood estimates for Gaussian processes</a>
|
- <a href="http://www.public.iastate.edu/~gdancik/mlegp/">mlegp: an R package for maximum likelihood estimates for Gaussian processes</a>
|
||||||
- <a href="http://infmath.uibk.ac.at/~matthiasf/imaging2/">imaging2: the imaging2 class library</a>
|
- <a href="http://infmath.uibk.ac.at/~matthiasf/imaging2/">imaging2: the imaging2 class library</a>
|
||||||
- <a href="http://search.cpan.org/~laye/Algorithm-LBFGS-0.16/">Algorithm::LBFGS - Perl extension for L-BFGS</a>
|
- <a href="http://search.cpan.org/~laye/Algorithm-LBFGS-0.16/">Algorithm::LBFGS - Perl extension for L-BFGS</a>
|
||||||
@ -591,12 +592,15 @@ This library is used by:
|
|||||||
|
|
||||||
@section download Download
|
@section download Download
|
||||||
|
|
||||||
- <a href="http://www.chokkan.org/software/dist/liblbfgs-1.8.tar.gz">Source code</a>
|
- <a href="http://www.chokkan.org/software/dist/liblbfgs-1.9.tar.gz">Source code</a>
|
||||||
|
|
||||||
libLBFGS is distributed under the term of the
|
libLBFGS is distributed under the term of the
|
||||||
<a href="http://opensource.org/licenses/mit-license.php">MIT license</a>.
|
<a href="http://opensource.org/licenses/mit-license.php">MIT license</a>.
|
||||||
|
|
||||||
@section changelog History
|
@section changelog History
|
||||||
|
- 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.
|
||||||
- Version 1.8 (2009-07-13):
|
- Version 1.8 (2009-07-13):
|
||||||
- Accepted the patch submitted by Takashi Imamichi;
|
- Accepted the patch submitted by Takashi Imamichi;
|
||||||
the backtracking method now has three criteria for choosing the step
|
the backtracking method now has three criteria for choosing the step
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* ANSI C implementation of vector operations.
|
* ANSI C implementation of vector operations.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2007,2008,2009,2010 Naoaki Okazaki
|
* Copyright (c) 2007-2010 Naoaki Okazaki
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* SSE2 implementation of vector oprations (64bit double).
|
* SSE2 implementation of vector oprations (64bit double).
|
||||||
*
|
*
|
||||||
* Copyright (c) 2007,2008,2009,2010 Naoaki Okazaki
|
* Copyright (c) 2007-2010 Naoaki Okazaki
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* SSE/SSE3 implementation of vector oprations (32bit float).
|
* SSE/SSE3 implementation of vector oprations (32bit float).
|
||||||
*
|
*
|
||||||
* Copyright (c) 2007,2008,2009,2010 Naoaki Okazaki
|
* Copyright (c) 2007-2010 Naoaki Okazaki
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* Limited memory BFGS (L-BFGS).
|
* Limited memory BFGS (L-BFGS).
|
||||||
*
|
*
|
||||||
* Copyright (c) 1990, Jorge Nocedal
|
* Copyright (c) 1990, Jorge Nocedal
|
||||||
* Copyright (c) 2007,2008,2009,2010 Naoaki Okazaki
|
* Copyright (c) 2007-2010 Naoaki Okazaki
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
Loading…
Reference in New Issue
Block a user