[sympy] Re: GSOC proposal feedback (Refactor the ODE module and make it fast)

2021-04-01 Thread nijso.be...@gmail.com
Hi Mohit, I looked at your proposal. It is not clear to me what the result of the refactoring would be in terms of the algorithmic implementation or the benefits to the ODE solver. Is it the idea to have independent classes and therefore solvers for each of the ODE solvers and classifiers, that

Re: [sympy] Re: GSOC proposal feedback (Refactor the ODE module and make it fast)

2021-04-02 Thread mohit balwani
Hi Nijso, Thanks for the feedback. Basic Idea is to implement an independent class for each solver and then from master ode.py we will just iterate and check if it matches the solver it will return the solution. Here is the issue link where Oscar suggested this approach : Link

Re: [sympy] Re: GSOC proposal feedback (Refactor the ODE module and make it fast)

2021-04-02 Thread nijso.be...@gmail.com
Hi Mohit, Ok great, I suspected this was the idea but it was not so clear from the proposal. I think it is a good move forward in creating a better structured ODE solver. It will make it easier to debug and improve individual solvers and gives a good structure to the overall DE solver. Best