Skip to content

Commit aa35414

Browse files
committed
fix bugs in DirichletBoundary
1 parent 5605cc2 commit aa35414

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ConvDO/boundaries.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def __add__(self, other):
5555
else:
5656
try:
5757
# Dirichlet+number=Dirichlet
58-
return DirichletBoundary(self.boundary_value*other)
58+
return DirichletBoundary(self.boundary_value+other)
5959
except TypeError:
6060
return NotImplemented
6161

0 commit comments

Comments
 (0)