We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66d945f commit e2d2785Copy full SHA for e2d2785
src/neqsim/process/measurement.py
@@ -27,7 +27,7 @@ def __init__(self):
27
def equals(self, obj):
28
# Implement your equality logic here.
29
# For example, you might compare the names of the objects:
30
- if isinstance(obj, unitop):
+ if isinstance(obj, measurement):
31
return self.name == obj.name
32
return False
33
@@ -107,3 +107,9 @@ def setTagName(self, tagName):
107
@JOverride
108
def getTagName(self):
109
return self.tagName
110
+
111
+ @JOverride # Implement the missing 'evaluateAlarm' method
112
+ def evaluateAlarm(self):
113
+ # Add the logic to evaluate alarm conditions.
114
+ # This is a placeholder implementation.
115
+ pass
0 commit comments