Changeset 2850 for trunk


Ignore:
Timestamp:
09/05/13 17:31:39 (11 years ago)
Author:
Takeshi Nakazato
Message:

New Development: No

JIRA Issue: No

Ready for Test: Yes

Interface Changes: No

What Interface Changed: Please list interface changes

Test Programs: List test programs

Put in Release Notes: Yes/No?

Module(s): sd

Description: Describe your changes here...

Quite minor (and non-effective) bug fix.


File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/CubicSplineInterpolator1D.tcc

    r2849 r2850  
    138138  // Then, solve the system by backsubstitution and store solution
    139139  // vector to y2_.
    140   for (int k = ny2_ - 2; k >= 0; k--)
     140  for (int k = ny2_ - 2; k >= 1; k--)
    141141    y2_[k] -= u[k] * y2_[k+1];
    142142 
Note: See TracChangeset for help on using the changeset viewer.