Skip to content

Commit 13c02a2

Browse files
committed
Revert "Change collider match check to is_identical"
This reverts commit 4743a3d.
1 parent a877106 commit 13c02a2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rmgpy/reaction.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,7 @@ def is_isomorphic(self, other, either_direction=True, check_identical=False, che
620620
elif other.specific_collider is None:
621621
collider_match = False
622622
else:
623-
collider_match = self.specific_collider.is_identical(other.specific_collider)
623+
collider_match = self.specific_collider.is_isomorphic(other.specific_collider)
624624

625625
# Return now, if we can
626626
if forward_reactants_match and forward_products_match and collider_match:

0 commit comments

Comments
 (0)