Mercurial > hg > octave-nkf
comparison liboctave/DASPK.h @ 11586:12df7854fa7c
strip trailing whitespace from source files
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 20 Jan 2011 17:24:59 -0500 |
parents | fd0a3ac60b0e |
children | 72c96de7a403 |
comparison
equal
deleted
inserted
replaced
11585:1473d0cf86d2 | 11586:12df7854fa7c |
---|---|
52 | 52 |
53 ColumnVector do_integrate (double t); | 53 ColumnVector do_integrate (double t); |
54 | 54 |
55 Matrix do_integrate (const ColumnVector& tout); | 55 Matrix do_integrate (const ColumnVector& tout); |
56 | 56 |
57 Matrix do_integrate (const ColumnVector& tout, const ColumnVector& tcrit); | 57 Matrix do_integrate (const ColumnVector& tout, const ColumnVector& tcrit); |
58 | 58 |
59 Matrix integrate (const ColumnVector& tout, Matrix& xdot_out); | 59 Matrix integrate (const ColumnVector& tout, Matrix& xdot_out); |
60 | 60 |
61 Matrix integrate (const ColumnVector& tout, Matrix& xdot_out, | 61 Matrix integrate (const ColumnVector& tout, Matrix& xdot_out, |
62 const ColumnVector& tcrit); | 62 const ColumnVector& tcrit); |
63 | 63 |
64 std::string error_message (void) const; | 64 std::string error_message (void) const; |
65 | 65 |
66 private: | 66 private: |
67 | 67 |
68 bool initialized; | 68 bool initialized; |
69 | 69 |
70 octave_idx_type liw; | 70 octave_idx_type liw; |
71 octave_idx_type lrw; | 71 octave_idx_type lrw; |
72 | 72 |
73 Array<octave_idx_type> info; | 73 Array<octave_idx_type> info; |
74 Array<octave_idx_type> iwork; | 74 Array<octave_idx_type> iwork; |
75 | 75 |