Skip to content
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

Op repr updates #1394

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Prev Previous commit
BUG: fix wrong range of MultiplyOperator
kohr-h committed Aug 30, 2018
commit e9c807c2a3a5e5af7ab30dd5fad179618300bd2d
2 changes: 1 addition & 1 deletion odl/operator/default_ops.py
Original file line number Diff line number Diff line change
@@ -346,7 +346,7 @@ def __init__(self, multiplicand, domain=None, range=None):
domain = multiplicand.space

if range is None:
range = domain
range = multiplicand.space

super(MultiplyOperator, self).__init__(domain, range, linear=True)