diff liboctave/dSparse.cc @ 5893:d73ffe42f2c8

[project @ 2006-07-16 07:48:19 by jwe]
author jwe
date Sun, 16 Jul 2006 07:49:03 +0000
parents 50d43cdbec80
children da5a11b3d13e
line wrap: on
line diff
--- a/liboctave/dSparse.cc	Sat Jul 15 18:16:53 2006 +0000
+++ b/liboctave/dSparse.cc	Sun Jul 16 07:49:03 2006 +0000
@@ -1137,11 +1137,11 @@
       double *control = Control.fortran_vec ();
       UMFPACK_DNAME (defaults) (control);
 
-      double tmp = Voctave_sparse_controls.get_key ("spumoni");
+      double tmp = octave_sparse_params::get_key ("spumoni");
       if (!xisnan (tmp))
 	Control (UMFPACK_PRL) = tmp;
 
-      tmp = Voctave_sparse_controls.get_key ("piv_tol");
+      tmp = octave_sparse_params::get_key ("piv_tol");
       if (!xisnan (tmp))
 	{
 	  Control (UMFPACK_SYM_PIVOT_TOLERANCE) = tmp;
@@ -1149,7 +1149,7 @@
 	}
 
       // Set whether we are allowed to modify Q or not
-      tmp = Voctave_sparse_controls.get_key ("autoamd");
+      tmp = octave_sparse_params::get_key ("autoamd");
       if (!xisnan (tmp))
 	Control (UMFPACK_FIXQ) = tmp;
 
@@ -5765,10 +5765,10 @@
   double *control = Control.fortran_vec ();
   UMFPACK_DNAME (defaults) (control);
 
-  double tmp = Voctave_sparse_controls.get_key ("spumoni");
+  double tmp = octave_sparse_params::get_key ("spumoni");
   if (!xisnan (tmp))
     Control (UMFPACK_PRL) = tmp;
-  tmp = Voctave_sparse_controls.get_key ("piv_tol");
+  tmp = octave_sparse_params::get_key ("piv_tol");
   if (!xisnan (tmp))
     {
       Control (UMFPACK_SYM_PIVOT_TOLERANCE) = tmp;
@@ -5776,7 +5776,7 @@
     }
 
   // Set whether we are allowed to modify Q or not
-  tmp = Voctave_sparse_controls.get_key ("autoamd");
+  tmp = octave_sparse_params::get_key ("autoamd");
   if (!xisnan (tmp))
     Control (UMFPACK_FIXQ) = tmp;
 
@@ -5893,7 +5893,7 @@
 	  CHOLMOD_NAME(start) (cm);
 	  cm->prefer_zomplex = false;
 
-	  double spu = Voctave_sparse_controls.get_key ("spumoni");
+	  double spu = octave_sparse_params::get_key ("spumoni");
 	  if (spu == 0.)
 	    {
 	      cm->print = -1;
@@ -6124,7 +6124,7 @@
 	  CHOLMOD_NAME(start) (cm);
 	  cm->prefer_zomplex = false;
 
-	  double spu = Voctave_sparse_controls.get_key ("spumoni");
+	  double spu = octave_sparse_params::get_key ("spumoni");
 	  if (spu == 0.)
 	    {
 	      cm->print = -1;
@@ -6403,7 +6403,7 @@
 	  CHOLMOD_NAME(start) (cm);
 	  cm->prefer_zomplex = false;
 
-	  double spu = Voctave_sparse_controls.get_key ("spumoni");
+	  double spu = octave_sparse_params::get_key ("spumoni");
 	  if (spu == 0.)
 	    {
 	      cm->print = -1;
@@ -6654,7 +6654,7 @@
 	  CHOLMOD_NAME(start) (cm);
 	  cm->prefer_zomplex = false;
 
-	  double spu = Voctave_sparse_controls.get_key ("spumoni");
+	  double spu = octave_sparse_params::get_key ("spumoni");
 	  if (spu == 0.)
 	    {
 	      cm->print = -1;