diff liboctave/SparsedbleCHOL.cc @ 5785:6b9cec830d72

[project @ 2006-05-03 19:32:46 by dbateman]
author dbateman
date Wed, 03 May 2006 19:32:48 +0000
parents b4cfbb0ec8c4
children 93c65f2a5668
line wrap: on
line diff
--- a/liboctave/SparsedbleCHOL.cc
+++ b/liboctave/SparsedbleCHOL.cc
@@ -42,18 +42,18 @@
 
   if (r_nr == r_nc)
     {
-      SparseType mattype (r);
+      MatrixType mattype (r);
       int typ = mattype.type (false);
       double rcond;
       octave_idx_type info;
       SparseMatrix rinv;
 
-      if (typ == SparseType::Upper)
+      if (typ == MatrixType::Upper)
 	{
 	  rinv = r.inverse(mattype, info, rcond, true, false);
 	  retval = rinv.transpose() * rinv;
 	}
-      else if (typ == SparseType::Lower)
+      else if (typ == MatrixType::Lower)
 	{
 	  rinv = r.transpose().inverse(mattype, info, rcond, true, false);
 	  retval = rinv.transpose() * rinv;