From aa35414e7a14a3f6c4aa0392809e55ced63189e4 Mon Sep 17 00:00:00 2001 From: Qiang Date: Wed, 17 Jul 2024 21:41:18 +0200 Subject: [PATCH] fix bugs in DirichletBoundary --- ConvDO/boundaries.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ConvDO/boundaries.py b/ConvDO/boundaries.py index 34444b5..7596687 100644 --- a/ConvDO/boundaries.py +++ b/ConvDO/boundaries.py @@ -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