jsalvatier / scikits.bvp_solver

Python package for solving two-point boundary value problems that wraps BVP_SOLVER
http://packages.python.org/scikits.bvp_solver/
14 stars 6 forks source link

Fixes to successIndicator/BVP%INFO #1

Closed rschroll closed 13 years ago

rschroll commented 13 years ago

successIndicator and yerror were not copied from bvp_object to the Python Solution object, so multiple instances could have the same object as these attributes. Additionally, the successIndicator was not properly copied back into FORTRAN. Both caused problems when calling bvp_solver functions after a failed solver run.

Also, the successIndicator and extended properties of Solution were fixed to return the correct values.

jsalvatier commented 13 years ago

Thanks, I will test this out and commit the change once I do that. I appreciate your work :)

jsalvatier commented 13 years ago

Thanks Robert!