We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1adb377 commit 542a760Copy full SHA for 542a760
src/playout/no_eyes.rs
@@ -48,9 +48,13 @@ impl Playout for NoSelfAtariPlayout {
48
&& (
49
board.liberty_count(m.coord()) > 1 ||
50
{
51
- let liberties = board.new_chain_liberties(*m);
52
let removed_enemies = board.removes_enemy_neighbouring_stones(*m);
+
53
+ removed_enemies > 1 ||
54
+ {
55
+ let liberties = board.new_chain_liberties(*m);
56
liberties + removed_enemies > 1
57
+ }
58
}
59
|| board.new_chain_length(*m) < 7
60
)
0 commit comments