changeset 12600:7c000c70f873

LSODE.cc: Add semicolon to error messages to prevent run-together text. * LSODE.cc: Add semicolon and capitalize Jacobian in error messages.
author Rik <octave@nomad.inbox5.com>
date Tue, 12 Apr 2011 17:42:00 -0700
parents 890af1cf0a86
children dc5920733a96
files liboctave/ChangeLog liboctave/LSODE.cc
diffstat 2 files changed, 7 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/ChangeLog	Mon Apr 11 11:33:08 2011 -0700
+++ b/liboctave/ChangeLog	Tue Apr 12 17:42:00 2011 -0700
@@ -1,3 +1,7 @@
+2011-04-12  Rik  <octave@nomad.inbox5.com>
+
+	* LSODE.cc: Add semicolon to error messages to prevent run-together text.
+
 2011-04-01  Jordi GutiƩrrez Hermoso  <jordigh@gmail.com>
 
 	* MatrixType (MatrixType::operator =): Plug memory leak due to
--- a/liboctave/LSODE.cc	Mon Apr 11 11:33:08 2011 -0700
+++ b/liboctave/LSODE.cc	Tue Apr 12 17:42:00 2011 -0700
@@ -292,7 +292,7 @@
     case -2:  // excess accuracy requested (tolerances too small).
     case -3:  // invalid input detected (see printed message).
     case -4:  // repeated error test failures (check all inputs).
-    case -5:  // repeated convergence failures (perhaps bad jacobian
+    case -5:  // repeated convergence failures (perhaps bad Jacobian
               // supplied or wrong choice of mf or tolerances).
     case -6:  // error weight became zero during problem. (solution
               // component i vanished, and atol or atol(i) = 0.)
@@ -349,13 +349,13 @@
 
     case -4:
       retval = std::string ("repeated error test failures (t = ")
-        + t_curr + "check all inputs)";
+        + t_curr + "; check all inputs)";
       break;
 
     case -5:
       retval = std::string ("repeated convergence failures (t = ")
         + t_curr
-        + "perhaps bad jacobian supplied or wrong choice of integration method or tolerances)";
+        + "; perhaps bad Jacobian supplied or wrong choice of integration method or tolerances)";
       break;
 
     case -6: