Skip to content
Open
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
2 changes: 2 additions & 0 deletions dwave/plugins/torch/samplers/block_spin_sampler.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,8 @@ def _valid_colouring(self) -> bool:
bool: True if the colouring is valid and False otherwise.
"""
for u, v in self._grbm.edges:
if u == v:
continue
if self._colouring(u) == self._colouring(v):
return False
return True
Expand Down