Skip to content

Commit

Permalink
fix bugs in DirichletBoundary
Browse files Browse the repository at this point in the history
  • Loading branch information
qiauil committed Jul 17, 2024
1 parent 5605cc2 commit aa35414
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ConvDO/boundaries.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def __add__(self, other):
else:
try:
# Dirichlet+number=Dirichlet
return DirichletBoundary(self.boundary_value*other)
return DirichletBoundary(self.boundary_value+other)
except TypeError:
return NotImplemented

Expand Down

0 comments on commit aa35414

Please sign in to comment.