comparison liboctave/DASPK.cc @ 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 a83bad07f7e3
children 72c96de7a403
comparison
equal deleted inserted replaced
11585:1473d0cf86d2 11586:12df7854fa7c
211 ("daspk: no user supplied RHS subroutine!"); 211 ("daspk: no user supplied RHS subroutine!");
212 212
213 integration_error = true; 213 integration_error = true;
214 return retval; 214 return retval;
215 } 215 }
216 216
217 info(4) = user_jac ? 1 : 0; 217 info(4) = user_jac ? 1 : 0;
218 218
219 DAEFunc::reset = false; 219 DAEFunc::reset = false;
220 220
221 octave_idx_type eiq = enforce_inequality_constraints (); 221 octave_idx_type eiq = enforce_inequality_constraints ();
577 return integrate (tout, dummy, tcrit); 577 return integrate (tout, dummy, tcrit);
578 } 578 }
579 579
580 Matrix 580 Matrix
581 DASPK::integrate (const ColumnVector& tout, Matrix& xdot_out, 581 DASPK::integrate (const ColumnVector& tout, Matrix& xdot_out,
582 const ColumnVector& tcrit) 582 const ColumnVector& tcrit)
583 { 583 {
584 Matrix retval; 584 Matrix retval;
585 585
586 octave_idx_type n_out = tout.capacity (); 586 octave_idx_type n_out = tout.capacity ();
587 octave_idx_type n = size (); 587 octave_idx_type n = size ();