numerical-mathematics / extrapolation

Parallel extrapolation for ODEs
MIT License
6 stars 1 forks source link

Using last extrapolation value for interpolation when the value is discarded #14

Open mcr222 opened 8 years ago

mcr222 commented 8 years ago

Currently our code uses T[k,k] as interpolation value even when the value is discarded (too much local error) and instead the value T[k-1,k-1] is used as final solution. In this case, interpolation should be done with the T[k-1,k-1] value.