-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix test sg03ad #82
Fix test sg03ad #82
Conversation
Hmm, the build service now reports failure again even with the patch applied. Seems there are more issues with powerpc left.
|
Back in business! The calculation of matrix A did not fit the definition of the paper. I added the discrete time case from the paper as well. |
Just for my info: how important is the I'm going to try to push a rebase onto lastest master. |
I think I did that to avoid having an array of integers. Some Python version back then introduced precision problems because of the implicit conversion. Not sure anymore if it is really needed. Numpy on Python 3.8 however frequently produce |
On range/arange: I was just curious. I can't push to this branch - are you willing (and do you have the know-how---I don't think I do!) to make it editable by other Slycot devs? I want to push the rebase (see https://github.com/roryyorke/Slycot/tree/fix_test_sg03ad_static) |
Merged via 9d2bfe3 |
This PR was missing the
checkbox. All the other remaining PR's do have it. |
FWIW I just tried pushing a rebased branch for #83, it also failed. When I try to push it asks for a username (assume it tries my normal SSH credentials first, and fails). |
Did you add the remote as https:// or git@github...? |
Ah-ha, thank you! Had it as https. Now pushed. I'll be offline for an hour or two now. |
This test fails on some architectures while building for openSUSE. Replacing
range()
which returns an int generator witharange()
fixes this.Plus some whitespace (pep8) fixes.