Open Yash-10 opened 3 years ago
This pull request explicitly redirects to main rather than master for links on README, since the default branch was updated to main.
main
master
Additionally, I found that running:
nbkode.get_solvers('euler', 'adam-bashforth')
from the latest docs gives a key error. It seems that there was a missing s in adam-bashforth.
s
adam-bashforth
Question Since the output after running:
>>> nbkode.get_groups() ('Adams-Bashforth', 'Adams-Moulton', 'BDF', 'Euler', 'Runge-Kutta')
is the above, would it be a good choice to change as per the below:
- nbkode.get_solvers('euler', 'adam-bashforth') + nbkode.get_solvers('Euler', 'Adams-Bashforth')
The latest commit tries to include link to the documentation as per #21 .
Thanks!
@hgrecco Could you take a look at this?
This pull request explicitly redirects to
main
rather thanmaster
for links on README, since the default branch was updated tomain
.Additionally, I found that running:
from the latest docs gives a key error. It seems that there was a missing
s
inadam-bashforth
.Question Since the output after running:
is the above, would it be a good choice to change as per the below:
The latest commit tries to include link to the documentation as per #21 .
Thanks!