Mercurial > hg > octave-nkf
changeset 8880:078ca05e4ef8
chol.cc: correct spelling of CHOLMOD in tests
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 26 Feb 2009 12:25:22 -0500 |
parents | 1beaaffb3c1f |
children | 8ed42c679af5 |
files | src/ChangeLog src/DLD-FUNCTIONS/chol.cc |
diffstat | 2 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2009-02-26 John W. Eaton <jwe@octave.org> + * DLD-FUNCTIONS/chol.cc: Correct spelling of CHOLMOD in tests. + * version.h (OCTAVE_VERSION): Now 3.1.53+. (OCTAVE_API_VERSION): Now api-v35+.
--- a/src/DLD-FUNCTIONS/chol.cc +++ b/src/DLD-FUNCTIONS/chol.cc @@ -479,10 +479,10 @@ %!testif HAVE_CHOLMOD %! Ainv2 = inv(sparse(A)); %! assert (norm(Ainv-Ainv2),0,1e-10) -%!testif HAVE_CHOLDMOD +%!testif HAVE_CHOLMOD %! Ainv3 = cholinv(sparse(A)); %! assert (norm(Ainv-Ainv3),0,1e-10) -%!testif HAVE_CHOLDMOD +%!testif HAVE_CHOLMOD %! Ainv4 = spcholinv(sparse(A)); %! assert (norm(Ainv-Ainv4),0,1e-10)