Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/diffpy/srmise/dataclusters.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,10 @@ def __eq__(self, other):
and self.lastcluster_idx == other.lastcluster_idx
and self.lastpoint_idx == other.lastpoint_idx
and self.status == other.status
and self.INIT == other.INIT
and self.READY == other.READY
and self.CLUSTERING == other.CLUSTERING
and self.DONE == other.DONE
)

def clear(self):
Expand Down
Loading