diff liboctave/LSODE.h @ 5275:23b37da9fd5b

[project @ 2005-04-08 16:07:35 by jwe]
author jwe
date Fri, 08 Apr 2005 16:07:37 +0000
parents e35b034d3523
children 4c8a2e4e0717
line wrap: on
line diff
--- a/liboctave/LSODE.h
+++ b/liboctave/LSODE.h
@@ -52,16 +52,16 @@
 
   bool initialized;
 
-  int method_flag;
-  int maxord;
-  int itask;
-  int iopt;
-  int itol;
+  octave_idx_type method_flag;
+  octave_idx_type maxord;
+  octave_idx_type itask;
+  octave_idx_type iopt;
+  octave_idx_type itol;
 
-  int liw;
-  int lrw;
+  octave_idx_type liw;
+  octave_idx_type lrw;
 
-  Array<int> iwork;
+  Array<octave_idx_type> iwork;
   Array<double> rwork;
 
   double rel_tol;
@@ -70,7 +70,7 @@
 
   double *px;
   double *pabs_tol;
-  int *piwork;
+  octave_idx_type *piwork;
   double *prwork;
 };