r514: no message
[ctsim.git] / libctsupport / cubicinterp.cpp
index fa51f7b47fd52f15ee6a5dcf6c48925922c943cf..8d0c62cbc9dd28bbac59a5d43db85ba9c8d94d9b 100644 (file)
@@ -2,7 +2,7 @@
 **  This is part of the CTSim program
 **  Copyright (c) 1983-2001 Kevin Rosenberg
 **
-**  $Id: cubicinterp.cpp,v 1.3 2001/02/09 14:34:16 kevin Exp $
+**  $Id: cubicinterp.cpp,v 1.4 2001/02/09 21:27:51 kevin Exp $
 **
 **  This program is free software; you can redistribute it and/or modify
 **  it under the terms of the GNU General Public License (version 2) as
@@ -37,7 +37,8 @@ CubicInterpolator::CubicInterpolator (const double* const y, const int n)
 
   double* temp = new double [n - 1];
   temp[0] = 0;
-  for (int i = 1; i < n - 1; i++) { 
+  int i;
+  for (i = 1; i < n - 1; i++) { 
     double t = 2 + (0.5 * m_pdY2[i-1]);
     temp[i] = y[i+1] + y[i-1] - y[i] - y[i];
     temp[i] = (3 * temp[i] - 0.5 * temp[i-1]) / t;