# HG changeset patch # User John W. Eaton # Date 1235669122 18000 # Node ID 078ca05e4ef809c44bde526386ddcc68e6970c9e # Parent 1beaaffb3c1f775249bcd1d54043b1ac199a21d7 chol.cc: correct spelling of CHOLMOD in tests diff -r 1beaaffb3c1f -r 078ca05e4ef8 src/ChangeLog --- a/src/ChangeLog Thu Feb 26 12:20:17 2009 -0500 +++ b/src/ChangeLog Thu Feb 26 12:25:22 2009 -0500 @@ -1,5 +1,7 @@ 2009-02-26 John W. Eaton + * DLD-FUNCTIONS/chol.cc: Correct spelling of CHOLMOD in tests. + * version.h (OCTAVE_VERSION): Now 3.1.53+. (OCTAVE_API_VERSION): Now api-v35+. diff -r 1beaaffb3c1f -r 078ca05e4ef8 src/DLD-FUNCTIONS/chol.cc --- a/src/DLD-FUNCTIONS/chol.cc Thu Feb 26 12:20:17 2009 -0500 +++ b/src/DLD-FUNCTIONS/chol.cc Thu Feb 26 12:25:22 2009 -0500 @@ -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)