Skip to content
Snippets Groups Projects
Commit 80db4cbc authored by Robert K's avatar Robert K
Browse files

[bugfix][DGHelmholtzInv] workaround for MolOp.

parent deb6b5c0
No related branches found
No related tags found
No related merge requests found
Pipeline #43710 passed
......@@ -607,6 +607,10 @@ def dgHelmholtzInverseOperator( op, u = None, parameters = {} ):
destType = u.cppTypeName
# in case a wrapper was passed
if not hasattr(op, "cppTypeName"):
op = op._op
spaceOpType = op.cppTypeName
# for DGOperator from femDGOperator we need to use SpaceOperatorInterface here
if 'DGOperator' in spaceOpType:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment