Skip to content

Commit 7a9fc1d

Browse files
committed
misc: Fix TimedAccess hashing
1 parent 1e68909 commit 7a9fc1d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

devito/ir/support/basic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ def __eq__(self, other):
248248
self.ispace == other.ispace)
249249

250250
def __hash__(self):
251-
return super().__hash__()
251+
return hash((self.access, self.mode, self.timestamp, self.ispace))
252252

253253
@property
254254
def function(self):

0 commit comments

Comments
 (0)