Skip to content

Commit

Permalink
OA: Design updates on cluster analysis #1015
Browse files Browse the repository at this point in the history
  • Loading branch information
detlefarend committed Jul 19, 2024
1 parent fb9e8d4 commit a522d96
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/mlpro/bf/math/properties.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,16 @@ def set( self,
"""

# 1 Set value
if self._sw_value_prev: self._value_prev = self._value
self._value = p_value
if self._sw_value_prev:
try:
self._value_prev = self._value.copy()
except:
self._value_prev = self._value

try:
self._value = p_value.copy()
except:
self._value = p_value


# 2 Preparation of time stamp
Expand Down

0 comments on commit a522d96

Please sign in to comment.