We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
from pymor.operators.constructions import IdentityOperator from pymor.vectorarrays.numpy import NumpyVectorArray import numpy as np v = NumpyVectorArray(np.array([1, 2, 3])) A = IdentityOperator(v.space) * 3 A.apply(v)
causes RuntimeError: maximum recursion depth exceeded in comparison.
RuntimeError: maximum recursion depth exceeded in comparison
(Observed when replacing LincombOperator((A, I), (1, p)) with A + I * p.)
LincombOperator((A, I), (1, p))
A + I * p
The text was updated successfully, but these errors were encountered:
Hi, I have just pushed f562037 to master and the 0.4.x branch, which should make the above code work.
Sorry, something went wrong.
__sum__
No branches or pull requests
causes
RuntimeError: maximum recursion depth exceeded in comparison
.(Observed when replacing
LincombOperator((A, I), (1, p))
withA + I * p
.)The text was updated successfully, but these errors were encountered: