Skip to content

Commit b680a41

Browse files
committed
Fix
1 parent 1954e62 commit b680a41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fuzzy_logic/fuzzy_operations.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def union(self, other) -> FuzzySet:
150150
FuzzySet(name='a U b', left_boundary=0.1, peak=0.6, right_boundary=0.35)
151151
"""
152152
return FuzzySet(
153-
f"{self.name} {other.name}",
153+
f"{self.name} U {other.name}",
154154
min(self.left_boundary, other.left_boundary),
155155
max(self.right_boundary, other.right_boundary),
156156
(self.peak + other.peak) / 2,

0 commit comments

Comments
 (0)