diff src/DLD-FUNCTIONS/chol.cc @ 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 0d7ebf353400
children 7c02ec148a3c
line wrap: on
line diff
--- 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)