comparison liboctave/DASSL.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
192 integration_error = true; 192 integration_error = true;
193 return retval; 193 return retval;
194 } 194 }
195 195
196 info(4) = user_jac ? 1 : 0; 196 info(4) = user_jac ? 1 : 0;
197 197
198 DAEFunc::reset = false; 198 DAEFunc::reset = false;
199 199
200 // DASSL_options 200 // DASSL_options
201 201
202 double hmax = maximum_step_size (); 202 double hmax = maximum_step_size ();
392 return integrate (tout, dummy, tcrit); 392 return integrate (tout, dummy, tcrit);
393 } 393 }
394 394
395 Matrix 395 Matrix
396 DASSL::integrate (const ColumnVector& tout, Matrix& xdot_out, 396 DASSL::integrate (const ColumnVector& tout, Matrix& xdot_out,
397 const ColumnVector& tcrit) 397 const ColumnVector& tcrit)
398 { 398 {
399 Matrix retval; 399 Matrix retval;
400 400
401 octave_idx_type n_out = tout.capacity (); 401 octave_idx_type n_out = tout.capacity ();
402 octave_idx_type n = size (); 402 octave_idx_type n = size ();