From 6b37218a7347f68d8e9bf235f64e67f534c86a55 Mon Sep 17 00:00:00 2001
From: "christoph.von.oy" <christoph.von.oy@rwth-aachen.de>
Date: Mon, 28 Oct 2024 11:09:38 +0100
Subject: [PATCH] Fixed softare engineering bug

---
 dynamics.py | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/dynamics.py b/dynamics.py
index 8ab24e1..3f98d22 100644
--- a/dynamics.py
+++ b/dynamics.py
@@ -811,6 +811,11 @@ def compute_assignment_common_reference(
 
 
 class Assignment(abc.ABC):
+    #
+    @abc.abstractmethod
+    def is_view_resample(self) -> bool:
+        pass
+
     # proviedes a view indexed by target into the values indexed by source
     @abc.abstractmethod
     def resample(
-- 
GitLab