comparison liboctave/LSODE.cc @ 7231:2eb392d058bb

[project @ 2007-11-30 18:53:29 by jwe]
author jwe
date Fri, 30 Nov 2007 18:53:30 +0000
parents a1dbe9d80eee
children 29980c6b8604
comparison
equal deleted inserted replaced
7230:a760bd2630d5 7231:2eb392d058bb
24 #ifdef HAVE_CONFIG_H 24 #ifdef HAVE_CONFIG_H
25 #include <config.h> 25 #include <config.h>
26 #endif 26 #endif
27 27
28 #include <cfloat> 28 #include <cfloat>
29 #include <cmath>
30 29
31 #include <sstream> 30 #include <sstream>
32 31
33 #include "LSODE.h" 32 #include "LSODE.h"
34 #include "f77-fcn.h" 33 #include "f77-fcn.h"
35 #include "lo-error.h" 34 #include "lo-error.h"
35 #include "lo-math.h"
36 #include "quit.h" 36 #include "quit.h"
37 37
38 typedef octave_idx_type (*lsode_fcn_ptr) (const octave_idx_type&, const double&, double*, 38 typedef octave_idx_type (*lsode_fcn_ptr) (const octave_idx_type&, const double&, double*,
39 double*, octave_idx_type&); 39 double*, octave_idx_type&);
40 40