diff liboctave/ODES.h @ 10312:cbc402e64d83

untabify liboctave header files
author John W. Eaton <jwe@octave.org>
date Thu, 11 Feb 2010 12:14:48 -0500
parents 4c0cdbe0acca
children 4638800cd660
line wrap: on
line diff
--- a/liboctave/ODES.h
+++ b/liboctave/ODES.h
@@ -38,7 +38,7 @@
     : base_diff_eqn (s, tm), ODESFunc (f), xdot (s.length (), 0.0), theta () { }
 
   ODES (const ColumnVector& s, const ColumnVector& xtheta, double tm,
-	ODESFunc& f)
+        ODESFunc& f)
     : base_diff_eqn (s, tm), ODESFunc (f), xdot (s.length (), 0.0),
       theta (xtheta) { }
 
@@ -48,13 +48,13 @@
   ODES& operator = (const ODES& a)
     {
       if (this != &a)
-	{
-	  base_diff_eqn::operator = (a);
-	  ODESFunc::operator = (a);
+        {
+          base_diff_eqn::operator = (a);
+          ODESFunc::operator = (a);
 
-	  xdot = a.xdot;
-	  theta = a.theta;
-	}
+          xdot = a.xdot;
+          theta = a.theta;
+        }
       return *this;
     }
 
@@ -65,7 +65,7 @@
   void initialize (const ColumnVector& x, double t);
 
   void initialize (const ColumnVector& x, double t,
-		   const ColumnVector& theta);
+                   const ColumnVector& theta);
 
 protected: