diff src/DLD-FUNCTIONS/__glpk__.cc @ 11574:a83bad07f7e3

attempt better backward compatibility for Array resize functions
author John W. Eaton <jwe@octave.org>
date Thu, 20 Jan 2011 00:12:05 -0500
parents 57632dea2446
children 12df7854fa7c
line wrap: on
line diff
--- a/src/DLD-FUNCTIONS/__glpk__.cc	Wed Jan 19 20:29:11 2011 -0800
+++ b/src/DLD-FUNCTIONS/__glpk__.cc	Thu Jan 20 00:12:05 2011 -0500
@@ -520,8 +520,8 @@
       mrowsA = A.rows ();
       octave_idx_type Anc = A.cols ();
       octave_idx_type Anz = A.nnz ();
-      rn.resize (Anz+1, 1);
-      cn.resize (Anz+1, 1);
+      rn.resize (dim_vector (Anz+1, 1));
+      cn.resize (dim_vector (Anz+1, 1));
       a.resize (Anz+1, 0.0);
 
       if (Anc != mrowsc)
@@ -550,8 +550,8 @@
         }
 
       mrowsA = A.rows ();
-      rn.resize (mrowsA*mrowsc+1, 1);
-      cn.resize (mrowsA*mrowsc+1, 1);
+      rn.resize (dim_vector (mrowsA*mrowsc+1, 1));
+      cn.resize (dim_vector (mrowsA*mrowsc+1, 1));
       a.resize (mrowsA*mrowsc+1, 0.0);
 
       for (int i = 0; i < mrowsA; i++)