comparison liboctave/numeric/DASSL.cc @ 21751:b571fc85953f

maint: Use two spaces after period to indicate sentence break.
author Rik <rik@octave.org>
date Thu, 19 May 2016 18:48:52 -0700
parents aba2e6293dd8
children 59cadee1c74b
comparison
equal deleted inserted replaced
21750:6720e5a220ba 21751:b571fc85953f
293 piwork, liw, dummy, idummy, ddassl_j)); 293 piwork, liw, dummy, idummy, ddassl_j));
294 294
295 switch (istate) 295 switch (istate)
296 { 296 {
297 case 1: // A step was successfully taken in intermediate-output 297 case 1: // A step was successfully taken in intermediate-output
298 // mode. The code has not yet reached TOUT. 298 // mode. The code has not yet reached TOUT.
299 case 2: // The integration to TSTOP was successfully completed 299 case 2: // The integration to TSTOP was successfully completed
300 // (T=TSTOP) by stepping exactly to TSTOP. 300 // (T=TSTOP) by stepping exactly to TSTOP.
301 case 3: // The integration to TOUT was successfully completed 301 case 3: // The integration to TOUT was successfully completed
302 // (T=TOUT) by stepping past TOUT. Y(*) is obtained by 302 // (T=TOUT) by stepping past TOUT. Y(*) is obtained by
303 // interpolation. YPRIME(*) is obtained by interpolation. 303 // interpolation. YPRIME(*) is obtained by interpolation.
322 // equal to minus one. 322 // equal to minus one.
323 case -11: // IRES equal to -2 was encountered and control is being 323 case -11: // IRES equal to -2 was encountered and control is being
324 // returned to the calling program. 324 // returned to the calling program.
325 case -12: // DDASSL failed to compute the initial YPRIME. 325 case -12: // DDASSL failed to compute the initial YPRIME.
326 case -33: // The code has encountered trouble from which it cannot 326 case -33: // The code has encountered trouble from which it cannot
327 // recover. A message is printed explaining the trouble 327 // recover. A message is printed explaining the trouble
328 // and control is returned to the calling program. For 328 // and control is returned to the calling program. For
329 // example, this occurs when invalid input is detected. 329 // example, this occurs when invalid input is detected.
330 integration_error = true; 330 integration_error = true;
331 break; 331 break;
332 332
333 default: 333 default: